/* =========================
   1. Reset / base / accessibility
   ========================= */

:root {
    /* YOUR ORIGINAL VARIABLES (Preserved) */
    --accent: #f4c430;
    --primary: #5a1e8e;
    --light-purple: #9b67cc;
    --dark: #1E1E2F;
    --light: #F7F7FB;
    --muted: #6B738A;
    --navbar-height-desktop: 124px;
    --navbar-height-mobile: 82px;

    /* NEW LUXURY OVERLAY VARIABLES */
    --lux-onion: #3d0a0a;             /* Deep Rich Onion */
    --lux-magenta: #ff007a;           /* High Energy Magenta */
    --lux-gold-glow: linear-gradient(90deg, #8a6628 0%, #a67923 50%, #8a6628 100%);
    --lux-gold-solid: #bf953f;
    --lux-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --header-bg-start: #171a22;
    --header-bg-mid: #232834;
    --header-bg-end: #11141b;
    --header-highlight: rgba(255, 255, 255, 0.08);
    --inner-page-offset-desktop: 170px;
    --inner-page-offset-mobile: 92px;
    --inner-page-section-gap-desktop: 20px;
    --inner-page-section-gap-mobile: 16px;
}

/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-x: hidden;
    height: 100%;
    position: relative;
    overscroll-behavior-y: none;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, Arial, sans-serif;
    min-height: 100%;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--light); /* Keeping your current background visibility */
    touch-action: pan-y;
    font-size: 20px;
    color: #2b2b2b;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.inner-page {
    padding-top: var(--inner-page-offset-desktop);
}

body.inner-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--inner-page-offset-desktop);
    background: #11141b;
    z-index: 0;
    pointer-events: none;
}

body.home-page {
    scroll-snap-type: y mandatory;
}

img { max-width: 100%; display: block; height: auto; }
video, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* UPGRADED ACCESSIBILITY: GOLDEN GLOW FOCUS */
:focus {
    outline: 2px solid var(--lux-gold-solid);
    outline-offset: 3px;
    border-radius: 8px;
}

.hidden { display: none !important; height: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden; }

