@import url("Titillium_Regular/stylesheet.css");

:root {
    --ies-ink: #14213d;
    --ies-muted: #5f6b7a;
    --ies-border: #dce3e9;
    --ies-surface: #ffffff;
    --ies-soft: #f5f8fb;
    --ies-green: #27845e;
    --ies-teal: #0e7c86;
    --ies-orange: #eb8a24;
    --ies-shadow: 0 18px 45px rgba(20, 33, 61, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ies-surface);
    color: var(--ies-ink);
    font-family: "Titillium Regular", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--ies-teal);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover,
a:focus {
    color: var(--ies-green);
}

.container {
    --bs-gutter-x: 1.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(20, 33, 61, 0.06);
}

.navbar {
    min-height: 94px;
}

.navbar-brand img {
    width: min(220px, 60vw);
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar .nav-link {
    border-radius: 8px;
    color: var(--ies-ink);
    font-size: 0.91rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: 0.65rem 0.8rem;
    text-transform: uppercase;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.show {
    background: #edf7f3;
    color: var(--ies-green);
}

.dropdown-menu {
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    box-shadow: var(--ies-shadow);
}

.dropdown-item {
    color: var(--ies-ink);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #fff3e6;
    color: #9c4f09;
}

.event-date {
    width: 330px;
}

.hero-slider {
    position: relative;
    /* background: #111827; */
}

.carousel-item {
    min-height: clamp(420px, 64vh, 680px);
}

.carousel-item::after {
    position: absolute;
    inset: 0;
    content: "";
    /* background: linear-gradient(90deg, rgba(10, 18, 33, 0.74) 0%, rgba(10, 18, 33, 0.42) 45%, rgba(10, 18, 33, 0.08) 100%); */
}

.carousel-item img {
    width: 100%;
    height: clamp(420px, 85vh, 680px);
    object-fit: cover;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-copy {
    width: min(650px, 100%);
    color: #ffffff;
    pointer-events: auto;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
    color: var(--ies-orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.6rem);
    font-weight: 900;
    line-height: 0.98;
}

.hero-copy p {
    width: min(560px, 100%);
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.7rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 0;
}

.btn-primary {
    --bs-btn-bg: var(--ies-green);
    --bs-btn-border-color: var(--ies-green);
    --bs-btn-hover-bg: #206d50;
    --bs-btn-hover-border-color: #206d50;
    --bs-btn-active-bg: #1c6047;
    --bs-btn-active-border-color: #1c6047;
}

.btn-outline-light {
    --bs-btn-hover-color: var(--ies-ink);
}

.btn-accent {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--ies-orange);
    --bs-btn-border-color: var(--ies-orange);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #c86f13;
    --bs-btn-hover-border-color: #c86f13;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4;
    width: 8%;
}

.carousel-indicators {
    z-index: 5;
}

.event-strip {
    background: var(--ies-ink);
    color: #ffffff;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    height: 100%;
    padding: 1rem 0;
}

.detail-item i {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.25rem;
}

.detail-item span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.detail-item strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
}

.section-space {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.intro-section {
    background: #ffffff;
}

.intro-section h2,
.section-heading h2 {
    margin: 0;
    color: var(--ies-ink);
    font-size: clamp(2rem, 4vw, 2.25rem);
    font-weight: 900;
    line-height: 1.08;
}

.intro-section p {
    margin: 1rem 0 0;
    color: var(--ies-muted);
    font-size: 1.05rem;
}

.action-panel {
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: var(--ies-soft);
}

.action-panel h3,
.feature-card h3,
.logo-group h3,
.site-footer h2 {
    margin: 0;
    color: var(--ies-ink);
    font-size: 1.15rem;
    font-weight: 900;
}

.action-panel p {
    margin: 0.75rem 0 1.3rem;
}

.audience-section {
    background: var(--ies-soft);
}

.section-heading {
    width: min(760px, 100%);
    margin-bottom: 2rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 1.6rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(20, 33, 61, 0.07);
}

.feature-card i {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #e8f5f1;
    color: var(--ies-green);
    font-size: 1.45rem;
}

.feature-card p {
    flex: 1;
    margin: 0.75rem 0 1.2rem;
    color: var(--ies-muted);
}

.feature-card a {
    align-self: flex-start;
    font-weight: 800;
    text-decoration: none;
}

.feature-card a::after {
    margin-left: 0.35rem;
    content: "\F138";
    font-family: "bootstrap-icons";
    vertical-align: -0.08em;
}

.partners-section {
    background: #ffffff;
}

.logo-group {
    height: 100%;
    /* border: 1px solid var(--ies-border); */
    border-radius: 8px;
    /* padding: 1.35rem; */
    background: #ffffff;
}

.logo-group h3 {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    text-transform: uppercase;
}

.logo-group a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 0.75rem;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    background: #ffffff;
}

.logo-group a:hover,
.logo-group a:focus {
    border-color: var(--ies-teal);
    transform: translateY(-2px);
}

.logo-group img {
    max-height: 100px;
    object-fit: contain;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.logo-row a {
    flex: 1 1 135px;
}

.site-footer {
    padding: clamp(3rem, 7vw, 4.5rem) 0 1.5rem;
    background: #111827;
    color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
    width: min(230px, 100%);
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
}

.site-footer p {
    width: min(360px, 100%);
}

.footer-links,
.hours-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
}

.hours-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hours-list strong {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.social-links a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
    border-color: var(--ies-orange);
    background: var(--ies-orange);
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    .navbar {
        min-height: 82px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0 0.5rem;
    }

    .navbar-nav {
        align-items: stretch;
    }

    .navbar .nav-link {
        padding: 0.75rem 0;
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 4.5rem;
    }

    .carousel-item::after {
        background-image: url("../images/hero-banner-sm.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* background: linear-gradient(0deg, rgba(10, 18, 33, 0.82) 0%, rgba(10, 18, 33, 0.35) 64%, rgba(10, 18, 33, 0.08) 100%); */
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        width: min(205px, 62vw);
    }

    .carousel-item,
    .carousel-item img {
        height: 520px;
        min-height: 520px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .hero-copy h1 {
        max-width: 10ch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .detail-item {
        padding: 0.35rem 0;
    }

    .event-strip {
        padding: 1rem 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 15px;
    }

    .container {
        --bs-gutter-x: 1.2rem;
    }

    .carousel-item,
    .carousel-item img {
        height: 500px;
        min-height: 500px;
    }

    .hero-content {
        padding-bottom: 3.75rem;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .intro-section h2,
    .section-heading h2 {
        font-size: 2rem;
    }

    .feature-card,
    .logo-group,
    .action-panel {
        padding: 1.2rem;
    }
}

.navbar .nav-link.active {
    background: #edf7f3;
    color: var(--ies-green);
}

.show-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(20, 33, 61, 0.78));
    color: #ffffff;
}

.show-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.4rem, 5.5vw, 4.9rem);
    font-weight: 900;
    line-height: 1;
}

.show-hero p {
    width: min(660px, 100%);
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

.show-hero-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.show-hero-card img {
    display: block;
    width: 100%;
    min-height: 150px;
    object-fit: cover;
    background: #ffffff;
}

.show-hero-card-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.2rem;
}

.show-hero-card-body span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.show-hero-card-body strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.report-panel {
    position: sticky;
    top: 120px;
}

.facts-section {
    background: #f5f8fb;
}

.fact-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 1.45rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(20, 33, 61, 0.07);
}

