/* =========================
   HEADER WRAPPER
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600&family=Montserrat:wght@500;600;700&display=swap');

:root {
    /* Centralized Header Heights (Single Source of Truth) */
    --header-height-desktop: 218px;
    --header-height-tablet: 95px;
    --header-height-mobile: 75px;

    /* Active header height (resolved by media query) */
    --header-height: var(--header-height-desktop);

    /* Standardized inner page hero padding (aligned to user request of 40px) */
    --page-hero-padding-top: 40px;
    --page-hero-padding-bottom: 1.5rem;

    /* Header height when page is scrolled (for sticky/scroll offset) */
    --header-height-scrolled: 74px;
}

@media (max-width: 1024px) {
    :root {
        --header-height: var(--header-height-tablet);
        --page-hero-padding-top: 15px;
        --page-hero-padding-bottom: 1rem;
        --header-height-scrolled: 94px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: var(--header-height-mobile);
        --page-hero-padding-top: 10px;
        --page-hero-padding-bottom: 0.8rem;
        --header-height-scrolled: 74px;
    }
}

html,
body {
    overflow-x: clip;
    width: 100%;
}

.site-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state */
.site-header-wrapper.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.site-header-wrapper.scrolled .nav-row-wrapper {
    padding: 12px 0px 12px 0 !important;
}

/* Dark gradient overlay for transparent mode to ensure text is readable */
.header-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: -1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.site-header-wrapper.scrolled .header-overlay-gradient {
    opacity: 0;
}

/* =========================
   BRAND ROW (DESKTOP) & MOBILE HEADER
========================= */

.header-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    /* padding: 0.75rem 0; */
    border-bottom: none;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Solid Navbar Overrides */
.site-header-wrapper.header-solid {
    border-bottom: none;
    padding-bottom: 0;
    box-shadow: none;
    background: transparent;
}

.site-header-wrapper.header-solid .header-overlay-gradient {
    display: none;
}

.brand-row-wrapper {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.04);
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.nav-row-wrapper {
    background: #0b3a63 !important;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 9;
}

@media (min-width: 1025px) {
    .site-header-wrapper.scrolled .brand-row-wrapper {
        height: 0;
        overflow: hidden;
        border: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
    }

    .site-header-wrapper.scrolled .header-brand-row {
        height: 0;
        padding: 0;
        border: none;
        opacity: 0;
        visibility: hidden;
        margin: 0;
    }
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
}

.brand-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.site-header-wrapper.scrolled .brand-logo-img {
    height: 50px;
}

.brand-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.site-header-wrapper:not(.scrolled) .brand-text-content {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.site-header-wrapper.scrolled .brand-text-content,
.site-header-wrapper.header-solid .brand-text-content {
    color: var(--color-text);
    text-shadow: none;
}

.brand-name {
    font-family: 'Limelight', sans-serif;
    font-size: 3.9rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    /* margin-bottom: 0.2rem; */
    letter-spacing: 0.02em;
    color: #a90101 !important;
}

.brand-slogan {
    /* font-family: 'Cinzel', serif; */
    /* font-family: 'Limelight', sans-serif; */
    font-size: 23px;
    font-weight: 700 !important;
    color: #a90101 !important;
    text-transform: capitalize !important;
    letter-spacing: 0.2em;
    /* margin-bottom: 0.25rem; */
    margin: 0;
}

.brand-tagline {
    font-family: 'Birthstone', cursive;
    font-size: 2rem;
    font-weight: 900;
    opacity: 0.95;
    /* margin-bottom: 0.5rem; */
    margin: 0;
    transition: all 0.3s ease;
    color: #0135ac !important;
}

.brand-license-bar {
    width: 100%;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.55rem 0;
    transition: all 0.4s ease;
}

.brand-license-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a !important;
}

.license-ra-img {
    height: 26px;
    width: auto;
    object-fit: contain;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
}

.site-header-wrapper:not(.scrolled):not(.header-solid) .brand-license-content {
    color: rgba(255, 255, 255, 0.8) !important;
}

.site-header-wrapper.header-solid .brand-license-content {
    color: #0f172a !important;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.license-item i {
    color: var(--color-gold, #f59e0b);
}

.license-separator {
    color: var(--color-gold, #f59e0b);
    font-size: 0.5rem;
}

.header-brand-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bismillah-img {
    height: 110px;
    filter: invert(1);
    mix-blend-mode: screen;
    transition: all 0.4s ease;
}

.site-header-wrapper.scrolled .bismillah-img,
.site-header-wrapper.header-solid .bismillah-img {
    filter: none;
    mix-blend-mode: normal;
}

.ra-id-img-header,
.saudi-consulate-img-header {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.4s ease;
}

/* =========================
   NAVIGATION ROW (DESKTOP)
========================= */

.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    transition: height 0.4s ease;
}

.site-header-wrapper.scrolled .header-nav-row {
    height: 50px;
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav-links .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--color-primary, #0f4c81);
    color: #fff !important;
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.15);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
}

