/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }


/* ===== VARIABLES - HIGH CONTRAST DARK GREY THEME ===== */
:root {
  /*  --primary: #1a1a1a;
    --primary-dark: #0f0f0f;
    --light-bg: #242424;

    --secondary: #D4AF37; 
    --secondary-light: #e6c37a;
    --accent: #997a2d;
    
    --light: #f5f5f5;
    --gray: #a0a0a0;
    --dark: #e0e0e0;
    
    --gray-light: #2d2d2d;
   */ 
   
    --primary: #0F0F10;          /* Deep Black */
    --primary-dark: #050505;     /* Pure Black for Hero/Footer */
   
    --secondary: #C6A56B;       /* Refined Gold */
    --secondary-light: #e6c37a;
    --accent: #997a2d;
   
    --light: #F5F3EE;           /* Ivory White Text */
    --light-bg: #161617;        /* Subtle Card Lifts */
    
    --dark: #e0e0e0;
    
    --gray: #8E8E8E;            /* Muted Meta Text */
    --gray-light: rgba(198, 165, 107, 0.2); /* Gold-tinted borders */
    
    /* Typography */
    --font-heading: 'Fraunces', serif; /* Canela Lookalike */
    --font-body: 'Inter', sans-serif;   /* Neue Haas Lookalike */
    
   --nav-toggler-color: var(--secondary);      /* Gold lines */
    --nav-toggler-bg: transparent;              /* Transparent box */
    --nav-toggler-border: rgba(255,255,255,0.1); /* Subtle white border */
    --nav-toggler-focus-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25); /* Gold glow */
    
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    
    --radius-sm: 6px;
    --radius-md: 0px;
    --radius-lg: 0px;
}
/* ===== ARCHITECTURAL RESET (Square corners for institutional feel) ===== */
body {
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
    background-color:var(--primary);
    color:  var(--light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}

.btn, img, .card, .form-control, .form-select, .region-card, .principle-item, .map-box, .stat-block {
    border-radius: 0 !important;
}
.text-muted{ color: rgba(255, 255, 255, 0.5) !important;}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .legacy-word-stack {
    font-family: var(--font-heading) !important;
    font-weight: 300; /* Use thin weights for the 'Canela' look */
    letter-spacing: -0.02em;
    text-transform: none; /* Serifs often look better in sentence case */
    /*line-height: 1.1;*/
}

/* Gold Accents for Kickers & Subtitles */
.section-subtitle, .hero-kicker, .stat-label, .author {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px; /* wide tracking is a luxury standard */
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--secondary);
}

/* Paragraphs in Ivory White */
p, .story-text, .bio-long {
    color: var(--light);
    opacity: 0.8; /* Slight fade for body text to keep headings as heroes */
    font-weight: 300;
    line-height: 1.8;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.main-header.scrolled { background: rgba(26, 26, 26, 1); box-shadow: var(--shadow-md); }
.main-header { border-bottom: 0px !important; }

.logo-container { display: flex; align-items: center;text-decoration: none; }
.logo-link  { text-decoration:none;}
.logo-img { height: 80px; width: auto; margin-right: 5px;display: flex; align-items:center; }
.logo-img img { height: 100%; width: auto; object-fit: contain; }
.logo-text { text-decoration:none; display: flex; flex-direction: column; justify-content: center;}
.logo-main { text-decoration:none; font-family: 'Poppins', sans-serif; font-size: 1.95rem; font-weight: 600; color: var(--secondary); line-height: 0.8;letter-spacing: -1px; text-transform: uppercase; }
.logo-sub { text-decoration:none; font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--secondary); font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-top: 5px; }

.navbar-nav { gap: 0.1rem; }
.nav-link {
    font-family: var(--font-body) !important;
    font-weight: 600;
    font-size: 0.85rem;
    
    padding: 30px 15px !important;
    color: var(--dark) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}
.nav-link:hover { color: var(--secondary) !important; }
.nav-link.active { color: var(--secondary) !important; font-weight: 700; }
.nav-link.active::before { width: 100%; }
.nav-link::after { display: none !important; }
/* Custom Navbar Toggler */
.navbar-toggler {
    background-color: var(--nav-toggler-bg);
    border: 1px solid var(--nav-toggler-border);
    padding: 0.5rem;
    border-radius: 0; /* Keep it architectural/square */
}
/* Change the Hamburger Lines to Gold */
.navbar-toggler-icon {
    /* We encode the Gold color #D4AF37 as %23D4AF37 in the SVG */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Remove default Bootstrap blue outline and add subtle gold shadow */
.navbar-toggler:focus {
    box-shadow: var(--nav-toggler-focus-shadow);
    border-color: var(--secondary);
    outline: none;
}

/* Hover state for premium feel */
.navbar-toggler:hover {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== MEGA MENU STYLES ===== */
.mega-dropdown { position: static; }
.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow:0 40px 100px rgba(0, 0, 0, 0.8);
    background: var(--primary);
    margin-top: 0 !important;
    border-top: 1px solid var(--gray-light);
}
.mega-menu-about { max-width: 1300px; margin: 0 auto; padding: 40px; }
.about-menu-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.about-left-column { display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--gray-light); /* Hairline divider */
    padding-right: 50px;}
.about-large-text { font-family: var(--font-heading); /* Fraunces */
    font-size: 1.6rem; 
    line-height: 1.4; 
    color: var(--light); /* Ivory */
    font-weight: 200; /* Ultra thin */
    font-style: italic;  }
.about-right-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.about-card-link { text-decoration: none; display: block; transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);  }
.about-card-link:hover { transform: translateY(-5px); }
.about-card-image { width: 100%; height: 160px; object-fit: cover; border-radius: 0px; margin-bottom: 15px; 
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
.about-card-link:hover .about-card-image { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
.about-card-title { font-family: var(--font-heading); /* Fraunces */
    font-size: 1.2rem; 
    font-weight: 300; 
    color: var(--secondary); /* Champagne Gold */
    margin-bottom: 12px; 
    letter-spacing: 0;
    transition: color 0.3s ease; }
.about-card-link:hover .about-card-title { color: var(--light); }
.about-card-description {  font-family: var(--font-body); /* Inter */
    font-size: 0.85rem; 
    line-height: 1.6; 
    color: var(--light); 
    opacity: 0.6; /* Muted ivory */
    margin: 0; 
    font-weight: 300; }
.about-left-column::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--secondary);
    margin-bottom: 25px;
}

