@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;700;800;900&display=swap');

/* =========================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================= */
:root {
    /* Brand Colors */
    --primary-navy: #0A192F;
    --primary-light: #112240;
    --primary-mid: #0D2137;
    --secondary-orange: #DA291C;
    --secondary-orange-light: #ff5b4c;
    --secondary-red-dark: #B71C1C;
    --accent-gold: #C9A84C;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-orange) 0%, var(--secondary-red-dark) 100%);
    --gradient-hero: linear-gradient(90deg, rgba(10,25,47,0.97) 0%, rgba(10,25,47,0.88) 45%, rgba(10,25,47,0.3) 100%);
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(218,41,28,0.35);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1400px;
    --nav-height: 90px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center { text-align: center; }
.py-16 { padding: 4rem 0; }
.py-24 { padding: 6rem 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.section-tag {
    color: var(--secondary-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.4s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(218,41,28,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(218,41,28,0.45);
    color: var(--white);
}

.btn-outline-white {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-navy);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Legacy btn-outline compatibility */
.btn-outline {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    padding: 0 1rem;
}

/* This block guarantees perfect centering of the menus + logo */
.nav-center-block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    gap: 3rem; /* Space between left nav, logo, right nav */
}

.nav-left, .nav-right {
    display: flex;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.logo-wrapper {
    flex: 0 0 160px;
    height: 100%;
    position: relative;
    z-index: 10;
}

.logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12), inset 0 0 0 5px rgba(255,255,255,0.5), 0 0 0 2px rgba(218,41,28,0.1);
    text-align: center;
    transition: all var(--transition-base);
}

.logo img {
    height: 120px;
    object-fit: contain;
    transition: var(--transition-base);
}

.site-header.scrolled .logo {
    width: 120px;
    height: 120px;
    top: 5px;
}

.site-header.scrolled .logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    margin: 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-orange);
}

.mobile-nav { display: none; }
.desktop-only { display: flex; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
    z-index: 20;
    transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
    border-color: var(--secondary-orange);
    color: var(--secondary-orange);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 80vh;
    padding-top: var(--nav-height);
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--secondary-orange);
    animation: floatParticle 8s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { width: 300px; height: 300px; bottom: -50px; right: -50px; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 150px; height: 150px; bottom: 40%; right: 15%; animation-delay: 2s; opacity: 0.05; }
.hero-particles span:nth-child(3) { width: 80px; height: 80px; top: 20%; right: 20%; animation-delay: 4s; opacity: 0.06; }
.hero-particles span:nth-child(4) { width: 200px; height: 200px; top: -80px; right: 30%; animation-delay: 1s; opacity: 0.04; }
.hero-particles span:nth-child(5) { width: 60px; height: 60px; top: 60%; right: 40%; animation-delay: 3s; opacity: 0.07; }

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -30px) scale(1.1); }
    66% { transform: translate(15px, -15px) scale(0.95); }
}

/* Hero Container Layout */
.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-content {
    max-width: 680px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(218,41,28,0.12);
    border: 1px solid rgba(218,41,28,0.25);
    backdrop-filter: blur(10px);
    color: #ff8a80;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b5b;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-accent {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, #ff8a66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scroll-line {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-orange);
    animation: slideLine 2s ease-in-out infinite;
}

@keyframes slideLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Right Panel */
.hero-right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-stats-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-stat {
    padding: 1.25rem 0;
}

.hero-stat-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-plus {
    color: var(--secondary-orange);
    font-size: 1.5rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tagline-card {
    background: var(--gradient-accent);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(218,41,28,0.3);
}

.tagline-icon { font-size: 2rem; }

.hero-tagline-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.hero-tagline-card strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
}

/* Hero Slide Dots */
.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-dot.active {
    background: var(--secondary-orange);
    transform: scale(1.3);
    width: 28px;
    border-radius: 5px;
}

/* Hero Animations */
.animate-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 1s; }

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   TICKER BAR
   ========================================= */
.ticker-bar {
    background: var(--primary-navy);
    padding: 0.9rem 0;
    overflow: hidden;
    border-top: 3px solid var(--secondary-orange);
    position: relative;
    z-index: 5;
}

.ticker-inner {
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: tickerScroll 35s linear infinite;
}