.fact-number {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 50px;
    margin-bottom: 1rem;
    color: var(--ies-orange);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
}

.fact-card h3 {
    margin: 0;
    color: var(--ies-ink);
    font-size: 1.16rem;
    font-weight: 900;
}

.fact-card p {
    margin: 0.75rem 0 0;
    color: var(--ies-muted);
}

@media (max-width: 991.98px) {
    .show-hero {
        padding: 3.5rem 0;
    }

    .report-panel {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .show-hero {
        padding: 3rem 0;
    }

    .show-hero .hero-actions .btn {
        width: 100%;
    }

    .fact-card {
        padding: 1.2rem;
    }
}

.exhibitor-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        linear-gradient(90deg, rgba(20, 33, 61, 0.94), rgba(14, 124, 134, 0.78)),
        url("../images/slider2.jpg") center / cover no-repeat;
    color: #ffffff;
}

.exhibitor-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.35rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
}

.exhibitor-hero p {
    width: min(650px, 100%);
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

.exhibitor-visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.exhibitor-visual img {
    display: block;
    width: 100%;
    padding: 1.6rem;
    background: #ffffff;
}

.visual-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}

.visual-note i {
    color: var(--ies-orange);
    font-size: 1.55rem;
}

.benefit-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 100%;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 1rem 1.1rem;
    background: #ffffff;
    color: var(--ies-ink);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.06);
}