/* Business Mega Menu */
.mega-menu-business { max-width: 1300px; margin: 0 auto; padding: 40px; }
.business-menu-grid-container { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; }
.business-left-column { display: flex; flex-direction: column; gap: 30px; }
.business-large-text { font-size: 1.1rem; line-height: 1.7; color: #b0b0b0; font-weight: 400; }
.business-link-row { display: flex; align-items: center; }
.business-link-item { color: var(--secondary); text-decoration: none; font-size: 1rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.business-link-item:hover { color: var(--secondary-light); gap: 12px; }
.business-right-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.business-card, .business-card-item { width: 100%; }
.business-card-link { text-decoration: none; display: block; transition: all 0.3s ease; }
.business-card-link:hover { transform: translateY(-3px); }
.business-card-link img { width: 100%; height: 111px; object-fit: cover; border-radius: 6px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
.business-card-link:hover img { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); }
.business-card-link h5 { font-size: 0.9rem; font-weight: 600; color: #e8e8e8; margin-top: 10px; margin-bottom: 0; line-height: 1.4; transition: color 0.3s ease; }
.business-card-link:hover h5 { color: var(--secondary); }

/* ===== SECTION CONTAINERS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light-gray { background-color: #2d2d2d; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title span { color: var(--secondary); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 10px; }
.section-title h2 { font-size: 2.2rem;  color: #e8e8e8; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: transparent; padding: 0; justify-content: center; margin-bottom: 20px; display: flex; gap: 10px; list-style: none; }
.breadcrumb a { color: var(--secondary); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); }

/* ===== HOME PAGE HERO (Video Background) ===== */
.hero-section { position: sticky; top: 0; height: 100vh; z-index: 1; overflow: hidden; background: #000; }
.hero-video-wrapper { position: absolute; top: -10%; left: 0; width: 100%; height: 130%; will-change: transform; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; 
                 background: linear-gradient(
        90deg, 
        rgba(15, 15, 16, 0.95) 0%,   /* Solid black on text side */
        rgba(15, 15, 16, 0.4) 60%,   /* Deep fade */
        rgba(198, 165, 107, 0.05) 100% /* Subtle gold tint on video side */
    );
      /*          background: linear-gradient(90deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.6) 50%, transparent 100%); */
                z-index: 2; }
.hero-content { position: relative; z-index: 3; height: 100vh; display: flex; align-items: center; padding-left: 10%; color: #e8e8e8; }
.hero-content h1 { font-family: var(--font-heading);font-weight: 200;font-size: clamp(2.5rem, 5vw, 3.8rem); color:var(--light); margin-bottom: 25px; letter-spacing: -0.01em;  }
.hero-content h1 span { color: var(--secondary); font-size:italic; }
.hero-content .hero-intro { font-size: 1.05rem; font-weight:300; max-width: 600px; line-height: 1.8; color: var(--light); border-left: 2px solid var(--secondary); 
                          letter-spacing:0;  padding-left: 25px; margin-bottom:40px; }
.hero-kicker { color: var(--secondary); text-transform: uppercase; letter-spacing: 4px; font-weight: 700; font-size: 0.85rem; margin-bottom: 15px; display: block; }
.btn-hero { padding: 18px 40px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; border-radius: 0 !important; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary-hero { background: var(--secondary); color: #1a1a1a; }
.btn-primary-hero:hover { background: #fff; color: #1a1a1a; transform: translateY(-5px); }
.btn-secondary-hero { background: #1a1a1a; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-secondary-hero:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }

/* ===== ABOUT & INNER PAGES HERO (Standard) ===== */
.page-hero {
    height: 80vh;
    min-height: 600px;
    background: #000;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 1;
}
.hero-overlay-refined {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0.4) 100%);
    z-index: 2;
}
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.hero-container .breadcrumb {
    background: transparent;
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    list-style: none;
}
.hero-container .breadcrumb a { color: var(--secondary); text-decoration: none; }
.hero-container .breadcrumb li { color: rgba(255,255,255,0.7); }
.page-hero h1 
{
    font-family: var(--font-heading); 
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 200;
    color:var(--light); /* Ivory White */
    margin-bottom: 25px;
    text-align: left;
    letter-spacing: -0.02em;
    
}
.page-hero h1 span { color: var(--secondary); font-weight: 300;    font-style: italic;  }
.page-hero p 
{
     font-family: var(--font-body);
    text-align: left;
    margin: 0;
    border-left: 2px solid var(--secondary);
    padding-left: 30px;
    font-size: 1.1rem;
     font-weight: 300;
     line-height:1.8;
    color:  var(--light);
    opacity:0.85;
    max-width: 650px;
}

/* ===== BRAND STRIP ===== */
.curtain-top { position: relative; z-index: 30; background: #1a1a1a; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.brand-strip { padding: 60px 0; background: #121212; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.brand-slider { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px 30px; }
/*.brand-logo-item {
    background: rgba(255, 255, 255, 0.03); 
    padding: 20px;    display: flex;    align-items: center;    justify-content: center;    
    min-width: 160px;    height: 100px;}
*/
.brand-logo-item img {  max-height: 80px; ; filter: grayscale(0%) brightness(1); transition: all 0.4s ease; }
/*.brand-logo-item:hover img { filter: grayscale(100%) brightness(1.5); transform:scale(1.05)}*/

/* ===== STATS SECTION (Institutional Style) ===== */
.stats-map-section { padding: 100px 0; background-color: var(--primary-dark); position: relative; overflow: hidden; }
.light-map-background { position: absolute; top: -10%; left: 0; right: 0; height: 120%; opacity: 0.05; 
                       filter:invert(1); background-size: contain; background: url('/images/dubai-map.png') no-repeat center center; will-change: transform; pointer-events: none; z-index: 1; }
.stats-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
/*.stats-title { font-size: 2.8rem; font-weight: 700; color: #e8e8e8; margin-bottom: 20px; line-height: 1.2; }*/
.stats-title { margin-bottom:20px; }
.stats-title span { color: var(--secondary); display: inline-block; font-weight: 300; }
.stats-description {font-family: var(--font-body); font-size: 1.1rem; line-height: 1.9; color: var(--light); opacity:0.8; max-width: 800px; margin-bottom: 40px; font-weight: 300; }

.institutional-stats-bar { display: flex; justify-content: space-around; align-items: flex-start; padding: 80px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-top: 50px; background: transparent; backdrop-filter: none; box-shadow: none; }
.stat-item { text-align: center; position: relative; flex: 1; padding: 0 30px; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent); }
.stat-number {font-family: var(--font-heading); font-size: 5rem; font-weight: 200; color: var(--secondary);  text-shadow:  0 0 40px rgb(198 165 107 / 15%);  
               line-height: 1; display: block; margin-bottom: 15px; letter-spacing: -2px; }
.stat-label { font-size: 0.8rem; font-weight: 700; color: var(--gray) !important; text-transform: uppercase; letter-spacing: 2px; line-height: 1.5; display: block; }
.stat-number-large { font-size: 4rem; font-weight: 900; color: var(--secondary); display: block; }
.stat-label-large { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0px; font-weight: 700; color: #e8e8e8; display: block; margin-left: 10px; }
.stat-label-main { display: block; font-weight: 700; color: #e8e8e8; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-top: 10px; }
.stat-sub-label { display: block; color: #b0b0b0; font-size: 0.8rem; margin-top: 5px; }
.stat-grid { display: flex; justify-content: space-around; align-items: center; padding: 60px 0; border-top: 1px solid #404040; border-bottom: 1px solid #404040; margin: 40px 0; }

/* ===== LEGACY SECTION (Chairman Message) ===== */
.legacy-section-new {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}
.legacy-section-new::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070') center/cover; opacity: 0.06; pointer-events: none; }
.legacy-container-new { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; gap: 60px; }
.legacy-text-side { flex: 1; color: #e8e8e8; }
.legacy-text-side .pre-title { color: var(--secondary); text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; display: block; }
.legacy-text-side h2 {  font-family: var(--font-heading); /* Fraunces */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Proportional scaling */
    font-weight: 200; /* Thin weight */
    color: var(--light);  margin-bottom: 25px; line-height: 1.2;  letter-spacing: -0.02em;}
.legacy-text-side .legacy-desc {  font-family: var(--font-body); /* Inter */font-size: 1rem; line-height: 1.7; font-weight: 300; color: var(--light); opacity:0.75;
                                   margin-bottom: 30px; text-align:justify; }
.legacy-quote-block { background: rgba(255, 255, 255, 0.02);  border-left: 3px solid var(--secondary); padding-left: 25px; margin: 30px 0; }
.legacy-quote-block p { font-size: 1.1rem; font-style: italic; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.legacy-quote-block .author { font-size: 0.85rem; color: var(--secondary); letter-spacing: 1px; }
.legacy-image-side { flex: 1; text-align: center; }
.legacy-image-side img { width: 100%; max-width: 400px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 4px solid var(--secondary); }
.chairman-badge { margin-top: 20px; text-align: center; }
.chairman-badge .name { font-size: 1.2rem; font-weight: 300; color: var(--secondary); }
.chairman-badge .title { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ===== WHAT WE DO STICKY GRID ===== */
.reveal-parent { position: relative; z-index: 10; margin-top: -100vh; height: 260vh; background: var(--primary); }
.sticky-grid-container { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; overflow: hidden; background: var(--primary); }
.wwd-static-header { position: relative; z-index: 20; background: var(--primary); padding: 120px 0 40px; text-align: center; }
.wwd-static-header h2 { font-family: var(--font-heading); font-size: 3rem; font-weight: 200; letter-spacing:  -0.02em; color: var(--light); margin: 0; }
.wwd-static-header p { font-family: var(--font-body);font-weight: 300;text-transform: uppercase;letter-spacing: 4px;font-size: 0.7rem;color: var(--secondary); /* Gold */margin-top: 15px;}
.what-we-do-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; width: 100%; padding: 0 5% 100px; will-change: transform; }
.center-stack { display: flex;flex-direction: column;gap: 15px;}

/* 3D Flip Cards */
.wwd-card { position: relative; border-radius: 0; cursor: pointer; perspective: 1500px; }
.wwd-card.tall { height: 515px; }
.wwd-card.small { height: 250px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);  transform-style: preserve-3d; }
.wwd-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { background: #000; border-color: var(--secondary);position: absolute; inset: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden; overflow: hidden; }
.flip-card-front { z-index: 2; transform: rotateY(0deg); }
.flip-card-front img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; filter: contrast(1.1) grayscale(20%); }
.flip-card-back { background: var(--light-bg); color: var(--light); transform: rotateY(180deg); display: flex; align-items: center; justify-content: center; padding: 40px; 
                  border: 1px solid var(--gray-light); }
.back-content { text-align: center; }
.back-content i { font-size: 2.2rem; color: var(--secondary); margin-bottom: 25px; font-weight: 300; display: block; }
.back-content h4 { font-family: var(--font-heading);color: var(--secondary); font-weight: 300; font-size: 1.5rem; margin-bottom: 20px; letter-spacing:0; }
.back-content p {font-family: var(--font-body); font-size: 0.95rem; line-height: 1.8; color: var(--light);opacity: 0.8; }
.wwd-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 30px; 
                background: linear-gradient(to top, rgba(15, 15, 16, 0.9) 0%, transparent 60%); z-index: 2; }
.wwd-overlay h4 {font-family: var(--font-heading); color: var(--light); font-weight: 200; font-size:1.4rem; text-transform: none; letter-spacing: 0; margin: 0; }

/* ===== NARRATIVE CHAPTERS (Architectural Storytelling) ===== */
.narrative-chapter {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 140px; /* More whitespace */
    position: relative;
}

.narrative-chapter:nth-child(even) { flex-direction: row-reverse; }

.chapter-content { flex: 1; position: relative; z-index: 2; }

/* The Ghost Numbers - Switch to Serif */
.chapter-content .chapter-number {
    position: absolute;
    top: -80px;
    left: -40px;
    font-size: 14rem; /* Larger */
    font-weight: 400; 
    font-family: var(--font-heading); /* Fraunces */
    color: transparent;
    -webkit-text-stroke: 1px rgba(198, 165, 107, 0.15); /* Gold-tinted outline */
    z-index: -1;
    line-height: 1;
    user-select: none;
}

.chapter-label {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 5px; /* Wider tracking */
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.chapter-content h3 {
    font-family: var(--font-heading); /* Fraunces */
    font-size: 2.8rem;
    font-weight: 200; /* Ultra thin */
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--light);
    letter-spacing: -0.02em;
}

.story-text {
    font-family: var(--font-body); /* Inter */
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--light);
    opacity: 0.75; /* Sophisticated muted ivory */
    margin-bottom: 25px;
}

/* Luxury Dropcap */
.story-intro::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.8;
    font-weight: 300;
    padding-right: 15px;
    color: var(--secondary);
}

/* Sharp Architectural Image Frame */
.chapter-image {
    flex: 1;
    height: 520px;
    overflow: hidden;
    border-radius: 0 !important; /* Force square corners */
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-lg);
}

.chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1) desaturate(0.2);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
/* ===== MISSION & VISION CARDS ===== */

/* Remove the 'Card' background to let the typography breathe */
.mission-card, .vision-card {
    padding: 0; 
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    height: auto;
}

.mv-box {
    padding: 40px 0;
    border-top: 1px solid var(--gray-light); /* Subtle line separator */
}

.mv-box i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    display: block;
    font-weight: 300;
}

.mv-title {
    font-family: var(--font-heading); /* Fraunces */
    font-size: 1.8rem;
    font-weight: 200; /* Thin */
    color: var(--secondary); /* Title in Gold */
    margin-bottom: 25px;
    letter-spacing: 0;
    text-transform: none;
}

.mv-primary {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: block;
}

.mv-supporting {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    display: block;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05); /* Very faint internal divider */
}

/* Hover effect: Subtle lift of the whole typographic unit */
.col-md-6:hover .mv-box {
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}


/* ===== TIMELINE ===== */
/* ===== TIMELINE: AUREUM INSTITUTIONAL REFINEMENT ===== */
.timeline-section { 
    padding: 140px 0; 
    background: var(--primary); /* Deep Obsidian #0F0F10 */
}

.timeline-container { 
    position: relative; 
    max-width: 1100px; 
    margin: 0 auto; 
}

/* The Center Spine - Reduced to a 1px Hairline */
.timeline-container::before { 
    content: ''; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 1px; 
    height: 100%; 
    background: rgba(198, 165, 107, 0.2); /* Faint Gold Line */
    top: 0; 
}

.timeline-item { 
    margin-bottom: 100px; 
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Dot - Changed to a small, sharp Gold Point */
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    top: 30px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(198, 165, 107, 0.4);
}

.timeline-content {
    width: 42%;
    padding: 0; /* Remove padding to let borders define the space */
    background: transparent !important; /* Remove the heavy box background */
    border: none !important;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Asymmetrical Border Logic: 
   Creates a 'L' or 'J' bracket effect instead of a full box */
.timeline-item:nth-child(odd) .timeline-content { 
    margin-left: auto; 
    padding-left: 40px;
    border-left: 1px solid var(--gray-light); /* Subtle left bracket */
}

.timeline-item:nth-child(even) .timeline-content { 
    margin-right: auto; 
    padding-right: 40px;
    text-align: right;
    border-right: 1px solid var(--gray-light); /* Subtle right bracket */
}

/* --- TYPOGRAPHY --- */

.timeline-year { 
    font-family: var(--font-heading); /* Fraunces */
    font-size: 2.2rem; 
    font-weight: 200; 
    font-style: italic; /* Luxury Italic Signature */
    color: var(--secondary); 
    margin-bottom: 15px; 
    line-height: 1;
}

.timeline-content h4 { 
    font-family: var(--font-heading);
    font-size: 1.4rem; 
    font-weight: 300; 
    color: var(--light); 
    margin-bottom: 15px; 
    letter-spacing: -0.01em;
}

.timeline-content p { 
    font-family: var(--font-body); /* Inter */
    color: var(--light); 
    opacity: 0.7; 
    line-height: 1.8; 
    font-weight: 300;
}

/* Hover Effect: Highlight the Year and the Bracket */
.timeline-item:hover .timeline-content {
    border-color: var(--secondary);
}

.timeline-item:hover .timeline-year {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .timeline-container::before { left: 20px; }
    .timeline-dot { left: 20px; transform: translateX(0); }
    .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; text-align: left !important; border-right: none !important; border-left: 1px solid var(--gray-light) !important; padding-left: 25px !important; }
}

/* ===== CHAIRMAN'S MESSAGE ===== */
.chairman-section { padding: 80px 0; background: var(--primary); }
.chairman-grid { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.chairman-image { flex: 1; text-align: center; }
.chairman-image img { width: 100%; max-width: 400px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 2px solid var(--gray-light); }
.chairman-message { flex: 1.2; }
.chairman-message h3 { font-family: var(--font-heading);font-size: 2.8rem; font-weight: 200; color: var(--light);  margin-bottom: 5px; }
.chairman-title { font-family: var(--font-body); color: var(--secondary); font-weight: 600; margin-bottom: 30px; font-size: 0.75rem; text-transform: uppercase;letter-spacing: 3px; }
.chairman-quote { font-family: var(--font-heading); font-size: 1.6rem; line-height: 1.5; color: var(--light);  font-style: italic; margin-bottom: 25px; border-left: 2px solid var(--secondary); padding-left: 30px; }
.chairman-message p {font-family: var(--font-body); color: var(--light);  line-height: 1.9; font-weight: 300; margin-bottom: 25px; }
.signature { margin-top: 30px; font-family: var(--font-heading);font-weight: 300; font-style: italic;  color: var(--secondary);  }

/* ===== LEADERSHIP TEAM GRID ===== */
.leadership-team { margin-top: 50px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.leader-card { text-align: center; transition: all 0.3s ease; }
.leader-img { width: 100%; height: 400px; object-fit: cover; margin-bottom: 20px; border: 4px solid var(--secondary); box-shadow: var(--shadow-md); transition: all 0.5s ease; }
.leader-card:hover .leader-img { /* filter: grayscale(100%); */ transform: translateY(-5px); }
.leader-name {  font-family: var(--font-heading);font-size: 1.6rem; font-weight: 300; color: var(--light);  margin-bottom: 5px; }
.leader-title {font-family: var(--font-body); color: var(--secondary); font-weight: 700; margin-bottom: 10px;text-transform: uppercase;letter-spacing: 2px; font-size: 0.7rem; }
.leader-bio { color: #b0b0b0; font-size: 0.9rem; line-height: 1.6; }

/* ===== CORE VALUES HORIZONTAL ===== */
.values-horizontal-section { padding: 100px 0; background:var(--primary-dark);  border-top: 1px solid var(--gray-light);  }
.values-horizontal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.value-item-h { text-align: left; }
.value-item-h i { font-size: 1.5rem; color: var(--secondary); margin-bottom: 20px; display: block; }
.value-item-h h4 {font-family: var(--font-heading); font-size: 1.3rem; font-weight: 300; color:var(--light);  margin-bottom: 15px; text-transform: none; }
.value-item-h p { font-size: 0.95rem; color: var(--gray);  line-height: 1.8;font-weight: 300; }

/* ===== PLATFORM VERTICAL CHAPTERS ===== */
.platform-hero { background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.98)), url('https://images.unsplash.com/photo-1495020689067-958852a7765e?q=80&w=2070');
                  background-size: cover; background-position: center; padding: 200px 0 140px; color: #e8e8e8; text-align: center; }
.platform-hero h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; margin-bottom: 30px; letter-spacing: -1.5px; line-height: 1.1; }
.platform-hero p { max-width: 850px; margin: 0 auto; font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.8; }

.vertical-chapter { display: flex; align-items: stretch; min-height: 100vh; position: relative; }
.vertical-chapter.reverse { flex-direction: row-reverse; }
.vertical-text-side { flex: 1; padding: 100px 8%; display: flex; flex-direction: column; justify-content: center; background: #1a1a1a; }
.vertical-image-side { flex: 1; position: relative; overflow: hidden; background: #2d2d2d; }
.vertical-image-side img { width: 100%; height: 100%; object-fit: cover; }
.vertical-kicker { color: var(--secondary); text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem; font-weight: 800; margin-bottom: 15px; display: block; }
.vertical-title {  font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem);  font-weight: 200; margin-bottom: 25px; color: var(--light);  }
.vertical-tagline {  font-family: var(--font-heading);
    font-style: italic;color: var(--secondary); font-weight: 300; font-size: 1.2rem; margin-bottom: 30px; display: block;
     border-left: 3px solid var(--secondary); padding-left: 20px; }
.vertical-desc { font-size: 1.05rem; color: #b0b0b0; line-height: 1.8; margin-bottom: 30px; }
.market-brief { background: rgba(255,255,255,0.02);  padding: 30px; margin-top: 30px; border: 1px solid var(--gray-light);  }
.market-brief h4 {font-family: var(--font-body); font-size: 0.85rem; font-weight: 800; color: #e8e8e8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.market-list { list-style: none; padding: 0; margin: 0; }
.market-list li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 0.9rem; color: #b0b0b0; font-weight: 600; }
.market-list li::before { content: '▹'; position: absolute; left: 0; color: var(--secondary); }
.btn-detailed-link { color: #e8e8e8; text-decoration: none; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; border-bottom: 2px solid var(--secondary); padding-bottom: 5px; width: fit-content; }
.btn-detailed-link:hover { color: var(--secondary); gap: 15px; }

.logic-section { padding: 140px 0; background: var(--primary-dark);  color:var(--light); text-align: center; }
.logic-section h3 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 200; color:var(--light);  margin-bottom: 30px; letter-spacing: -1px; }
.logic-section p { max-width: 900px; margin: 0 auto; color: rgba(255,255,255,0.7); font-size: 1.25rem; line-height: 1.8; font-weight: 300; }

/* ===== INVESTMENT PAGE STYLES ===== */
.invest-hero {    height: 80vh;min-height: 600px;background: var(--primary);
    background: linear-gradient(90deg, rgba(15, 15, 16, 0.95) 0%, rgba(15, 15, 16, 0.6) 100%), 
               url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070');background-size: cover;background-position: center;
    display: flex;align-items: center;position: relative;overflow: hidden;}
.tagline-hero {font-family: var(--font-body); color: var(--secondary); text-transform: uppercase; letter-spacing: 4px; font-weight: 700; font-size: 0.75rem; margin-bottom: 20px; display: block; }
.invest-hero h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 200; margin-bottom: 35px; letter-spacing: -0.02em; 
                  line-height: 1.1; color: var(--light);  }
.invest-hero p { font-family: var(--font-body); max-width: 800px; font-size: 1.15rem; color: var(--light);  line-height: 1.8; border-left: 2px solid var(--secondary); padding-left: 30px; }

.thesis-section { padding: 140px 0; background: var(--primary);  }
.thesis-card { background: var(--light-bg);padding: 80px; position: relative;border: 1px solid var(--gray-light); }
.thesis-card h2 {  font-family: var(--font-heading); font-weight: 200; color: var(--light); font-size: 2.8rem; margin-bottom: 35px; letter-spacing:-0.01em; }
.thesis-card .lead-text { font-family: var(--font-body); font-size: 1.3rem;color: var(--secondary);font-weight: 400;font-style: italic;margin-bottom: 35px; line-height: 1.6; }
.thesis-card p { font-family: var(--font-body);color: var(--light);opacity: 0.7; font-size: 1.05rem; line-height: 1.9;font-weight: 300; }

.region-section { padding: 120px 0; background: var(--primary-dark);  }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.region-card {  background: var(--primary);  border: 1px solid var(--gray-light);  padding: 50px 40px; transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);  height: 100%; }
.region-card:hover { border-color: var(--secondary); transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.region-card .region-label {  font-family: var(--font-body);color: var(--secondary); font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.region-card h3 {font-family: var(--font-heading); font-weight: 300; color: var(--light);  margin-bottom: 15px; font-size: 1.75rem; }
.region-card .thesis-tag { font-family: var(--font-body);color: var(--gray);  font-weight: 600; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 25px; display: block; }
.region-card ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid #404040; padding-top: 25px; }
.region-card ul li {font-family: var(--font-body); position: relative; padding-left: 25px; margin-bottom: 15px; font-size: 0.95rem; color: var(--light);font-weight: 300;  opacity: 0.6; }
.region-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--secondary); font-weight: bold; }

.principles-section { padding: 140px 0; background:var(--primary);  color: var(--light);  }
.principles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; border: 0.5px solid var(--gray-light);  }
.principle-item { padding: 50px 30px; border-right: 0.5px solid var(--gray-light);  text-align: center; }
.principle-item:hover {   background: rgba(198, 165, 107, 0.03);}
.principle-item:last-child { border-right: none; }
.principle-item i { color: var(--secondary); font-size: 1.58rem; margin-bottom: 25px; display: block;  font-weight: 200;}
.principle-item h4 { font-family: var(--font-heading);  color: var(--secondary);font-weight: 300; margin-bottom: 15px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.principle-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.partner-section { padding: 140px 0; background: #1a1a1a; }
.partner-table { width: 100%; border-collapse: collapse; margin-top: 50px; }
.partner-table th { background: var(--light-bg);  color: var(--secondary); padding: 25px; text-align: left; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; font-weight: 800; border-bottom: 2px solid var(--secondary); }
.partner-table td { padding: 35px 25px;font-family: var(--font-body); font-weight: 300;border-bottom: 1px solid #404040; vertical-align: top; transition: 0.3s; color: var(--light); }
.partner-table tr:hover td { background: #2d2d2d; }
.partner-table td:first-child { font-family: var(--font-heading); font-weight: 300;  color: var(--light);  width: 35%;font-size: 1.3rem;  opacity: 1; }

.invest-cta { background: var(--primary-dark); padding: 140px 0; text-align: center;   border-top: 1px solid var(--gray-light);}
.invest-cta h2 { font-family: var(--font-heading);font-size: 2.8rem; font-weight: 200; color: var(--light);  margin-bottom: 30px; /*letter-spacing: -1px;*/ }
.btn-dark-invest {  font-family: var(--font-body);    background: var(--secondary); 
    color: var(--primary-dark);  padding: 18px 50px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; transition: 0.4s; display: inline-flex; align-items: center; gap: 15px; }
.btn-dark-invest:hover { background: #000; color: var(--secondary); transform: translateY(-5px); }
.confidential-note { font-size: 0.8rem; margin-top: 25px; color:var(--gray);  font-weight: 400; opacity: 0.7; text-transform: uppercase; letter-spacing: 2px; }

/* ===== REGIONS PAGE STYLES ===== */
.regions-hero {
    
     background: linear-gradient(90deg, rgba(15, 15, 16, 0.95) 0%, rgba(15, 15, 16, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?q=80&w=2070');  background-size: cover; background-position: center; padding: 200px 0 140px; 
                color: var(--light);  text-align: left; }
.regions-hero h1 { font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 200; 
    margin-bottom: 30px; 
    letter-spacing: -0.02em; 
    line-height: 1.1;  }
.regions-hero .opening-line {  font-family: var(--font-body);
    font-size: 0.75rem; 
    color: var(--secondary); 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-weight: 700; 
    margin-bottom: 20px; 
    display: block; }
.regions-hero p { max-width: 850px; margin: 0 auto; font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.8; }

.region-chapter { display: flex; align-items: stretch; min-height: 100vh; position: relative;border-bottom: 1px solid var(--gray-light); }
.region-chapter.reverse { flex-direction: row-reverse; }
.region-text-side { flex: 1; padding: 100px 8%; display: flex; flex-direction: column; justify-content: center; background: var(--primary);  }
.region-image-side { flex: 1; position: relative; overflow: hidden; background: #2d2d2d; }
.region-image-side img { width: 100%; height: 100%; object-fit: cover; }
.region-kicker { font-family: var(--font-body); color: var(--secondary); text-transform: uppercase; letter-spacing: 5px; 
                 font-size: 0.75rem; font-weight: 600; margin-bottom: 15px; display: block; }
.region-title { font-family: var(--font-heading);font-size: 3.2rem; font-weight: 200; margin-bottom: 25px; color: var(--light);}
.region-tagline {  font-family: var(--font-heading);font-style: italic;color: var(--secondary); font-weight: 300; font-size: 1.1rem; margin-bottom: 30px; display: block; }
.region-desc {  font-family: var(--font-body);font-weight: 300;font-size: 1.05rem; color: var(--light);opacity: 0.7; line-height: 1.8; margin-bottom: 30px; }
.proof-points { list-style: none; padding: 0; margin-top: 30px; border-top: 1px solid #404040; padding-top: 30px; }
.proof-points li { font-family: var(--font-body); position: relative; padding-left: 28px; margin-bottom: 15px; font-weight: 600; font-size: 0.95rem; color: var(--light);  }
.proof-points li::before { content: '→'; position: absolute; left: 0; color: var(--secondary); font-weight: bold; }

.rationale-section { padding: 140px 0; background: #2d2d2d; text-align: center; }
.rationale-section h3 { font-size: 2.5rem; font-weight: 800; color: #e8e8e8; margin-bottom: 30px; letter-spacing: -1px; }
.rationale-section p { max-width: 900px; margin: 0 auto; color: #b0b0b0; font-size: 1.25rem; line-height: 1.8; font-weight: 300; }

/* ===== CSR PAGE STYLES ===== */
.csr-hero { background: #2d2d2d; background-size: cover; background-position: center; padding: 140px 0 80px; text-align: center; position: relative; }
.csr-hero h1 { font-size: 3.2rem; font-weight: 800; color: #e8e8e8; margin-bottom: 15px; letter-spacing: -1px; }
.csr-hero p { font-size: 1.2rem; color: var(--secondary); max-width: 700px; margin: 0 auto; }

.motto-section { background: #121212; color: #e8e8e8; text-align: center; padding: 60px 0; }
.motto-section h3 { font-size: 2rem; font-weight: 700; margin-bottom: 15px; }
.motto-section p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.85); }
.motto-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; }

.initiatives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.initiative-card { background: #1a1a1a; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.3s ease; height: 100%; border: 1px solid #404040; }
.initiative-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.initiative-img { height: 220px; overflow: hidden; }
.initiative-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.initiative-card:hover .initiative-img img { transform: scale(1.05); }
.initiative-content { padding: 25px; }
.initiative-icon { font-size: 2rem; color: var(--secondary); margin-bottom: 15px; }
.initiative-content h3 { font-size: 1.3rem; font-weight: 700; color: #e8e8e8; margin-bottom: 10px; }
.initiative-content p { color: #b0b0b0; line-height: 1.6; margin-bottom: 15px; }
.initiative-stats { font-size: 0.85rem; font-weight: 700; color: var(--secondary); margin-top: 10px; }

.featured-initiative { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-top: 40px; }
.featured-content { flex: 1; }
.featured-image { flex: 1; }
.featured-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.featured-badge { display: inline-block; background: var(--secondary); color: #1a1a1a; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 5px 12px; border-radius: 30px; margin-bottom: 15px; }
.featured-title { font-size: 1.8rem; font-weight: 700; color: #e8e8e8; margin-bottom: 20px; }
.featured-description { color: #b0b0b0; line-height: 1.7; margin-bottom: 20px; }

.impact-stats { background: #121212; padding: 60px 0; color: #e8e8e8; }
.impact-stats .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.impact-stats .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--secondary); display: block; }
.impact-stats .stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; display: block; }

/* ===== MANAGEMENT PAGE STYLES ===== */
.management-hero { background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.98)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2070'); background-size: cover; background-position: center; padding: 180px 0 100px; color: #e8e8e8; }
.management-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1.5px; }
.management-hero p { max-width: 850px; font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.8; border-left: 3px solid var(--secondary); padding-left: 30px; }

.vm-section { padding: 120px 0; background: #2d2d2d; }
.vm-card { padding: 60px; background: transparent !important;  border-top: 1px solid var(--gray-light); height: 100%; }
.vm-label {font-family: var(--font-body); color: var(--secondary); text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem; font-weight: 800; margin-bottom: 20px; display: block; }
.vm-card h2 {  font-family: var(--font-heading);font-weight: 200; font-size: 2.2rem; margin-bottom: 25px; color:var(--light);  }
.vm-primary {  font-family: var(--font-body);font-size: 1.25rem; font-weight: 500; line-height: 1.6;  color: var(--light);  margin-bottom: 20px; display: block; }
.vm-supporting { font-size: 0.95rem; color: #b0b0b0; line-height: 1.7; display: block; border-top: 1px solid #404040; padding-top: 20px; }

.profile-chapter { display: flex; align-items: stretch; min-height: 100vh; border-bottom: 1px solid #404040; }
.profile-chapter.reverse { flex-direction: row-reverse; }
.profile-text-side { flex: 1.2; padding: 100px 8%; display: flex; flex-direction: column; justify-content: center; background: #1a1a1a; }
.profile-image-side { flex: 1; position: relative; overflow: hidden; /* background: #2d2d2d;*/ }
.profile-image-side img { width: 100%; height: 100%; object-fit: contain;  filter: brightness(0.9) contrast(1.05);  }
.profile-role { color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.profile-name { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 200; margin-bottom: 10px; letter-spacing: -0.02em; color: var(--light);  }
.profile-headline { font-family: var(--font-body);font-size: 0.8rem; font-weight: 600; color: var(--secondary);  margin-bottom: 35px; letter-spacing: 2px;text-transform: uppercase;}
.pull-quote { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; font-weight: 200; color:var(--light);  
              margin: 40px 0; padding-left: 30px; border-left: 2px solid var(--secondary); line-height: 1.3; }
.bio-long { font-size: 1.05rem; line-height: 1.8; color: #b0b0b0; font-weight: 300; }
.bio-long p { margin-bottom: 20px; }
.bio-excerpt { font-size: 1.05rem; line-height: 1.8; color: #e8e8e8; font-weight: 500; margin-bottom: 20px; }
.bio-full-content { font-family: var(--font-body); max-height: 0; overflow: hidden; transition: max-height 0.8s cubic-bezier(0, 1, 0, 1); font-size: 1.05rem; 
                    line-height: 1.8; color: var(--light);opacity: 0.8; font-weight: 300; }
.bio-full-content.expanded { max-height: 1200px; transition: max-height 1s ease-in-out; margin-bottom: 30px; }
.read-more-trigger { color: var(--secondary); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; border-bottom: 2px solid transparent; transition: 0.3s; }
.read-more-trigger:hover { border-bottom-color: var(--secondary); }
.read-more-trigger i { transition: transform 0.3s ease; }
.read-more-trigger.active i { transform: rotate(180deg); }
.credentials { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; }
.cred-tag {font-family: var(--font-body); font-size: 0.65rem;  background: transparent;  padding: 5px 12px; border: 1px solid  rgba(198, 165, 107, 0.3);
            text-transform: uppercase; letter-spacing: 2px; color:  var(--secondary);  }
/* ===== MANAGEMENT CTA: AUREUM REFINEMENT ===== */
.mgmt-cta {background: var(--primary-dark); padding: 140px 0; text-align: center; border-top: 1px solid var(--gray-light); }
.mgmt-cta h2 { font-family: var(--font-heading); font-size: 3rem; font-weight: 200; color: var(--light); margin-bottom: 25px; letter-spacing: -0.01em; }
.mgmt-cta p { font-family: var(--font-body); font-weight: 300;color: var(--light); opacity: 0.7; max-width: 650px; margin: 0 auto 50px; line-height: 1.8;}

/* Redesigned Button: Institutional Gold Primary */
.btn-gold-cta { 
    font-family: var(--font-body);
    background: var(--secondary); /* Champagne Gold */
    color: var(--primary-dark); 
    padding: 18px 45px; 
    text-decoration: none; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.8rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); 
    display: inline-flex; 
    align-items: center; 
    gap: 15px; 
    border: none;
}

.btn-gold-cta:hover { 
    background: var(--light); /* Switch to Ivory on hover */
    color: var(--primary-dark); 
    transform: translateY(-5px); 
    gap: 25px; /* Cinematic arrow movement */
}

.btn-gold-cta i {
    font-size: 0.9rem;
}

/* ===== NEWS PAGE STYLES ===== */
.news-hero {background: linear-gradient(90deg, rgba(15, 15, 16, 0.95) 0%, rgba(15, 15, 16, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1495020689067-958852a7765e?q=80&w=2070');  background-size: cover; background-position: center; padding: 120px 0; color: #e8e8e8; text-align: left; }
.news-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1.5px; }
.news-hero p { max-width: 700px; font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.8; border-left: 3px solid var(--secondary); padding-left: 30px; }

.filter-nav { margin-bottom: 60px; border-bottom: 1px solid #404040; padding: 0; overflow: hidden; }
.filter-container { display: flex; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; }
.filter-container::-webkit-scrollbar { display: none; }
.filter-btn {  font-family: var(--font-body);color: var(--gray); background: none; border: none;  font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; margin-right: 40px; padding-bottom: 20px; position: relative; transition: 0.3s; white-space: nowrap; }
.filter-btn.active { color: var(--secondary); }
.filter-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 3px; background: var(--secondary); }

.featured-insight { padding: 60px 0px; background: #1a1a1a; }
.featured-card { display: flex; align-items: stretch; background: #1a1a1a; border: 1px solid #404040; }
.featured-image-side { flex: 1.2; overflow: hidden; min-height: 450px; }
.featured-image-side img { width: 100%; height: 100%; object-fit: cover; transition: 1.5s ease; }
.featured-card:hover .featured-image-side img { transform: scale(1.05); }
.featured-text-side { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.insight-tag { font-family: var(--font-body); color: var(--secondary); font-weight: 800; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.featured-text-side h2 {  font-family: var(--font-heading);font-weight: 200; font-size: 2rem; line-height: 1.2; margin-bottom: 25px; color:var(--light);  }
.featured-text-side p { color: #b0b0b0; font-size: 1rem; line-height: 1.7; margin-bottom: 35px; }

.insights-section { padding: 40px 0 120px; background: #2d2d2d; }
.insight-card { border: 1px solid var(--gray-light); background: var(--primary);  transition: 0.4s; height: 100%; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.insight-card:hover { border-color: var(--secondary); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.insight-img { height: 240px; overflow: hidden; }
.insight-img img { width: 100%; height: 100%; object-fit: cover; /* filter: grayscale(100%); */ transition: 0.5s; opacity: 0.7; }
.insight-card:hover .insight-img img { /* filter: grayscale(0%); */ opacity: 1; }
.insight-content { padding: 30px; flex-grow: 1; }
.insight-date { font-family: var(--font-body);font-size: 0.7rem; font-weight: 700; color:var(--secondary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.insight-card h4 { font-family: var(--font-heading); font-weight: 300; font-size: 1.15rem; line-height: 1.4; margin-bottom: 15px; color: var(--light); }
.insight-card p { font-size: 0.85rem; color: #b0b0b0; line-height: 1.6; }

.newsletter-section { padding: 100px 0;  background: var(--primary-dark); 
    color: var(--light); 
    text-align: center; 
    border-top: 1px solid var(--gray-light);}
.newsletter-section h2 { 
    font-family: var(--font-heading); 
    font-weight: 200; 
    font-size: 3.2rem; 
    margin-bottom: 25px; 
    letter-spacing: -0.01em; 
}
.newsletter-section p { 
    font-family: var(--font-body); 
    font-weight: 300; 
    font-size: 1.1rem; 
    color: var(--light); 
    opacity: 0.7; 
    max-width: 600px; 
    margin: 0 auto 50px;
}
.newsletter-form { display: flex; gap: 10px; max-width: 650px; margin: 40px auto 0; }
.newsletter-form .form-control {  font-family: var(--font-body);font-weight: 300; background: rgba(255, 255, 255, 0.03);   border: 1px solid var(--gray-light); color: var(--light);padding: 18px 25px; }
.newsletter-form .btn-subscribe {  font-family: var(--font-body);background: var(--secondary); c color: var(--primary-dark);  font-weight: 700; text-transform: uppercase; 
                                   letter-spacing: 3px; padding: 0 50px; border: none;transition: all 0.4s ease; }
.newsletter-form .btn-subscribe:hover {
    background: var(--light);
}
/* ===== CONTACT PAGE STYLES ===== */
.contact-hero { background:  linear-gradient(90deg, rgba(15, 15, 16, 0.95) 0%, rgba(15, 15, 16, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2070');  background-size: cover; background-position: center; 
                padding: 180px 0 100px; }
.contact-hero h1 {font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 200; margin-bottom: 25px; letter-spacing:-0.02em;  color: var(--light); }
.contact-hero p { font-family: var(--font-body);max-width: 700px; font-size: 1.15rem; color: var(--light);  line-height: 1.8; opacity: 0.85;
                  border-left: 1px solid var(--secondary); padding-left: 30px; }

.inquiry-grid {  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: -60px; position: relative; z-index: 10; }
.inquiry-card { background: var(--primary); border: 1px solid var(--gray-light);  padding: 40px; 
                box-shadow: 0 20px 40px rgba(0,0,0,0.3); transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); text-decoration: none; color: inherit; display: block; height: 100%; }
.inquiry-card:hover { border-color: var(--secondary);  background: var(--light-bg);  transform: translateY(-10px); }
.inquiry-card i { color: var(--secondary); font-size: 2rem; margin-bottom: 25px; display: block; }
.inquiry-card h3 { font-family: var(--font-heading);
    font-weight: 300; font-size: 1.4rem; color:var(--light);  text-transform: none; letter-spacing: 0; margin-bottom: 15px; }
.inquiry-card p {  font-family: var(--font-body);font-size: 0.9rem; color:  var(--gray);  font-weight: 300;margin-bottom: 0; }

.form-section { padding: 100px 0; display: none; }
.form-section.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.form-wrapper {background: var(--light-bg);  max-width: 900px; margin: 0 auto;  padding: 60px;  border-top: 2px solid var(--secondary); /* Thinner hairline */
    border-left: 1px solid var(--gray-light);
    border-right: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);; }
.form-header { margin-bottom: 40px; text-align: center; }
.form-header h2 { font-family: var(--font-heading); font-weight: 200; color: var(--light); font-size: 2.2rem;margin-bottom: 10px; }
.form-group { margin-bottom: 25px; }
.form-label { font-family: var(--font-body);font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--secondary);  margin-bottom: 15px; }
.form-control, .form-select{
    background-size: 12px;background-color: var(--primary); color:var(--light); border: 1px solid var(--gray-light); color:var(--light); padding: 18px; 
    font-weight: 300; font-size: 0.95rem; width: 100%;  }
.form-select {
    
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C6A56B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-size: 12px;
}
.form-control:focus, .form-select:focus { border-color: var(--secondary); box-shadow: none; outline: none; }

.form-control::placeholder {
    color: var(--light) !important;
    opacity: 0.35 !important; /* Muted ivory white */
    font-weight: 300;
}
.form-control::-ms-input-placeholder {
    color: var(--light) !important;
    opacity: 0.35 !important;
}
.form-control:-ms-input-placeholder {
    color: var(--light) !important;
    opacity: 0.35 !important;
}
.form-control:focus::placeholder {
    opacity: 0.15 !important;
    transition: opacity 0.3s ease;
}
.btn-submit {  font-family: var(--font-body);background: var(--secondary); 
    color: var(--primary-dark);     border: none;    letter-spacing: 3px;  padding: 18px 45px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; width: 100%; }
.btn-submit:hover { background: #000; color: var(--secondary); border-color: var(--secondary); }

.location-section { padding: 100px 0; background: #1a1a1a; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.location-block { border-left: 1px solid var(--gray-light); padding-left: 40px; }
.location-block h4 { font-family: var(--font-heading); font-weight: 300;font-size: 1.5rem; color: var(--light); margin-bottom: 15px; letter-spacing: 1px; }
.location-block p { font-family: var(--font-body);    font-weight: 300;    color: var(--gray); font-size: 1rem; margin-bottom: 20px; line-height: 1.8; }
.email-link {  font-family: var(--font-body);color: var(--secondary); font-weight: 700; text-decoration: none; font-size: 0.9rem; border-bottom: 1px solid var(--secondary); padding-bottom: 3px; }

/* ===== GLOBAL PRESENCE SECTION ===== */
.curtain-bottom { position: relative; z-index: 100; background: var(--primary); box-shadow: 0 -30px 60px rgba(0,0,0,0.5); }
.global-presence-section { padding: 80px 0; background: var(--primary);  overflow: hidden; }
.presence-header { text-align: center; max-width: 900px; margin: 0 auto 80px; }
.presence-main-title { font-family: var(--font-heading);font-size: clamp(2.2rem, 5vw, 3.5rem);font-weight: 200; color: var(--light);  letter-spacing: -0.02em; margin-bottom: 30px; line-height: 1.1;}
.presence-main-title span { color: var(--secondary);font-style: italic;  }
.presence-description { font-family: var(--font-body);font-size: 1.05rem; line-height: 1.9; color: var(--light);opacity: 0.7; }
.presence-hubs { display: flex; justify-content: center; align-items: center; gap: 50px; margin-bottom: 100px; }
.hub-item { font-family: var(--font-body);font-size: 0.75rem; font-weight: 600; color: var(--light);  text-transform: uppercase; letter-spacing: 5px; position: relative; }
.hub-item:not(:last-child)::after { content: ''; position: absolute; right: -25px; top: 50%; transform: translateY(-50%); width: 0.5px; height: 20px; background: var(--secondary);  }
.map-visual-wrapper { position: relative; width: 100%; margin-top: 60px; }
.presence-map-img { width: 100%; height: auto; margin: 0 auto; display: block;  }
.map-caption-integrated { margin-top: 50px; text-align: center; }
.kld-map-title {font-family: var(--font-heading);color: var(--light); font-size: 2.2rem; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 15px; opacity:0.8; }
.regions-list { font-family: var(--font-body); color: var(--secondary); font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; }

/* ===== CSR SPECIFIC ===== */
.csr-text-col { padding: 40px 10% !important; display: flex; flex-direction: column; justify-content: center; }
.csr-title { font-size: 2.5rem; font-weight: 700; color: #e8e8e8; margin-bottom: 20px; }
.csr-text { font-size: 1rem; line-height: 1.7; color: #b0b0b0; margin-bottom: 30px; }
.csr-highlight { font-size: 1rem; font-weight: 600; color: #e8e8e8; padding-left: 25px; margin-bottom: 40px; border-left: 3px solid var(--secondary); }
.csr-sectors { display: flex; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.csr-sector { text-align: left; }
.csr-sector i { font-size: 1.8rem; color: var(--secondary); margin-bottom: 10px; display: block; }
.csr-sector span { font-weight: 700; font-size: 0.8rem; color: #e8e8e8; text-transform: uppercase; letter-spacing: 1px; }
.csr-link-btn { color: var(--secondary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: gap 0.3s ease; }
.csr-link-btn:hover { gap: 15px; color: var(--secondary-light); }

/* ===== NEWS SECTION ===== */
.news-section { padding: 60px 0; background: #2d2d2d; }
.news-card { background: #1a1a1a; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.3s ease; height: 100%; border: 1px solid #404040; }
.news-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.news-image { height: 220px; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-image img { transform: scale(1.05); }
.news-content { padding: 25px; }
.news-date { color: var(--secondary); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.news-title { font-size: 1.2rem; font-weight: 600; color: #e8e8e8; margin-bottom: 10px; line-height: 1.4; }
.news-excerpt { color: #b0b0b0; margin-bottom: 15px; font-size: 0.9rem; }
.news-link { color: var(--secondary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: all 0.3s ease; }
.news-link:hover { color: var(--secondary-light); gap: 10px; }
.news-view-all { color: #e8e8e8; font-weight: 700; text-decoration: none; font-size: 0.85rem; letter-spacing: 2px; border-bottom: 2px solid var(--secondary); padding-bottom: 5px; transition: all 0.3s ease; }
.news-view-all:hover { color: var(--secondary); padding-right: 10px; }

/* ===== CSR CAROUSEL ===== */
.custom-indicators { bottom: 40px; left: 40px; margin: 0; justify-content: flex-start; }
.custom-indicators button { width: 30px; height: 3px; background-color: #fff; opacity: 0.5; border: none; transition: all 0.3s ease; }
.custom-indicators .active { width: 60px; background-color: var(--secondary); opacity: 1; }
.carousel-item, .csr-image-wrapper { height: 700px; }
.csr-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 10s linear; }
.carousel-item.active .csr-image-wrapper img { transform: scale(1); }

/* ===== FOOTER & CTA ===== */
.footer-cta { padding: 100px 0; background: var(--primary-dark); border-top: 1px solid var(--gray-light);color:var(--light); text-align: center; position: relative; z-index: 101; }
.footer-cta h2 {  font-family: var(--font-heading); font-size: 3rem; font-weight: 200; margin-bottom: 25px; letter-spacing: -0.01em;  }
.footer-cta p { font-family: var(--font-body); color: rgba(245, 243, 238, 0.7); /* Muted Ivory */ max-width: 600px; margin: 0 auto 40px; line-height:1.8; font-weight:300; }
.btn-gold-cta { font-family: var(--font-body); background: var(--secondary); color: var(--primary-dark); 
                padding: 18px 45px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; 
                transition:all 0.4s ease; display: inline-block; }
.btn-gold-cta:hover { background: var(--light); transform: translateY(-5px); }

footer { background: #121212; color: #e8e8e8; padding: 60px 0 30px; margin-top: 0; }
.logo-container-footer { display: flex; align-items: center;text-decoration: none; }

.site-footer { background: var(--primary-dark);  padding: 100px 0 40px; border-top: 1px solid var(--gray-light); color: var(--light);  }
.footer-brand-side img { height: 50px;  }
.footer-tagline { font-family: var(--font-heading); color: var(--secondary); font-style: italic; font-weight: 300; font-size: 1.4rem; margin-bottom: 40px; margin-top:40px; display: block; }
.footer-heading {  font-family: var(--font-body);font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 25px; color: var(--light); }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {  font-family: var(--font-body);color:var(--gray);  text-decoration: none; font-size: 0.85rem; font-weight: 400; transition: 0.3s; }
.footer-nav a:hover { color: var(--secondary); padding-left: 5px; }
.footer-legal-wrap { margin-top: 80px; padding-top: 40px; border-top: 1px solid #404040; }

.legal-text {  font-family: var(--font-body);font-size: 0.7rem;font-weight:300; opacity:0.6; line-height: 2; color:var(--gray);  text-align: justify; max-width: 1000px; margin: 0 auto 30px; }
.copyright-text {  font-family: var(--font-body);font-size: 0.7rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; }

.footer { background: #121212; color: #e8e8e8; padding: 60px 0 30px; }
.footer h5 { color: var(--secondary); font-size: 1rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--secondary); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 30px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== RESPONSIVE MEDIA QUERIES ===== */

@media (max-width: 991px) {
     /* Prevent horizontal overflow */
    html, body { overflow-x: hidden; position: relative; }

     .nav-link {
        padding: 12px 20px !important; 
        /*border-bottom: 1px solid #f0f0f0;*/
    }
    .nav-link::before {
        display: none !important; 
    }
    .navbar-collapse {
        background:var(--primary-dark);
        border-top: 1px solid var(--gray-light);
        margin-top: 10px;
        padding: 20px;
        max-height: calc(100vh - 80px); /* Subtract header height */
        overflow-y: auto !important;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iPhones */
    }
    
    .about-left-column, 
    .business-left-column {
        display: none !important;
    }
    
    .mega-menu-about, 
    .mega-menu-business {
        padding: 20px !important;
    }

    /* Style for locking the background scroll */
    body.body-scroll-lock {
        overflow: hidden !important;
        height: 100vh !important;
       
       /* width: 100%; */
    }
    
    /* Reset large paddings that push content off-screen */
    .hero-content, .csr-text-col, .legacy-text-side, .about-left-column {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Ensure all images and videos are contained */
    .hero-video-wrapper, .hero-section, .reveal-parent {
        width: 100vw !important;
        left: 0 !important;
    }
     /* Allow the dropdown to be visible in mobile */
    .mega-dropdown .dropdown-menu {
        display: none; 
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 10px 0 !important;
    }
    .mega-dropdown.show .dropdown-menu {
        display: block !important;
    }
    
    .mega-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        visibility: visible !important;
        transform:none !important;
        display: none;
        padding: 0 !important;
        width:100% !important;
    }
    .mega-menu.show {
        display: block !important;
    }
    .about-menu-grid, .business-menu-grid-container {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
        gap: 20px !important;
    }
    .about-right-columns {
        grid-template-columns: 1fr !important;         
    }
     /* Fix AOS invisibility in hidden menus */
    .mega-menu [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .about-right-columns { grid-template-columns: repeat(2, 1fr); }
    .business-menu-grid-container { grid-template-columns: 1fr; }
    .business-right-grid { grid-template-columns: repeat(2, 1fr); }
    .about-right-grid { grid-template-columns: repeat(3, 1fr); }
    
    /* Redesign Chairman Section */
    .legacy-section-new {
        padding: 60px 0 !important;
    }
    .legacy-container-new {
        gap: 30px !important;
    }
    .legacy-text-side p {
        text-align: justify !important; /* As requested */
    }
    .legacy-image-side img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .institutional-stats-bar { flex-wrap: wrap; border: none; }
    .stat-item { flex: 0 0 50%; 
                 margin-bottom: 50px; border-bottom: 1px solid rgba(10, 42, 68, 0.05); padding-bottom: 20px; }
    .stat-item:not(:last-child)::after { display: none; }
    /* Redesign About Us Stats Grid */
    .stat-grid {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 40px 0 !important;
    }
    .stat-item {
        border-right: none !important;
    }
    .stat-item:last-child { border-bottom: none; }
    
    .narrative-chapter, .narrative-chapter:nth-child(even) { flex-direction: column; gap: 40px; }
    .chapter-image { height: 350px; width: 100%; }
    .timeline-container::before { left: 30px; }
    .timeline-dot { left: 30px; transform: translateX(0); }
    .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-horizontal-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-box { margin-bottom: 40px; border-bottom: 1px solid var(--gray-light); padding-bottom: 40px; }
    .chairman-grid { flex-direction: column; text-align: center; }
    .chairman-quote { text-align: left; }
    .page-hero h1 { font-size: 2.5rem; }
    
    .region-grid, .initiatives-grid, .stats-grid, .inquiry-grid, .location-grid { grid-template-columns: 1fr; }
    .principles-grid { grid-template-columns: 1fr; }
    .featured-card { flex-direction: column; }
    .featured-text-side { padding: 40px 25px; }
    .filter-btn { margin-right: 20px; font-size: 0.65rem; }
    .vertical-chapter, .vertical-chapter.reverse, .region-chapter, .region-chapter.reverse, .profile-chapter, .profile-chapter.reverse { flex-direction: column; }
    .vertical-image-side, .region-image-side, .profile-image-side { height: 400px; }
    .vertical-text-side, .region-text-side, .profile-text-side { padding: 80px 20px; }
    .vertical-title, .region-title, .profile-name { font-size: 2.2rem; }
    .presence-hubs { flex-direction: column; gap: 20px; }
    .hub-item::after { display: none; }
    .presence-main-title { font-size: 2rem; }
    .stats-title { font-size: 2rem; }
    
     .reveal-parent {
        height: auto !important; 
        margin-top: 0 !important;
        z-index: 5 !important;
    }

    .sticky-grid-container {
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
        padding-top: 40px !important;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr !important; 
        transform: none !important; 
        padding: 0 20px 40px !important;
    }

    .wwd-card, .wwd-card.tall {
        height: 300px !important; 
        grid-row: auto !important;
    }
}
@media (max-width: 768px) {
    .about-right-columns { grid-template-columns: 1fr; }
    .business-right-grid { grid-template-columns: 1fr; }
    
    .hero-container, .container { padding: 0 15px; }
    .team-grid { grid-template-columns: 1fr; }
    .values-horizontal-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 1.8rem; }
    .chapter-content .chapter-number { font-size: 5rem; top: -20px; left: -10px; }
    
    .page-hero p, .hero-content .hero-intro, .invest-hero p, .management-hero p, .contact-hero p, .news-hero p { font-size: 0.95rem; padding-left: 20px; }
    .page-hero h1, .invest-hero h1, .management-hero h1, .contact-hero h1 { font-size: 2.2rem; letter-spacing: -0.01em; }
    
    .stats-grid { gap: 20px; }
    .csr-sectors { gap: 20px; justify-content: center; }
    .csr-text-col { padding: 30px 20px; }
    .hero-content { padding-left: 5%; }
    .hero-content h1 { font-size: 1.8rem; }
    .presence-badges { gap: 15px; }
    .presence-badge { padding: 6px 18px; font-size: 0.9rem; }
    .stat-item { flex: 0 0 100%; }
    .stat-item::after { display: none; }
    .kld-map-title { font-size: 1.5rem; }
    .featured-text-side h2 { font-size: 1.5rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form .btn-subscribe { padding: 12px 20px; }
    .form-wrapper { padding: 30px; }
    .thesis-card { padding: 25px; }
    .region-card, .inquiry-card { padding: 30px; }
    .vm-card { padding: 30px; }
    .featured-image-side { min-height: 300px; }
    .what-we-do-grid {
        grid-template-columns: 1fr !important; 
        padding: 0 20px !important;
        overflow:none;
    }
    .wwd-card, .wwd-card.tall {
        height: 350px !important; 
        grid-row: auto !important;
        grid-column: auto !important;
    }
    .wwd-overlay h4 {
        font-size: 1.1rem !important;
    }
    .stat-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        padding: 30px 0 !important;
    }
    
    .stat-item {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-item::after {
        display: none !important; 
    }
    
}