.ticker-track span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-section {
    padding: 8rem 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218,41,28,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.why-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.why-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

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

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0,0,0,0.04);
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(218,41,28,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-orange);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.why-card:hover .why-card-icon {
    background: var(--gradient-accent);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.why-card-num {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    transition: color var(--transition-base);
}

.why-card:hover .why-card-num {
    color: rgba(218,41,28,0.08);
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.why-card-line {
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin-top: 1.5rem;
}

.why-card-cta {
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-card-cta::before { background: rgba(255,255,255,0.1); }
.why-card-cta:hover { transform: translateY(-10px); }

.why-cta-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.why-cta-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

/* =========================================
   STATS COUNTER SECTION
   ========================================= */
.stats-section {
    padding: 5rem 0;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
}

.stat-block {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.12);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-value .counter {
    font-family: inherit;
    font-weight: 900;
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.25rem;
}

.stat-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* About Images - Stacked Layout */
.about-images {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 78%;
    height: 78%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-overlay:hover img { transform: scale(1.05); }

.about-img-badge {
    position: absolute;
    left: -20px;
    bottom: 20%;
    background: var(--gradient-accent);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(218,41,28,0.4);
    z-index: 10;
}

.badge-inner { text-align: center; }

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* About Content */
.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-intro {
    background: var(--gray-50);
    border-left: 4px solid var(--secondary-orange);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0;
}

.about-body {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.highlight-icon {
    width: 22px;
    height: 22px;
    background: rgba(218,41,28,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-orange);
    flex-shrink: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-orange);
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap var(--transition-fast);
}

.about-link:hover { gap: 0.75rem; color: var(--secondary-red-dark); }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 8rem 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(218,41,28,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.service-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-item-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-item:hover .service-item-img img {
    transform: scale(1.1);
}

.service-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10,25,47,0.9));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-item:hover .service-item-overlay {
    opacity: 1;
}

.service-item-link {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(218,41,28,0.9);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.service-item-link:hover { background: var(--secondary-orange); }

.service-item-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-item-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-item-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-item-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.25rem;
    flex: 1;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 0.3rem 0;
    padding-left: 1.1rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: 700;
}

.service-item-cta {
    color: var(--secondary-orange);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    transition: gap var(--transition-fast);
}

.service-item-cta:hover { gap: 0.6rem; }

.service-item-cta span {
    transition: transform var(--transition-fast);
}

.service-item-cta:hover span { transform: translateX(4px); }

.services-footer {
    text-align: center;
}

/* =========================================
   MISSION & VISION SECTION
   ========================================= */
.mission-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.mission-header {
    text-align: center;
    margin-bottom: 5rem;
}

.mission-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.mission-card {
    background: var(--primary-navy);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mission-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(218,41,28,0.08);
    border-radius: 50%;
}

.mission-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.mission-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-orange);
    margin-bottom: 0.75rem;
    display: block;
    position: relative;
    z-index: 1;
}

.mission-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.mission-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.mission-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

/* Values card */
.mission-values {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.mission-values:hover {
    border-color: rgba(218,41,28,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.mission-values h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-navy);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.value-item:last-child { border-bottom: none; }

.value-item:hover { color: var(--secondary-orange); padding-left: 0.5rem; }

.value-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-accent);
    flex-shrink: 0;
}

/* =========================================
   CHAIRMAN MESSAGE SECTION
   ========================================= */
.chairman-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.chairman-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.chairman-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,25,47,0.96) 0%, rgba(10,25,47,0.90) 100%);
}

.chairman-section .container {
    position: relative;
    z-index: 2;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: center;
}

.chairman-img-wrap { text-align: center; }

.chairman-img-frame {
    width: 280px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid rgba(218,41,28,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 10px rgba(218,41,28,0.08);
    transition: all var(--transition-base);
}

.chairman-img-frame:hover { transform: scale(1.02); }

.chairman-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.chairman-name-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: inline-block;
}

.chairman-name-card strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.chairman-name-card span {
    font-size: 0.8rem;
    color: var(--secondary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Chairman Message Content */
.chairman-message h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.chairman-quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--secondary-orange);
    opacity: 0.4;
    line-height: 0.5;
    margin-bottom: 1rem;
}

blockquote {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-orange);
    padding-left: 1.5rem;
}

.chairman-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.chairman-sig {
    margin-top: 2rem;
}

.sig-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.sig-title {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =========================================
   FLEET GALLERY STRIP
   ========================================= */
.gallery-strip {
    padding: 5rem 0 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-strip-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.gallery-strip-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.gallery-track {
    overflow: hidden;
}

.gallery-slides {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: galleryScroll 30s linear infinite;
}

.gallery-slides:hover {
    animation-play-state: paused;
}

.gallery-slide {
    width: 320px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-slide:hover img { transform: scale(1.08); }
.gallery-slide:hover { transform: translateY(-5px); }

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   CLIENTS / CONTRACT EXPERIENCE SECTION
   ========================================= */
.clients-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.clients-header {
    text-align: center;
    margin-bottom: 5rem;
}

.clients-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.clients-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.client-card {
    flex: 0 0 calc(25% - 1.125rem);
    max-width: calc(25% - 1.125rem);
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.client-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-orange);
    box-shadow: var(--shadow-lg);
}

.client-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.client-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-bottom: 0.25rem;
}

.client-logo-wrap img {
    max-width: 120px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
    filter: grayscale(30%);
}

.client-card:hover .client-logo-wrap img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.client-logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(218,41,28,0.06);
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--secondary-orange);
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.client-card:hover .client-logo-text {
    background: var(--secondary-orange);
    color: var(--white);
    transform: scale(1.08);
}