.benefit-pill i {
    display: inline-flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff3e6;
    color: var(--ies-orange);
    font-size: 1.15rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.85rem;
}

.profile-grid span {
    display: flex;
    align-items: center;
    min-height: 58px;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    background: #ffffff;
    color: var(--ies-ink);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.06);
}

.profile-grid span::before {
    display: inline-flex;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    margin-right: 0.65rem;
    border-radius: 50%;
    background: #e8f5f1;
    color: var(--ies-green);
    content: "\F26E";
    font-family: "bootstrap-icons";
    font-size: 0.95rem;
}

.form-section {
    background: #ffffff;
}

.form-intro {
    position: sticky;
    top: 120px;
}

.form-intro img {
    width: min(280px, 100%);
    margin-bottom: 1.5rem;
}

.form-intro h2 {
    margin: 0;
    color: var(--ies-ink);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
}

.form-intro p {
    margin: 1rem 0 0;
    color: var(--ies-muted);
}

.booking-form {
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: clamp(1.25rem, 4vw, 2rem);
    background: var(--ies-soft);
    box-shadow: var(--ies-shadow);
}

.interest-box {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 1rem;
    background: #ffffff;
}

.booking-form .form-label {
    color: var(--ies-ink);
    font-weight: 800;
}

.booking-form .form-control,
.booking-form .form-select {
    min-height: 46px;
    border-color: var(--ies-border);
    border-radius: 8px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--ies-teal);
    box-shadow: 0 0 0 0.2rem rgba(14, 124, 134, 0.16);
}

.terms-check {
    margin-top: 1.25rem;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 1rem 1rem 1rem 2.65rem;
    background: #ffffff;
}

.captcha-wrap {
    margin-top: 1.25rem;
    overflow-x: auto;
}

.submit-btn {
    margin-top: 1.25rem;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .exhibitor-hero {
        padding: 3.5rem 0;
    }

    .form-intro {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .exhibitor-hero {
        padding: 3rem 0;
    }

    .exhibitor-hero .hero-actions .btn,
    .submit-btn {
        width: 100%;
    }

    .booking-form {
        padding: 1rem;
    }
}

.visitor-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        linear-gradient(90deg, rgba(20, 33, 61, 0.92), rgba(39, 132, 94, 0.78)),
        url("../images/slider1.jpg") center / cover no-repeat;
    color: #ffffff;
}

.visitor-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.35rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
}

.visitor-hero p {
    width: min(650px, 100%);
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

.visitor-visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.visitor-visual img {
    display: block;
    width: 100%;
    padding: 1.6rem;
    background: #ffffff;
}

.registration-section {
    background: #ffffff;
}

.registration-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: clamp(1.4rem, 4vw, 2rem);
    background: var(--ies-soft);
    box-shadow: var(--ies-shadow);
}

.registration-card i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #e8f5f1;
    color: var(--ies-green);
    font-size: 1.6rem;
}

.registration-card-accent i {
    background: #fff3e6;
    color: var(--ies-orange);
}