/* ============================================================
   HEADER & NAVIGATION - CONSOLIDATED & RESPONSIVE (FINAL FIX)
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2200;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
        rgba(17, 20, 27, 0.82) !important;
    padding: 5px 0 16px;
    border-bottom: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 16px 40px rgba(4, 12, 24, 0.22);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.navbar::before,
.navbar::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    pointer-events: none;
}

.navbar::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%);
    opacity: 0.55;
}

.navbar::after {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), rgba(255, 248, 214, 0.3), rgba(212, 175, 55, 0.08), transparent);
    bottom: 0;
}

.navbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px; 
    width: 95%;
    max-width: 1640px; 
    margin: 0 auto;
}

.brand-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: min(100%, 1320px);
    min-width: 0;
}

.logo-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

.trust-name {
    display: block;
    max-width: min(84vw, 1180px);
    font-size: clamp(1.6rem, 2.05vw, 2.55rem);
    font-weight: 900;
    background: linear-gradient(to right, #f4d98a, #fff8d6 35%, #d9ab45 68%, #fff4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.6px;
    line-height: 1.08;
    text-transform: none;
    white-space: normal;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
    text-shadow: 0 0 24px rgba(255, 244, 191, 0.1);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.logo-area {
    width: 95px;
    height: 95px;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(230, 239, 248, 0.94));
    border: 3px solid rgba(236, 202, 106, 0.9);
    box-shadow: 0 14px 32px rgba(7, 18, 34, 0.34), 0 0 0 7px rgba(255, 255, 255, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.nav-logo-area {
    padding: 0;
}

.logo-area::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(236, 202, 106, 0.14);
    pointer-events: none;
}

.nav-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.nav-row {
    display: grid;
    grid-template-columns: minmax(44px, 1fr) fit-content(100%) minmax(44px, 1fr);
    align-items: center;
    gap: clamp(8px, 1.2vw, 20px);
    width: 100%;
    padding: 10px clamp(12px, 2vw, 28px);
    box-sizing: border-box;
    min-height: 76px;
}

.nav-links {
    display: flex;
    list-style: none;
    flex: 0 0 auto;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    max-width: 100%;
    min-width: 0;
    gap: clamp(8px, 1.1vw, 16px);
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 10px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 30px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: all 0.4s ease;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .nav-row {
        grid-template-columns: 1fr;
        padding: 10px 12px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        max-width: 1200px;
        gap: clamp(8px, 1.2vw, 18px);
        padding: 10px 8px;
    }

    .nav-links li a {
        font-size: 18px;
        padding: 16px clamp(20px, 1.9vw, 32px);
        letter-spacing: 1.3px;
    }
}

@media (min-width: 1401px) {
    .nav-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        padding: 10px 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        max-width: 1200px;
        gap: clamp(10px, 1.4vw, 20px);
        padding: 10px 8px;
    }

    .nav-links li a {
        font-size: 19px;
        padding: 16px 32px;
        letter-spacing: 1.4px;
    }
}

.nav-links li a:hover, 
.nav-links li a.active {
    background: linear-gradient(135deg, #e8c96a, #f8efb3) !important;
    color: #171a22 !important;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(232, 201, 106, 0.24);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    grid-column: 3;
    justify-self: end;
    min-width: 44px;
    padding-left: 0;
}

@media (min-width: 901px) {
    .nav-right {
        display: none;
    }
}

@media (max-width: 1700px) {
    .nav-row {
        gap: clamp(6px, 1.2vw, 14px);
        padding: 10px clamp(8px, 1.6vw, 18px);
        grid-template-columns: minmax(0, 1fr) fit-content(100%) minmax(0, 1fr);
    }

    .nav-links {
        max-width: 1200px;
        gap: clamp(8px, 0.9vw, 14px);
        padding: 8px 6px;
    }

    .nav-links li a {
        font-size: clamp(13px, 1vw, 16px);
        padding: clamp(10px, 1.1vw, 13px) clamp(12px, 1.6vw, 18px);
        letter-spacing: clamp(0.6px, 0.12vw, 1px);
    }
}

@media (max-width: 1500px) {
    .navbar-inner {
        width: 98%;
    }

    .trust-name {
        font-size: clamp(1.45rem, 1.85vw, 2.15rem);
        max-width: min(84vw, 1020px);
    }

    .nav-row {
        gap: 8px;
        padding: 10px 12px 10px 6px;
        grid-template-columns: minmax(8px, 1fr) fit-content(100%) minmax(8px, 1fr);
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links li a {
        font-size: 15px;
        padding: 13px 16px;
        letter-spacing: 1px;
    }

    .nav-right {
        min-width: 8px;
    }
}

@media (max-width: 1440px) {
    .nav-row {
        gap: 6px;
        padding: 8px 4px;
        grid-template-columns: minmax(0, 1fr) fit-content(100%) minmax(0, 1fr);
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links li a {
        font-size: 14px;
        padding: 11px 14px;
        letter-spacing: 0.85px;
    }
}

@media (max-width: 1320px) {
    .nav-links {
        gap: 10px;
        padding: 6px 4px;
    }

    .nav-links li a {
        font-size: 13px;
        padding: 10px 12px;
        letter-spacing: 0.7px;
    }
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.045);
    color: #f5dd8a;
    border: 1px solid rgba(245, 221, 138, 0.6);
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 28px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.04em;
}

.nav-phone:hover {
    background: linear-gradient(135deg, #f2d57d, #fff2bf);
    color: #171a22;
}

.menu-toggle {
    display: none !important;
    background: transparent;
    color: #f5dd8a;
    font-size: 34px;
    border: none;
    cursor: pointer;
    padding: 0;
    text-shadow: 0 0 12px rgba(245, 221, 138, 0.25);
}

.navbar.scrolled {
    padding: 10px 0 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        rgba(17, 20, 27, 0.86) !important;
    box-shadow: 0 18px 45px rgba(4, 12, 24, 0.32);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.navbar.scrolled .logo-area {
    width: 70px;
    height: 70px;
}

.navbar.scrolled .trust-name {
    font-size: 28px;
}

.navbar:hover .logo-area {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 20px 38px rgba(7, 18, 34, 0.36), 0 0 0 7px rgba(255, 255, 255, 0.07);
    border-color: rgba(252, 246, 186, 0.95);
}


/* ============================================================
   5. PREMIUM DROPDOWN MENU - LUXURY GLASSMORPHISM
   ============================================================ */

.has-dropdown { 
    position: relative; 
}