.client-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-navy);
    transition: color var(--transition-base);
    line-height: 1.3;
}

.client-website {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    transition: color var(--transition-base);
}

.client-website svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.client-card-link {
    cursor: pointer;
}

.client-card-link:hover .client-website {
    color: var(--secondary-orange);
}

.client-card-link:hover .client-website svg {
    transform: translate(2px, -2px);
}

.client-card-link:hover h4 {
    color: var(--secondary-orange);
}

.clients-footer { text-align: center; }

/* Download Profile Button (outline dark) */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-outline-dark:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   QHSE SECTION
   ========================================= */
.qhse-section {
    padding: 8rem 0;
    background: var(--white);
}

.qhse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.qhse-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.qhse-content > p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.qhse-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.qhse-pillar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-50);
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.qhse-pillar:hover {
    border-color: rgba(218,41,28,0.2);
    background: rgba(218,41,28,0.04);
    color: var(--secondary-orange);
    transform: translateX(4px);
}

.qhse-pillar-icon { font-size: 1.3rem; }

/* QHSE Image */
.qhse-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.qhse-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.qhse-image:hover img { transform: scale(1.04); }

.qhse-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-navy);
    color: var(--white);
    border: 2px solid rgba(218,41,28,0.4);
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.qhse-badge svg { color: var(--secondary-orange); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,25,47,0.95) 0%, rgba(183,28,28,0.85) 100%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 660px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-contact-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.cta-contact-item svg { color: var(--secondary-orange); flex-shrink: 0; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray-400);
    margin-top: 1rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 0.4rem;
}