.registration-card h3 {
    margin: 0;
    color: var(--ies-ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.registration-card p {
    flex: 1;
    margin: 0.85rem 0 1.4rem;
    color: var(--ies-muted);
}

.compact-heading {
    position: sticky;
    top: 120px;
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0.85rem;
}

.visitor-grid span {
    display: flex;
    align-items: center;
    min-height: 62px;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    background: #ffffff;
    color: var(--ies-ink);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.06);
}

.visitor-grid span::before {
    display: inline-flex;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-right: 0.7rem;
    border-radius: 50%;
    background: #e8f5f1;
    color: var(--ies-green);
    content: "\F26E";
    font-family: "bootstrap-icons";
    font-size: 0.95rem;
}

.hours-section {
    background: #ffffff;
}

.hours-section h2 {
    margin: 0;
    color: var(--ies-ink);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
}

.hours-section p {
    margin: 1rem 0 0;
    color: var(--ies-muted);
}

.hours-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hours-card {
    min-height: 100%;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: 1.25rem;
    background: var(--ies-soft);
}

.hours-card span {
    color: var(--ies-orange);
    font-weight: 900;
    text-transform: uppercase;
}

.hours-card h3 {
    margin: 0.3rem 0;
    color: var(--ies-ink);
    font-size: 1.7rem;
    font-weight: 900;
}

.hours-card strong {
    display: block;
    color: var(--ies-ink);
}

.hours-card p {
    margin-top: 0.55rem;
    color: var(--ies-muted);
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .visitor-hero {
        padding: 3.5rem 0;
    }

    .compact-heading {
        position: static;
    }

    .hours-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .visitor-hero {
        padding: 3rem 0;
    }

    .visitor-hero .hero-actions .btn,
    .registration-card .btn {
        width: 100%;
    }

    .registration-card {
        padding: 1.2rem;
    }
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        linear-gradient(90deg, rgba(20, 33, 61, 0.94), rgba(235, 138, 36, 0.72)),
        url("../images/hero-banner.jpg") center / cover no-repeat;
    color: #ffffff;
}

.contact-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.35rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
}

.contact-hero p {
    width: min(700px, 100%);
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.22rem);
}

.contact-visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.contact-visual img {
    display: block;
    width: 100%;
    padding: 1.6rem;
    background: #ffffff;
}

.contact-section {
    background: #ffffff;
}

.contact-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    padding: clamp(1.35rem, 4vw, 1.75rem);
    background: var(--ies-soft);
    box-shadow: 0 12px 30px rgba(20, 33, 61, 0.07);
}

.contact-card-featured {
    background: #ffffff;
    box-shadow: var(--ies-shadow);
}

.contact-card > i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #e8f5f1;
    color: var(--ies-green);
    font-size: 1.5rem;
}

.contact-card:nth-child(2) > i {
    background: #fff3e6;
    color: var(--ies-orange);
}

.contact-card h3 {
    margin: 0;
    color: var(--ies-ink);
    font-size: 1.28rem;
    font-weight: 900;
}

.contact-card strong {
    display: block;
    margin-top: 0.55rem;
    color: var(--ies-ink);
    font-size: 1rem;
}

.contact-card p {
    margin: 0.75rem 0 1rem;
    color: var(--ies-muted);
}

.contact-card ul {
    display: grid;
    gap: 0.45rem;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.contact-card a {
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.map-section {
    padding: 0 0 clamp(3rem, 7vw, 5.5rem);
    background: #ffffff;
}

.map-panel {
    overflow: hidden;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    background: var(--ies-soft);
    box-shadow: var(--ies-shadow);
}

.map-copy {
    padding: clamp(1.35rem, 4vw, 2rem);
}

.map-copy h2 {
    margin: 0;
    color: var(--ies-ink);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
}

.map-copy p {
    margin: 0.8rem 0 0;
    color: var(--ies-muted);
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: clamp(300px, 45vw, 470px);
    border: 0;
}

@media (max-width: 991.98px) {
    .contact-hero {
        padding: 3.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero .hero-actions .btn {
        width: 100%;
    }

    .contact-card {
        padding: 1.2rem;
    }
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background:
        linear-gradient(90deg, rgba(20, 33, 61, 0.94), rgba(14, 124, 134, 0.72)),
        url("../images/hero-banner.jpg") center / cover no-repeat;
    color: #ffffff;
}

.blog-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.35rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
}

.blog-hero p {
    width: min(670px, 100%);
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.22rem);
}

.blog-hero-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.blog-hero-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-listing {
    background: #ffffff;
}

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--ies-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--ies-shadow);
}

.blog-card-image {
    display: block;
    overflow: hidden;
    background: var(--ies-soft);
}

.blog-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 220ms ease;
}

.blog-card:hover .blog-card-image img,
.blog-card:focus-within .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1.25rem, 4vw, 1.75rem);
}

.blog-label {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--ies-orange);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h3 {
    flex: 1;
    margin: 0 0 1.4rem;
    color: var(--ies-ink);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.12;
}

@media (max-width: 991.98px) {
    .blog-hero {
        padding: 3.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .blog-hero {
        padding: 3rem 0;
    }

    .blog-card .btn {
        width: 100%;
    }
}