/* Scroll and solid background behavior overrides */
.site-header-wrapper:not(.scrolled):not(.header-solid) .desktop-nav-links .nav-link {
    text-shadow: none !important;
}

.site-header-wrapper.scrolled .desktop-nav-links .nav-link,
.site-header-wrapper.header-solid .desktop-nav-links .nav-link {
    color: #fff !important;
    text-shadow: none !important;
}

.desktop-nav-links .nav-link:hover,
.desktop-nav-links .nav-dropdown:hover .nav-dropdown-btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.3);
    background: var(--color-primary-hover, #0b3a63) !important;
    color: #fff !important;
}

.desktop-nav-links .nav-link.active {
    background: var(--color-secondary, #d4a017) !important;
    color: #0f172a !important;
    /* Premium dark navy text on gold background */
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3) !important;
    text-shadow: none !important;
}

.desktop-nav-links .nav-link.active:hover {
    background: var(--color-secondary, #d4a017) !important;
    color: #0f172a !important;
    filter: brightness(1.1);
}

.desktop-nav-links .nav-link::after {
    display: none !important;
}

/* Scale down slightly on smaller screens to prevent overflow/wrap */
@media (max-width: 1750px) {
    .desktop-nav-links .nav-link {
        font-size: 0.92rem;
        padding: 0.45rem 0.75rem;
    }

    .desktop-nav-links {
        gap: 0.35rem;
    }

    .desktop-nav-cta {
        gap: 0.6rem;
    }

    .nav-cta-call {
        padding: 0.45rem 0.8rem;
        font-size: 0.92rem;
    }

    .nav-cta-primary {
        padding: 0.45rem 1.15rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 1400px) {
    .desktop-nav-links .nav-link {
        font-size: 0.92rem;
        padding: 0.45rem 0.75rem;
    }

    .desktop-nav-links {
        gap: 0.35rem;
    }

    .desktop-nav-cta {
        gap: 0.6rem;
    }

    .nav-cta-call {
        padding: 0.45rem 0.8rem;
        font-size: 0.92rem;
    }

    .nav-cta-primary {
        padding: 0.45rem 1.15rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 1280px) {
    .nav-row-wrapper .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .desktop-nav-links .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.55rem;
    }

    .desktop-nav-links {
        gap: 0.2rem;
    }

    .desktop-nav-cta {
        gap: 0.4rem;
    }

    .nav-cta-call {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }

    .nav-cta-primary {
        padding: 0.35rem 0.9rem;
        font-size: 0.8rem;
    }

    .brand-logo-img {
        height: 100px;
    }

    .bismillah-img {
        height: 90px;
    }

    .ra-id-img-header,
    .saudi-consulate-img-header {
        height: 70px;
    }
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    cursor: pointer;
    font-family: inherit;
}

.nav-dropdown-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-btn i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-link {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-link:hover,
.mega-link.active {
    background: color-mix(in srgb, var(--color-primary) 4%, transparent);
    color: var(--color-primary);
    padding-left: 1.8rem;
}

/* =========================
   CTAS (DESKTOP)
========================= */

.desktop-nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.site-header-wrapper.scrolled .nav-cta-call {
    /* color: var(--color-primary); */
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-cta-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.site-header-wrapper.scrolled .nav-cta-call:hover {
    background: color-mix(in srgb, var(--color-primary) 5%, transparent);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.nav-cta-call i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-cta-primary {
    background: var(--color-primary, #0f172a);
    color: #fff;
    padding: 0.65rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-btn {
    display: none;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--color-primary, #0f4c81);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: var(--color-primary, #0f4c81);
    color: #fff;
    border-color: var(--color-primary, #0f4c81);
}

.site-header-wrapper.scrolled .mobile-menu-btn {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--color-primary, #0f4c81);
}

/* =========================
   OVERLAY
========================= */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   MOBILE DRAWER
========================= */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.drawer-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.drawer-logo-wrap {
    display: block;
}

.drawer-logo {
    height: 70px;
    width: auto;
    border-radius: 4px;
}

.drawer-bismillah {
    height: 100px;
    mix-blend-mode: multiply;
}

.mobile-close-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    background: var(--color-surface-alt);
    border: none;
    color: var(--color-text);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: color-mix(in srgb, var(--color-primary) 10%, transparent);
    color: var(--color-primary);
    transform: rotate(90deg);
}

.drawer-scroll-area {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2.2rem 1.5rem 1.5rem;
}

.drawer-company-info {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--color-border);
}

.drawer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.drawer-slogan {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold, #f59e0b);
    /* text-transform: uppercase; */
    text-transform: capitalize !important;
    letter-spacing: 0.15em;
    margin-bottom: 0.35rem;
}

.drawer-tagline {
    font-family: 'Birthstone', cursive;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.drawer-license {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: 'Californian FB', 'Georgia', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-license-item {
    margin: 0;
}

.drawer-license-item span {
    font-weight: 600;
    color: var(--color-text);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-link:hover,
.mobile-link.active {
    background: color-mix(in srgb, var(--color-primary) 6%, transparent);
    color: var(--color-primary);
}

.mobile-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-accordion-btn:hover,
.mobile-accordion-btn.active {
    background: color-mix(in srgb, var(--color-primary) 6%, transparent);
    color: var(--color-primary);
}

.mobile-accordion-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1rem;
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-sub-link {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-left: 2px solid var(--color-border);
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

/* Drawer Footer */
.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    background: #fafafa;
}

.drawer-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.drawer-btn-primary:hover {
    background: color-mix(in srgb, var(--color-primary) 85%, black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.drawer-contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.drawer-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
}

.drawer-btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.drawer-btn-outline.whatsapp {
    color: #16a34a;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.drawer-btn-outline.whatsapp:hover {
    background: #dcfce7;
    border-color: #86efac;
}

.drawer-email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .desktop-nav-links {
        gap: 0.15rem;
    }

    .desktop-nav-links .nav-link {
        font-size: 0.76rem;
        padding: 0.3rem 0.45rem;
    }

    .desktop-nav-cta {
        gap: 0.35rem;
    }

    .nav-cta-call {
        padding: 0.3rem 0.5rem;
        font-size: 0.76rem;
    }

    .nav-cta-primary {
        padding: 0.3rem 0.75rem;
        font-size: 0.76rem;
    }

    .brand-logo-img {
        height: 85px;
    }

    .bismillah-img {
        height: 75px;
    }

    .ra-id-img-header,
    .saudi-consulate-img-header {
        height: 60px;
    }
}

@media (max-width: 1024px) {

    .desktop-nav-links,
    .desktop-nav-cta,
    .brand-trust-line,
    .brand-tagline,
    .desktop-only,
    .header-nav-row,
    .nav-row-wrapper {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .site-header-wrapper.scrolled {
        padding: 0 !important;
    }

    .header-brand-row {
        border-bottom: none;
        padding: 0 0 2px 0;
    }

    .site-header-wrapper.scrolled .header-brand-row {
        padding: 0.5rem 0;
    }

    .brand-logo-img {
        height: 70px;
    }

    .site-header-wrapper.scrolled .brand-logo-img {
        height: 55px;
    }

    .brand-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-logo-img {
        height: 50px;
    }

    .saudi-consulate-img-header {
        height: 40px;
    }

    .site-header-wrapper.scrolled .brand-logo-img,
    .site-header-wrapper.scrolled .saudi-consulate-img-header {
        height: 35px;
    }

    .brand-name {
        font-size: 1.25rem;
    }
}

/* =========================
   INTERNAL PAGE HEADER FIXES
========================= */

/* Push down the headers of internal pages so the absolute header doesn't cover their content */
/* .services-page-header,
.legal-page-header,
.gallery-page-header,
.contact-page-header,
.clients-page-header,
.industries-page-header,
.jobs-page-header,
.employer-hero,
.about-hero,
.about-page-header,
.svc-hero {
    padding-top: calc(var(--header-height) + var(--page-hero-padding-top)) !important;
    padding-bottom: var(--page-hero-padding-bottom) !important;
} */

/* =========================
   CUSTOM ADDITIONS
========================= */
.header-mea-text {
    color: #0f172a;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
}

.header-mea-icon {
    color: #f59e0b;
}

.header-golden-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.header-golden-tooltip {
    z-index: 9999;
}

.header-golden-tooltip-img {
    width: 320px;
    max-width: none;
    height: auto;
    object-fit: contain;
}

.drawer-logos-row-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.drawer-logo-center-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.drawer-golden-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
}