.footer-links li {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* =========================================
   PAGE HEADER (for inner pages)
   ========================================= */
.page-header {
    background: var(--primary-navy);
    padding: 14rem 0 5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pic.jpg') center/cover;
    opacity: 0.15;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: var(--secondary-orange);
    font-weight: 600;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   LEGACY CLASS SUPPORT
   ========================================= */
.hero-bg { display: none; } /* replaced by .hero-slides */
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: -5rem; position: relative; z-index: 10; }
.feature-card { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: 1rem; padding: 2.5rem; box-shadow: var(--shadow-lg); border-bottom: 4px solid var(--secondary-orange); transition: transform var(--transition-base); }
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-image { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { transition: transform var(--transition-slow); }
.about-image:hover img { transform: scale(1.05); }
.about-content h2 { font-size: 2.5rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.stat-item { background: var(--white); padding: 1.5rem; border-radius: 0.5rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--secondary-orange); }
.stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary-navy); display: block; }
.service-card { background: var(--white); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-md); transition: all var(--transition-base); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-img { height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-content { padding: 2rem; }
.service-link { color: var(--secondary-orange); font-weight: 600; margin-top: 1rem; display: inline-flex; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; font-weight: 800; }

/* Tables */
.table-responsive { overflow-x: auto; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow-md); }
.contract-table { width: 100%; border-collapse: collapse; }
.contract-table th, .contract-table td { padding: 1.5rem; text-align: left; border-bottom: 1px solid var(--gray-200); }
.contract-table th { background: var(--primary-light); color: var(--white); font-family: var(--font-heading); font-weight: 600; }
.contract-table tr:hover { background: var(--gray-50); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.contact-info-card { background: var(--primary-navy); color: var(--white); padding: 3rem; border-radius: 1rem; box-shadow: var(--shadow-lg); }
.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { color: var(--secondary-orange); font-size: 1.5rem; margin-right: 1rem; }
.contact-form { background: var(--white); padding: 3rem; border-radius: 1rem; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-control { width: 100%; padding: 1rem; border: 1px solid var(--gray-200); border-radius: 0.5rem; font-family: var(--font-body); font-size: 1rem; transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.form-control:focus { outline: none; border-color: var(--secondary-orange); box-shadow: 0 0 0 3px rgba(218,41,28,0.1); }

/* Team */
.team-card { text-align: center; background: var(--white); padding: 2rem; border-radius: 1rem; box-shadow: var(--shadow-md); transition: transform var(--transition-base); }
.team-card:hover { transform: translateY(-5px); }
.team-img { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 1.5rem; overflow: hidden; border: 4px solid var(--gray-100); }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-role { color: var(--secondary-orange); font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: 1fr 1fr; }
    .mission-values { grid-column: span 2; }
    .client-card { flex: 0 0 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); }
    .chairman-grid { grid-template-columns: 320px 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 4rem; }
    .qhse-grid { gap: 4rem; }
}

@media (max-width: 992px) {
    :root { --nav-height: 70px; }

    .desktop-only { display: none !important; }
    .mobile-menu-btn { display: block; }
    .mobile-nav { display: block; }

    .logo-wrapper { flex: 0 0 100px; }
    .logo { width: 100px; height: 100px; top: 10px; }
    .logo img { height: 70px; }

    .site-header.scrolled .logo { width: 80px; height: 80px; top: 5px; }
    .site-header.scrolled .logo img { height: 55px; }

    .mobile-nav .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        text-align: center;
        z-index: 999;
        gap: 1.25rem;
    }

    .mobile-nav .nav-links.show { display: flex; }

    .hero .container { flex-direction: column; padding-top: 2rem; }
    .hero-right { flex: none; width: 100%; max-width: 500px; }
    .hero-stats-card { flex-direction: row; }
    .hero-stat-divider { width: 1px; height: auto; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { height: 350px; }

    .chairman-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .chairman-img-frame { width: 220px; height: 280px; }
    blockquote { border-left: none; padding-left: 0; border-top: 4px solid var(--secondary-orange); padding-top: 1rem; }

    .qhse-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { gap: 1rem; }
    .stat-divider { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .mission-values { grid-column: auto; }
    .client-card { flex: 0 0 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); }
    .footer-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .cta-contact-strip { flex-direction: column; gap: 1rem; }
    .stats-row { flex-direction: column; gap: 2rem; }
    .hero-stats-card { flex-direction: column; }
    .hero-stat-divider { width: 100%; height: 1px; }
    .qhse-pillars { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .gallery-slide { width: 250px; height: 170px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .btn { padding: 0.8rem 1.75rem; font-size: 0.95rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
    .about-img-badge { left: 0; }
    .chairman-img-frame { width: 180px; height: 230px; }
}

/* =========================================
   HEADER — HAMBURGER & DROPDOWN (CLEAN)
   ========================================= */

/* ---- Hamburger button ---- */
.hline {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.5rem 0.55rem;
    cursor: pointer;
    z-index: 20;
    transition: border-color 0.2s ease;
}

.mobile-menu-btn:hover { border-color: var(--secondary-orange); }
.mobile-menu-btn:hover .hline { background: var(--secondary-orange); }

/* Animate to X when open */
.mobile-menu-btn.is-open .hline:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.is-open .hline:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.is-open .hline:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Get Quote Button ---- */
.get-quote-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    background: #c31d28; /* Deep red matching the image */
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.35rem 0.35rem 0.35rem 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 29, 40, 0.3);
}

.get-quote-btn:hover {
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 8px 20px rgba(195, 29, 40, 0.45);
    background: #a81720;
    color: var(--white) !important;
}

.gqb-text {
    margin-right: 1.25rem;
    letter-spacing: 0.5px;
}

.gqb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.get-quote-btn:hover .gqb-icon {
    background: rgba(255, 255, 255, 0.35);
}

/* mobile quote btn */
.mobile-quote-btn {
    display: block;
    text-align: center;
    background: #c31d28;
    color: var(--white) !important;
    margin: 1rem 0;
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(195, 29, 40, 0.3);
}

/* ---- About Us dropdown ---- */
.has-dropdown {
    position: relative;
}

/* The arrow chevron */
.caret {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    vertical-align: middle;
    margin-left: 2px;
}

.has-dropdown:hover .caret {
    transform: rotate(180deg);
}

/* Invisible bridge fills the gap between trigger and dropdown
   so the mouse doesn't "exit" the hover zone while crossing it */
.dropdown-bridge {
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 18px; /* must match the gap between trigger bottom and dropdown top */
    background: transparent;
    display: none;
}

.has-dropdown:hover .dropdown-bridge {
    display: block;
}

/* Dropdown panel */
.simple-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.06);
    padding: 0.5rem 0;
    list-style: none;
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 500;
}

/* Small triangle pointer */
.simple-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--white);
}

/* Show on parent hover */
.has-dropdown:hover .simple-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown links — simple, clean, names only */
.simple-dropdown li a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-800);
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
    border-radius: 6px;
    margin: 0 0.35rem;
}