/* The Floating Menu Container */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(18px);
    width: 290px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
        rgba(18, 21, 28, 0.94) !important;
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(0, 242, 255, 0.35);
    box-shadow:
        0 24px 45px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(0, 242, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

/* Invisible bridge: prevents menu from closing when moving mouse from link to dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
}

/* Trigger visibility on hover */
.has-dropdown:hover .dropdown { 
    opacity: 1; 
    visibility: visible; 
    transform: translateX(-50%) translateY(8px);
}

/* Link Base State - Forced Visibility Fix */
.dropdown a, 
.dropdown .drop-link,
.dropdown-links-area a.drop-link {
    display: flex !important;
    align-items: center;
    min-height: 54px;
    padding: 14px 18px !important;
    color: #f8f3e4 !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)) !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.32s ease;
    position: relative;
    border: 1px solid rgba(0, 242, 255, 0.18) !important;
    box-shadow: inset 0 1px 0 rgba(0, 242, 255, 0.18);
    overflow: hidden;
}

/* Link Hover State - Interactive Gold Glow */
.dropdown a:hover,
.dropdown .drop-link:hover,
.dropdown-links-area a.drop-link:hover {
    background: linear-gradient(135deg, rgba(223, 193, 104, 0.2), rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(0, 242, 255, 0.35) !important;
    color: #fff4bf !important;
    transform: translateX(4px) translateY(-1px);
    box-shadow:
        0 14px 24px rgba(0, 0, 0, 0.18),
        0 0 18px rgba(0, 242, 255, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Gold Indicator Line */
.dropdown .drop-link::after,
.dropdown a::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 4px;
    background: linear-gradient(180deg, #f7df8d, #bf953f);
    border-radius: 999px;
    transition: all 0.32s ease;
    opacity: 0;
}

.dropdown .drop-link:hover::after,
.dropdown a:hover::after {
    height: 58%;
    opacity: 1;
}

/* Mobile Tweak: Ensure it fits smaller screens */
@media (max-width: 768px) {
    .dropdown {
        width: 240px;
        position: fixed; /* Better stability on mobile touch */
        left: 50%;
    }
}

/* ============================================================
   RESPONSIVE MOBILE HEADER (Logo - Name ------------- Menu)
   ============================================================ */
@media (max-width: 1280px) {
    .navbar {
        padding: 8px 0 14px;
    }

    .navbar-inner {
        width: 96%;
        gap: 14px;
    }

    .brand-wrapper {
        gap: 20px;
    }

    .logo-area {
        width: 82px;
        height: 82px;
    }

    .trust-name {
        max-width: min(80vw, 920px);
        font-size: clamp(1.35rem, 1.7vw, 1.95rem);
        letter-spacing: 0.25px;
    }

    .nav-row {
        gap: 18px;
        padding: 10px clamp(22px, 2.4vw, 36px);
    }

    .nav-links {
        gap: 14px;
        padding: 8px 10px;
    }

    .nav-links li a {
        font-size: 16px;
        padding: 12px 16px;
        letter-spacing: 1.15px;
    }

    .nav-phone {
        padding: 11px 16px;
        font-size: 15px;
    }
}

@media (max-width: 1100px) {
    .navbar-inner {
        width: 98%;
        gap: 12px;
    }

    .brand-wrapper {
        gap: 16px;
    }

    .logo-area {
        width: 72px;
        height: 72px;
    }

    .trust-name {
        max-width: min(78vw, 780px);
        font-size: clamp(1.2rem, 1.5vw, 1.6rem);
        letter-spacing: 0.15px;
    }

    .nav-row {
        grid-template-columns: minmax(28px, 1fr) fit-content(100%) minmax(28px, 1fr);
        gap: 10px;
        padding: 8px 18px;
    }

    .nav-links {
        gap: 8px;
        padding: 6px 6px;
    }

    .nav-links li a {
        font-size: 14px;
        padding: 11px 10px;
        letter-spacing: 0.8px;
    }

    .nav-phone {
        padding: 10px 12px;
        font-size: 13px;
    }

    .nav-right {
        gap: 8px;
        min-width: 28px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-inner {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: auto;
        padding: 0 16px;
        gap: 10px;
        min-height: var(--navbar-height-mobile);
    }

    .brand-row {
        flex: 1 1 0;
        width: auto !important;
        justify-content: flex-start;
        min-width: 0;
    }

    .brand-wrapper {
        gap: 10px;
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .logo-area {
        width: 46px !important;
        height: 46px !important;
        padding: 4px;
    }

    .trust-name {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        font-size: clamp(13px, 1.75vw, 16px) !important;
        letter-spacing: 0.1px;
        white-space: normal;
        line-height: 1.08;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: clip;
    }

    .nav-links,
    .nav-phone {
        display: none !important;
    }

    .nav-row {
        width: auto !important;
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        justify-content: flex-end;
        position: static !important;
        padding: 0;
        min-height: auto;
    }

    .nav-right {
        position: static !important;
        transform: none !important;
        margin-left: auto;
        max-width: none;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
        border: 1px solid rgba(245, 221, 138, 0.24);
        font-size: 28px;
    }

    body.inner-page {
        padding-top: var(--inner-page-offset-mobile);
    }

    body.inner-page::before {
        height: var(--inner-page-offset-mobile);
    }
}

@media (max-width: 900px) {
    .footer-inner {
        padding: 0 20px;
    }

    .footer-grid {
        gap: 36px;
    }

    .footer-bottom-inner {
        padding: 10px 16px;
    }
}

/* =========================
   6. FOOTER
   ========================= */


.site-footer {
    background:
        radial-gradient(circle at top center, rgba(212, 175, 55, 0.10), transparent 35%),
        linear-gradient(180deg, #12151b 0%, #0c0f14 100%);
    padding: 48px 0 16px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    border-top: 1px solid rgba(191, 149, 63, 0.35);
    position: relative;
    overflow: hidden;
    scroll-snap-align: none;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, transparent 72%);
    pointer-events: none;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.95fr 1.1fr;
    gap: 36px;
    margin-bottom: 28px;
    align-items: start;
}

.footer-grid > * {
    min-width: 0;
}

/* BRAND COLUMN */
.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 72px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 14px rgba(191, 149, 63, 0.45));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 22px rgba(191, 149, 63, 0.68));
    transform: translateY(-2px);
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: calc(1.6rem + 2px);
    font-weight: 900;
    background: linear-gradient(90deg, #bf953f 0%, #fcf6ba 45%, #d4a843 75%, #bf953f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: calc(0.88rem + 2px);
    line-height: 1.75;
    color: #c2c9d6;
    text-align: left;
    max-width: 300px;
    margin: 0;
}

/* NAVIGATION & TITLES */
.footer-title {
    font-size: calc(0.82rem + 2px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #bf953f, #fcf6ba);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(191, 149, 63, 0.5);
    transition: width 0.35s ease;
}

.footer-col:hover .footer-title::after {
    width: 100%;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b9c0cb;
    text-decoration: none;
    font-size: calc(0.9rem + 2px);
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a::before {
    content: '→';
    font-size: 13px;
    color: #bf953f;
    opacity: 0;
    position: absolute;
    left: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f0d98a;
    padding-left: 18px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Override the legacy encoded glyph with a stable Unicode arrow. */
.footer-col ul li a::before {
    content: "\2192";
}

/* CONTACT INFO */
.head-office .contact-line {
    font-size: calc(0.9rem + 2px);
    color: #b9c0cb;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.65;
}

.contact-icon {
    display: inline-flex;
    width: 1.25rem;
    justify-content: center;
    flex: 0 0 1.25rem;
    margin-top: 1px;
}

.contact-icon--location {
    color: #ff5a8f;
}

.contact-icon--location::before {
    content: "";
    display: block;
    width: 0.9rem;
    height: 1.08rem;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='black' d='M192 0C86 0 0 86 0 192c0 77.4 27.3 99.8 172.3 310.6 9.5 13.8 29.9 13.8 39.4 0C356.7 291.8 384 269.4 384 192 384 86 298 0 192 0zm0 272c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='black' d='M192 0C86 0 0 86 0 192c0 77.4 27.3 99.8 172.3 310.6 9.5 13.8 29.9 13.8 39.4 0C356.7 291.8 384 269.4 384 192 384 86 298 0 192 0zm0 272c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-text {
    min-width: 0;
}

.head-office a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.head-office a:hover {
    color: #f0d98a;
}

/* FOOTER BOTTOM - COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(191, 149, 63, 0.18);
    padding-top: 12px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(191, 149, 63, 0.10);
    padding: 8px 20px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    gap: 16px;
}

.copyright {
    font-size: calc(0.82rem + 2px);
    color: #9aa3b2;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar-inner {
        width: 100%;
        padding: 0 12px !important;
        gap: 8px !important;
        min-height: 72px;
    }

    .brand-wrapper {
        gap: 8px;
        min-width: 0;
        max-width: none;
    }

    .logo-area {
        width: 38px !important;
        height: 38px !important;
    }

    .trust-name {
        max-width: none;
        font-size: clamp(12px, 3.2vw, 15px) !important;
        letter-spacing: 0 !important;
        white-space: normal;
        line-height: 1.1;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: clip;
    }

    .menu-toggle {
        font-size: 21px;
        width: 36px;
        height: 36px;
    }

    body.inner-page {
        padding-top: 84px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-col,
    .footer-desc,
    .head-office {
        text-align: center;
    }

    .head-office {
        width: fit-content;
        max-width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .brand-col {
        align-items: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .head-office .contact-line {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }

    .head-office .contact-line .contact-text {
        text-align: left;
    }

}

/* Extra tiny screen adjustments */
@media (max-width: 480px) {
    .navbar-inner {
        padding: 0 12px !important;
        min-height: 68px;
    }

    .brand-wrapper {
        max-width: none;
    }

    .logo-area { width: 36px !important; height: 36px !important; }
    .trust-name {
        max-width: none;
        font-size: clamp(11px, 3.25vw, 14px) !important;
        letter-spacing: 0 !important;
        white-space: normal;
        line-height: 1.12;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: clip;
    }
    .menu-toggle { width: 32px; height: 32px; font-size: 20px; }
    .menu-corner-btn { width: 36px; height: 36px; font-size: 18px; }
    .site-footer {
        padding: 10px 0 18px 0;
    }

    .footer-inner {
        padding: 0 16px;
    }

    .footer-bottom-inner {
        padding: 14px;
        border-radius: 16px;
    }

}

/* Very-very small */
@media (max-width: 420px) {
    .trust-name {
        max-width: none;
        font-size: clamp(11px, 3.35vw, 13px) !important;
        letter-spacing: 0 !important;
        line-height: 1.1;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .logo-area { width: 34px !important; height: 34px !important; }
    .menu-toggle { width: 30px; height: 30px; font-size: 18px; }
    .menu-corner-btn { width: 40px; height: 40px; font-size: 20px; }
}

@media (max-width: 360px) {
    .navbar-inner {
        padding: 0 10px !important;
        min-height: 64px;
    }

    .brand-wrapper {
        gap: 6px;
        max-width: none;
    }

    .logo-area {
        width: 30px !important;
        height: 30px !important;
    }

    .trust-name {
        max-width: none;
        font-size: 11px !important;
        line-height: 1.08;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .menu-toggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* =========================
   8. INTRO / AURA / LOADER
   ========================= */

.intro-overlay {
    --intro-total-duration: 5200ms;
    --intro-exit-duration: 600ms;
    --intro-loader-duration: 4300ms;
    position: fixed;
    inset: 0;
    background: #0a0814;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
}

.intro-bg-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, #5f0f2e 0%, transparent 60%),
                radial-gradient(circle at 20% 30%, #5f0f2e 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, #1a052e 0%, transparent 50%);
    filter: blur(100px);
    opacity: 0.6;
    animation: backgroundDrift 42s infinite alternate ease-in-out;
}

@keyframes backgroundDrift {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    100% { transform: translate(10%, 10%) rotate(5deg); }
}

.logo-aura-container {
    position: relative;
    width: min(240px, 35vw);
    aspect-ratio: 1;
    margin: 0 auto 45px;
    display: grid;
    place-items: center;
}

.intro-emblem {
    position: relative;
    width: min(100%, 235px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    padding: 14px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), rgba(246, 233, 190, 0.92) 58%, rgba(209, 171, 69, 0.92) 100%);
    border: 4px solid rgba(244, 196, 48, 0.9);
    z-index: 5;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.34),
        0 0 0 10px rgba(255, 255, 255, 0.06),
        0 0 34px rgba(244, 196, 48, 0.28);
    filter: drop-shadow(0 0 22px rgba(90, 30, 142, 0.35));
    animation: emblemFloat 5.8s infinite ease-in-out;
}

.aura-pulse {
    position: absolute;
    inset: -34px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.34) 0%, rgba(244, 196, 48, 0.08) 45%, transparent 72%);
    border-radius: 50%;
    z-index: 1;
    animation: auraGlow 4.8s infinite ease-in-out;
}

@keyframes auraGlow {
    0%, 100% { transform: scale(0.96); opacity: 0.18; }
    50% { transform: scale(1.16); opacity: 0.5; }
}

@keyframes emblemFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.intro-text-block { text-align: center; max-width: 90vw; }

.intro-title-main {
    font-family: 'Playfair Display', serif;
    font-size: calc(clamp(1.8rem, 5vw, 3.8rem) + 2px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin: 0;
    position: relative;
}

.intro-title-main .line {
    display: block;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUpIn 1.05s forwards cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-title-main .line:nth-child(1) { animation-delay: 0.22s; }
.intro-title-main .line:nth-child(2) { animation-delay: 0.42s; }

.intro-title-main::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    animation: textShine 7.5s infinite 2.8s;
}

@keyframes textShine {
    0% { left: -100%; }
    24% { left: 150%; }
    100% { left: 150%; }
}

@keyframes fadeUpIn {
    to { opacity: 1; transform: translateY(0); }
}

.intro-separator {
    width: 0;
    height: 2px;
    background: #f4c430;
    margin: 25px auto;
    animation: expandLine 0.9s forwards 0.82s;
}
@keyframes expandLine { to { width: 140px; } }

.intro-title-abbr {
    font-family: 'Playfair Display', serif;
    font-size: calc(clamp(1.5rem, 3.5vw, 2.2rem) + 2px);
    color: #f4c430;
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0;
    opacity: 0;
    animation: fadeUpIn 0.95s forwards 0.95s;
    text-shadow: 0 0 20px rgba(244, 196, 48, 0.5);
}

/* Loader / progress */
.intro-loader-container {
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 50px auto 0;
    position: relative;
}
.loader-bar {
    position: absolute;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #f0c04a, #fff0a8);
    box-shadow: 0 0 14px rgba(244, 196, 48, 0.9);
    transform-origin: left center;
    animation: loadProgress var(--intro-loader-duration) cubic-bezier(0.2, 0.9, 0.25, 1) forwards;
}
@keyframes loadProgress {
    0% { width: 0; opacity: 0.85; }
    65% { width: 72%; opacity: 1; }
    100% { width: 100%; opacity: 1; }
}

/* Skip button */
.skip-btn {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.skip-btn:hover { background: #fff; color: #000; border-color: #fff; }

@media (max-width: 768px) {
    .logo-aura-container {
        width: min(260px, 56vw);
        margin-bottom: 32px;
    }

    .intro-emblem {
        width: min(100%, 200px);
        padding: 11px;
        border-width: 3px;
        box-shadow:
            0 14px 28px rgba(0, 0, 0, 0.3),
            0 0 0 7px rgba(255, 255, 255, 0.05),
            0 0 24px rgba(244, 196, 48, 0.24);
    }

    .skip-btn {
        bottom: 18px;
        right: 18px;
        padding: 10px 16px;
        font-size: 0.92rem;
    }
}

/* Exit animation */
.intro-overlay.exit {
    opacity: 0;
    transform: scale(1.05);
    transition: all var(--intro-exit-duration) ease;
    pointer-events: none;
}

/* =========================
   9. MISC / SITE-SPECIFIC FIXES
   ========================= */

/* Keep the impact grid visible even if generic hide classes applied */
#impact-grid-container {
    opacity: 1 !important;
    visibility: visible !important;
    display: block;
}

/* =========================
   10. Small utilities (can extend later)
   ========================= */

.center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* =========================
   11. Reduced motion preference
   ========================= */

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* =========================
   End of consolidated stylesheet
   ========================= */

   @media (max-width: 600px) {
  .mmect-image-wrapper {
    min-width: 0; /* allow shrinking */
    width: 100%;
  }
  .mmect-image-frame {
    max-width: 100%; /* let it scale down */
    border-radius: 30px; /* smaller radius for small screens */
  }
  .mmect-full-view-img {
    border-radius: 20px; /* match smaller frame */
  }
}