.simple-dropdown li a:hover {
    background: var(--gray-50);
    color: var(--secondary-orange);
    padding-left: 1.5rem;
}

.simple-dropdown li a.active {
    color: var(--secondary-orange);
    font-weight: 600;
    background: rgba(218,41,28,0.05);
}

/* Thin separator after first item */
.simple-dropdown li:first-child {
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 0.35rem;
    margin-bottom: 0.35rem;
}

/* ---- Mobile nav drawer ---- */
.mobile-nav {
    display: none;
}

.mobile-nav-list {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    list-style: none;
    padding: 1rem 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 0;
}

.mobile-nav-list.show {
    display: flex;
}

.mobile-nav-list li a {
    display: block;
    padding: 0.8rem 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-list li:last-child a { border-bottom: none; }

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: var(--secondary-orange);
    padding-left: 0.75rem;
}

/* Sub-items (Chairman, Team) — slightly indented */
.mobile-nav-list li a.mobile-sub {
    padding-left: 1.25rem;
    font-size: 0.92rem;
    color: var(--gray-600);
    border-bottom-style: dashed;
}

.mobile-nav-list li a.mobile-sub:hover { color: var(--secondary-orange); }

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-page-section {
    padding: 6rem 0 8rem;
    background: var(--gray-50);
}

.gallery-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-page-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.gallery-page-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Filter tabs */
.gallery-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gf-btn {
    padding: 0.55rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.25s ease;
}

.gf-btn:hover {
    border-color: var(--secondary-orange);
    color: var(--secondary-orange);
}

.gf-btn.active {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(218,41,28,0.3);
}

/* Masonry grid */
.gallery-masonry {
    columns: 4 280px;
    column-gap: 1.25rem;
}

.gm-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gm-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.gm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gm-item:hover img { transform: scale(1.07); }

.gm-item.gm-tall img { min-height: 320px; }
.gm-item.gm-wide { column-span: none; }

.gm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,25,47,0.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gm-item:hover .gm-overlay { opacity: 1; }

.gm-label {
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lb-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
    position: relative;
}

.lb-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lb-caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lb-close, .lb-prev, .lb-next {
    position: fixed;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    line-height: 1;
}

.lb-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
}

.lb-prev, .lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 2rem;
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: rgba(218,41,28,0.7);
}

/* =========================================
   INNER PAGE – CTA BAR
   ========================================= */
.inner-cta {
    padding: 4rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.inner-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.inner-cta-grid h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.inner-cta-grid p { color: var(--gray-600); }

.inner-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-dark:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   CHAIRMAN PROFILE PAGE
   ========================================= */
.chairman-profile-section {
    padding: 6rem 0;
    background: var(--white);
}

.chairman-profile-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: start;
}

.cp-portrait-wrap { position: sticky; top: calc(var(--nav-height) + 2rem); }

.cp-portrait-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(218,41,28,0.15);
    margin-bottom: 1.5rem;
}

.cp-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.cp-portrait-frame:hover img { transform: scale(1.04); }

.cp-name-badge {
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.cp-name-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.cp-name-badge span {
    font-size: 0.8rem;
    color: var(--secondary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-contact-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-200);
}

.cp-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

.cp-contact-item:last-child { border-bottom: none; }
.cp-contact-icon { font-size: 1.1rem; }

.cp-bio h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

.cp-bio > p {
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.cp-quote {
    background: var(--gray-50);
    border-left: 5px solid var(--secondary-orange);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.cp-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--secondary-orange);
    opacity: 0.25;
    line-height: 0.4;
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
}

.cp-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    border: none;
    padding: 0;
    padding-left: 2rem;
    margin: 0;
}

.cp-highlights { margin-top: 3rem; }
.cp-highlights h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 1.5rem; }

.cp-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cp-highlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cp-highlight-card:hover {
    border-color: rgba(218,41,28,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cp-h-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.cp-highlight-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.5rem; }
.cp-highlight-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

.cp-message-section { padding: 7rem 0; position: relative; overflow: hidden; }
.cp-message-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cp-message-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,25,47,0.97) 0%, rgba(10,25,47,0.91) 100%); }
.cp-message-section .container { position: relative; z-index: 2; }

.cp-message-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cp-message-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 2.5rem; }
.cp-full-message p { font-size: 1.05rem; color: rgba(255,255,255,0.78); line-height: 1.9; margin-bottom: 1.25rem; text-align: left; }
.cp-message-sig { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.cp-sig-name { display: block; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.cp-sig-title { font-size: 0.85rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; }

/* =========================================
   MANAGEMENT TEAM PAGE
   ========================================= */
.team-intro-section { padding: 5rem 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }

.team-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-intro-grid h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.team-intro-grid > div > p { color: var(--gray-600); line-height: 1.8; }

.team-intro-values { display: flex; flex-direction: column; gap: 0.75rem; }

.tiv-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.tiv-item:hover { border-color: rgba(218,41,28,0.25); color: var(--secondary-orange); }

.tiv-dot { width: 10px; height: 10px; background: var(--gradient-accent); border-radius: 50%; flex-shrink: 0; }

.team-chairman-feature { padding: 5rem 0; background: var(--white); }

.tcf-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--primary-navy);
    border-radius: 28px;
    padding: 3rem;
    overflow: hidden;
    position: relative;
}

.tcf-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: rgba(218,41,28,0.1); border-radius: 50%; }
.tcf-card::after { content: ''; position: absolute; bottom: -60px; left: 200px; width: 180px; height: 180px; background: rgba(218,41,28,0.06); border-radius: 50%; }

.tcf-portrait { width: 280px; height: 340px; border-radius: 20px; overflow: hidden; border: 4px solid rgba(218,41,28,0.35); box-shadow: 0 15px 40px rgba(0,0,0,0.3); flex-shrink: 0; position: relative; z-index: 1; }
.tcf-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s ease; }
.tcf-portrait:hover img { transform: scale(1.05); }

.tcf-content { position: relative; z-index: 1; }

.tcf-role-badge {
    display: inline-block;
    background: rgba(218,41,28,0.2);
    color: #ff8a80;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(218,41,28,0.25);
}

.tcf-content h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 1.25rem; }
.tcf-content p { color: rgba(255,255,255,0.72); line-height: 1.8; font-size: 0.95rem; margin-bottom: 2rem; }

.team-grid-section { padding: 7rem 0; background: var(--gray-50); }
.team-grid-section .section-title p { font-size: 1.05rem; color: var(--gray-600); max-width: 620px; margin: 0 auto; line-height: 1.75; }

.team-members-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }

.team-member-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.35s ease; border: 1px solid rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.team-member-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }

.tmc-img-wrap { height: 320px; overflow: hidden; position: relative; }
.tmc-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.6s ease; }
.team-member-card:hover .tmc-img-wrap img { transform: scale(1.06); }

.tmc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,47,0.85) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 1.25rem; }

.tmc-role-tag { background: var(--gradient-accent); color: var(--white); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 0.3rem 0.9rem; border-radius: 50px; }

.tmc-content { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.tmc-role { font-size: 0.78rem; font-weight: 700; color: var(--secondary-orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.tmc-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.75rem; line-height: 1.35; }
.tmc-content p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }

.tmc-contact { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); margin-top: auto; }

.tmc-contact-link { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--gray-600); font-weight: 500; transition: color 0.2s ease; word-break: break-all; }
.tmc-contact-link:hover { color: var(--secondary-orange); }
.tmc-contact-link svg { color: var(--secondary-orange); flex-shrink: 0; }

.team-support-roles { background: var(--white); border-radius: 20px; padding: 3rem; border: 1px solid var(--gray-200); }
.team-support-roles > h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 2rem; text-align: center; }

.support-roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.support-role-card { text-align: center; padding: 2rem 1.5rem; border-radius: 16px; background: var(--gray-50); border: 1px solid var(--gray-200); transition: all 0.3s ease; }
.support-role-card:hover { border-color: rgba(218,41,28,0.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.src-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.support-role-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary-navy); }
.support-role-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

.team-commitment-section { padding: 6rem 0; background: var(--white); }

.tc-card { background: var(--primary-navy); border-radius: 28px; padding: 4rem; text-align: center; position: relative; overflow: hidden; }
.tc-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; background: rgba(218,41,28,0.07); border-radius: 50%; }
.tc-card h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.tc-card > p { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.8; max-width: 740px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.tc-pillars { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; position: relative; z-index: 1; }
.tc-pillar { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .mobile-menu-btn { display: flex; }
    .mobile-nav { display: block; }
    .desktop-only { display: none !important; }

    /* Move logo to top right corner on mobile with circular background */
    .nav-center-block {
        position: static;
        transform: none;
        width: auto;
    }
    .logo-wrapper {
        position: absolute;
        right: 1rem;
        top: 0;
        height: 100%;
        width: 90px;
        flex: none;
        z-index: 50;
    }
    .logo {
        position: absolute;
        top: 10px;
        left: auto;
        right: 0;
        transform: none;
        width: 90px;
        height: 90px;
        background: var(--white);
        border-radius: 50%;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12), inset 0 0 0 3px rgba(255,255,255,0.7), 0 0 0 1px rgba(218,41,28,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo img {
        height: 55px;
    }
}

@media (max-width: 1100px) {
    .chairman-profile-grid { grid-template-columns: 300px 1fr; gap: 3rem; }
    .cp-portrait-wrap { position: static; }
    .tcf-card { grid-template-columns: 220px 1fr; gap: 2.5rem; }
    .tcf-portrait { width: 220px; height: 270px; }
    .team-members-grid { grid-template-columns: repeat(2, 1fr); }
    .support-roles-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 3 220px; }
}

@media (max-width: 768px) {
    .chairman-profile-grid { grid-template-columns: 1fr; }
    .cp-portrait-frame { max-width: 280px; margin: 0 auto; }
    .cp-highlights-grid { grid-template-columns: 1fr; }
    .team-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tcf-card { grid-template-columns: 1fr; text-align: center; }
    .tcf-portrait { width: 200px; height: 250px; margin: 0 auto; }
    .team-members-grid { grid-template-columns: 1fr; }
    .support-roles-grid { grid-template-columns: 1fr; }
    .inner-cta-grid { flex-direction: column; text-align: center; }
    .inner-cta-actions { justify-content: center; }
    .tc-card { padding: 2.5rem 1.5rem; }
    .cp-quote blockquote { padding-left: 0.5rem; }
    .gallery-masonry { columns: 2 180px; }
    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
}

@media (max-width: 480px) {
    .gallery-masonry { columns: 1; }
}

    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    cursor: pointer;
    z-index: 20;
    transition: border-color var(--transition-fast);
}

.mobile-menu-btn:hover { border-color: var(--secondary-orange); }
.mobile-menu-btn:hover .hamburger-line { background: var(--secondary-orange); }

.mobile-menu-btn.is-open .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-btn.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.is-open .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Contact Us – pill button in nav */
.nav-contact-btn {
    background: var(--gradient-accent);
    color: var(--white) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.9rem;
    transition: all var(--transition-base) !important;
    box-shadow: 0 4px 15px rgba(218,41,28,0.25);
}

.nav-contact-btn::after { display: none !important; }

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218,41,28,0.4);
    color: var(--white) !important;
}

/* ---- Dropdown container ---- */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 310px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
    z-index: 200;
}

/* Triangle pointer */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.05));
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown item */
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    transition: background var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.nav-dropdown-item:hover {
    background: var(--gray-50);
    transform: translateX(3px);
}

.nav-dropdown-item.active { background: rgba(218,41,28,0.06); }

.dropdown-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.nav-dropdown-item:hover .dropdown-icon { background: rgba(218,41,28,0.1); }

.nav-dropdown-item span:not(.dropdown-icon) strong {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.nav-dropdown-item span:not(.dropdown-icon) small {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 400;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 0.4rem 0;
}

/* ---- Mobile sub-items ---- */
.mobile-nav-sub-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0;
    pointer-events: none;
}

.mobile-nav-sub a {
    padding-left: 1rem !important;
    font-size: 0.9rem !important;
    color: var(--gray-600) !important;
}

/* =========================================
   INNER PAGE – CTA BAR
   ========================================= */
.inner-cta {
    padding: 4rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.inner-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.inner-cta-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.inner-cta-grid p { color: var(--gray-600); }

.inner-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-dark:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   CHAIRMAN PROFILE PAGE
   ========================================= */
.chairman-profile-section {
    padding: 6rem 0;
    background: var(--white);
}

.chairman-profile-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: start;
}

/* Portrait column */
.cp-portrait-wrap { position: sticky; top: calc(var(--nav-height) + 2rem); }

.cp-portrait-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(218,41,28,0.15);
    margin-bottom: 1.5rem;
}

.cp-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-slow);
}

.cp-portrait-frame:hover img { transform: scale(1.04); }

.cp-name-badge {
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.cp-name-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.cp-name-badge span {
    font-size: 0.8rem;
    color: var(--secondary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-contact-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-200);
}

.cp-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

.cp-contact-item:last-child { border-bottom: none; }
.cp-contact-icon { font-size: 1.1rem; }

/* Bio column */
.cp-bio h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

.cp-bio > p {
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.cp-quote {
    background: var(--gray-50);
    border-left: 5px solid var(--secondary-orange);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.cp-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--secondary-orange);
    opacity: 0.25;
    line-height: 0.4;
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
}

.cp-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    border: none;
    padding: 0;
    padding-left: 2rem;
    margin: 0;
}

/* Highlights */
.cp-highlights { margin-top: 3rem; }

.cp-highlights h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cp-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cp-highlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-base);
    text-align: center;
}

.cp-highlight-card:hover {
    border-color: rgba(218,41,28,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cp-h-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.cp-highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.cp-highlight-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Chairman Message strip */
.cp-message-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.cp-message-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cp-message-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,25,47,0.97) 0%, rgba(10,25,47,0.91) 100%);
}

.cp-message-section .container { position: relative; z-index: 2; }

.cp-message-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cp-message-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.cp-full-message p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    text-align: left;
}

.cp-message-sig {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cp-sig-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.cp-sig-title {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
}

/* =========================================
   MANAGEMENT TEAM PAGE
   ========================================= */
.team-intro-section {
    padding: 5rem 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.team-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-intro-grid h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.team-intro-grid > div > p {
    color: var(--gray-600);
    line-height: 1.8;
}

.team-intro-values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tiv-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.tiv-item:hover { border-color: rgba(218,41,28,0.25); color: var(--secondary-orange); }

.tiv-dot {
    width: 10px;
    height: 10px;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Chairman feature card */
.team-chairman-feature {
    padding: 5rem 0;
    background: var(--white);
}

.tcf-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--primary-navy);
    border-radius: 28px;
    padding: 3rem;
    overflow: hidden;
    position: relative;
}

.tcf-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(218,41,28,0.1);
    border-radius: 50%;
}

.tcf-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 200px;
    width: 180px;
    height: 180px;
    background: rgba(218,41,28,0.06);
    border-radius: 50%;
}

.tcf-portrait {
    width: 280px;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid rgba(218,41,28,0.35);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.tcf-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-slow);
}

.tcf-portrait:hover img { transform: scale(1.05); }

.tcf-content { position: relative; z-index: 1; }

.tcf-role-badge {
    display: inline-block;
    background: rgba(218,41,28,0.2);
    color: #ff8a80;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(218,41,28,0.25);
}

.tcf-content h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.tcf-content p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Team members grid */
.team-grid-section {
    padding: 7rem 0;
    background: var(--gray-50);
}

.team-grid-section .section-title p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tmc-img-wrap {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.tmc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform var(--transition-slow);
}

.team-member-card:hover .tmc-img-wrap img { transform: scale(1.06); }

.tmc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,25,47,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.tmc-role-tag {
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
}

.tmc-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tmc-role {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.tmc-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.tmc-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.tmc-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.tmc-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
    transition: color var(--transition-fast);
    word-break: break-all;
}

.tmc-contact-link:hover { color: var(--secondary-orange); }
.tmc-contact-link svg { color: var(--secondary-orange); flex-shrink: 0; }

/* Support roles */
.team-support-roles {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--gray-200);
}

.team-support-roles > h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.support-roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.support-role-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.support-role-card:hover {
    border-color: rgba(218,41,28,0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.src-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.support-role-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.support-role-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* Team commitment */
.team-commitment-section {
    padding: 6rem 0;
    background: var(--white);
}

.tc-card {
    background: var(--primary-navy);
    border-radius: 28px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tc-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(218,41,28,0.07);
    border-radius: 50%;
}

.tc-card h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.tc-card > p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.tc-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.tc-pillar {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* =========================================
   RESPONSIVE – NEW PAGES
   ========================================= */
@media (max-width: 1100px) {
    .chairman-profile-grid { grid-template-columns: 300px 1fr; gap: 3rem; }
    .cp-portrait-wrap { position: static; }
    .tcf-card { grid-template-columns: 220px 1fr; gap: 2.5rem; }
    .tcf-portrait { width: 220px; height: 270px; }
    .team-members-grid { grid-template-columns: repeat(2, 1fr); }
    .support-roles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .chairman-profile-grid { grid-template-columns: 1fr; }
    .cp-portrait-frame { max-width: 280px; margin: 0 auto; }
    .cp-highlights-grid { grid-template-columns: 1fr; }
    .team-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tcf-card { grid-template-columns: 1fr; text-align: center; }
    .tcf-portrait { width: 200px; height: 250px; margin: 0 auto; }
    .team-members-grid { grid-template-columns: 1fr; }
    .support-roles-grid { grid-template-columns: 1fr; }
    .inner-cta-grid { flex-direction: column; text-align: center; }
    .inner-cta-actions { justify-content: center; }
    .tc-card { padding: 2.5rem 1.5rem; }
    .cp-quote blockquote { padding-left: 0.5rem; }
}

@media (max-width: 992px) {
    .mobile-menu-btn { display: flex; }
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-navy);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    transform: translateY(-50%) translateX(8px);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-navy);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-float-tooltip {
        display: none;
    }
}
