/* =======================================
   WATER BANK FOUNDATION - ULTRA LUXURY CSS
   ======================================= */

:root {
    /* Colors */
    --clr-bg: #f8fafc;
    --clr-bg-alt: #f1f5f9;
    --clr-primary: #2563eb;       /* Deep Royal Blue */
    --clr-primary-light: #3b82f6; 
    --clr-secondary: #0ea5e9;     /* Ocean Cyan */
    --clr-accent: #ec4899;        /* Magenta Accent */
    --clr-text-dark: #0f172a;
    --clr-text-sub: #334155;
    --clr-text-light: #475569;
    --clr-text-white: #ffffff;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    
    /* Layout */
    --max-width: 1300px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--clr-text-dark);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =======================================
   NAVBAR (Floating Glass)
   ======================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
}

.nav-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-dark);
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--clr-text-dark);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    transition: var(--transition);
}

.mobile-nav-links a:hover, .mobile-nav-links a.active {
    color: var(--clr-primary);
    transform: scale(1.1);
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 5% 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

/* Frosted glass overlay over the hero image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-sub);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--clr-text-dark);
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--clr-text-sub);
    margin-bottom: 40px;
    max-width: 650px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-group.centered {
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: var(--clr-text-light);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-secondary:hover {
    background: var(--clr-primary);
    color: var(--clr-text-light);
    transform: translateY(-3px);
}

/* =======================================
   BARTERWATER ANNOUNCEMENT
   ======================================= */
.barter-announcement {
    padding: 0 5%;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.un-logos img {
    height: 70px;
    margin: 0 auto 30px;
}

.glass-card h3 {
    font-size: 1.25rem;
    color: var(--clr-text-sub);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
}

.glass-card h3 strong {
    color: var(--clr-primary);
    font-weight: 700;
}

/* =======================================
   EDITORIAL MISSIONS (Theme Colors)
   ======================================= */
.editorial-missions {
    background-color: #ffffff; /* Theme white */
    padding: 0;
    margin: 0;
}

.editorial-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    align-items: stretch;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.editorial-row.reversed {
    flex-direction: row-reverse;
}

.editorial-img {
    flex: 1 1 50%;
    min-width: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Fallback for icon cards - stretch image and use theme gradient */
.editorial-img.icon-fallback {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure stretched image doesn't break out */
}

.editorial-img.icon-fallback .large-icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stretch as requested */
}

.editorial-content {
    flex: 1 1 50%;
    min-width: 300px;
    padding: 10% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #ffffff; /* Theme white */
}

.editorial-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--clr-primary); /* Theme Blue */
    margin-bottom: 30px;
    text-transform: uppercase;
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem); /* Slightly smaller to prevent cutoff */
    font-weight: 700;
    color: var(--clr-text-dark); /* Theme Dark */
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    word-break: break-word; /* Fix text cutoff for long words */
    hyphens: auto;
}

.editorial-desc {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: #475569; /* Theme Gray */
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--clr-primary); /* Theme Blue */
    text-transform: uppercase;
    transition: var(--transition);
}

.editorial-link .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 61, 112, 0.2);
    border-radius: 50%;
    font-weight: 300;
    font-size: 1.2rem;
    transition: var(--transition);
}

.editorial-link:hover {
    color: var(--clr-secondary);
}

.editorial-link:hover .arrow {
    background-color: var(--clr-secondary);
    color: #ffffff;
    border-color: var(--clr-secondary);
    transform: translateX(5px);
}

.card-content h4 {
    font-size: 1.4rem;
    color: var(--clr-text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--clr-text-sub);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    color: var(--clr-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

/* =======================================
   IMPACT SECTION
   ======================================= */
.impact-section {
    padding: 120px 5%;
    position: relative;
    background-image: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(14, 165, 233, 0.85)),
        url('https://waterbankfoundation.com/wp-content/uploads/2025/05/drops-of-water-water-nature-liquid-40784-40784-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-text-light);
    text-align: center;
}

.impact-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.impact-section span {
    font-weight: 400;
    font-size: 1.2rem;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* =======================================
   FOOTER
   ======================================= */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 80px 5% 20px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.brand-col .motto {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.links-col a, .partners-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: var(--transition);
}

.links-col a:hover, .partners-col a:hover {
    color: var(--clr-primary-light);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background: var(--clr-primary);
    color: white;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--clr-primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}

/* =======================================
   ABOUT US PAGE - AWWWARDS LIGHT LUXURY EDITION
   ======================================= */

.light-luxury-body {
    background-color: #ffffff;
    color: #0f172a;
}

/* 1. HERO SECTION (AWWWARDS EDITORIAL LIGHT) */
.hero-awwwards-light {
    padding: 180px 5% 100px;
    background-color: #faf9f6;
    border-bottom: 1px solid #e2e8f0;
}

.hero-light-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-text-col {
    text-align: left;
}

.editorial-eyebrow-pill {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1e40af;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.hero-editorial-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.hero-editorial-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #1e40af;
}

.hero-editorial-desc {
    font-size: 1.22rem;
    color: #475569;
    line-height: 1.8;
    max-width: 620px;
}

.hero-image-col {
    position: relative;
}

.hero-frame-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.hero-featured-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-frame-wrapper:hover .hero-featured-img {
    transform: scale(1.04);
}

.image-corner-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0f172a;
    border: 1px solid rgba(0,0,0,0.06);
}

/* 2. FEW WORDS ABOUT US */
.few-words-awwwards {
    padding: 120px 5%;
    background-color: #ffffff;
}

.editorial-quote-block {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 80px;
    position: relative;
}

.quote-line {
    width: 70px;
    height: 3px;
    background: #1e40af;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.editorial-main-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.8vw, 3.3rem);
    color: #0f172a;
    font-weight: 700;
    line-height: 1.45;
}

.editorial-main-quote span {
    color: #1e40af;
    border-bottom: 2px solid rgba(30, 64, 175, 0.25);
}

.words-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1150px;
    margin: 0 auto;
}

.awwwards-card {
    background: #faf9f6;
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.awwwards-card:hover {
    background: #ffffff;
    border-color: #1e40af;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.08);
}

.card-meta {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1e40af;
    display: block;
    margin-bottom: 15px;
}

.awwwards-card h3 {
    font-size: 1.6rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
}

.awwwards-card p {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.8;
}

/* 3. OUR APPROACH */
.approach-awwwards-light {
    padding: 130px 5%;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.awwwards-section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
}

.sub-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1e40af;
    display: block;
    margin-bottom: 15px;
}

.awwwards-section-header h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
}

.approach-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

.approach-card-clean {
    background: #ffffff;
    padding: 48px 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.approach-card-clean:hover {
    transform: translateY(-8px);
    border-color: #1e40af;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
}

.card-num-label {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 1.8rem;
    font-weight: 900;
    color: #cbd5e1;
}

.icon-circle-blue {
    width: 65px;
    height: 65px;
    background: #eff6ff;
    color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    border: 1px solid #dbeafe;
}

.approach-card-clean h4 {
    font-size: 1.35rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
}

.approach-card-clean p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

/* 4. VISION, MISSION, GOAL & MOTTO */
.pillars-awwwards-light {
    padding: 130px 5%;
    background-color: #ffffff;
}

.pillars-editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1250px;
    margin: 0 auto 70px;
}

.pillar-box-clean {
    background: #faf9f6;
    padding: 48px 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.pillar-box-clean:hover {
    background: #ffffff;
    border-color: #1e40af;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.pillar-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1e40af;
    display: block;
    margin-bottom: 15px;
}

.pillar-box-clean h3 {
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
}

.pillar-box-clean p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.75;
}

.motto-box-awwwards {
    background: #faf9f6;
    border: 2px solid #1e40af;
    border-radius: 24px;
    padding: 60px 45px;
    text-align: center;
    max-width: 1250px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.06);
}

.motto-badge-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #1e40af;
    color: #ffffff;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.sanskrit-text-dark {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.65;
    margin-bottom: 15px;
}

.verse-citation {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #64748b;
    display: block;
    margin-bottom: 20px;
}

.motto-translation-text {
    font-size: 1.15rem;
    color: #334155;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 5. MEET THE TEAM */
.team-awwwards-section {
    padding: 130px 5%;
    background-color: #faf9f6;
    border-top: 1px solid #e2e8f0;
}

.team-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1250px;
    margin: 0 auto;
}

.team-card-clean {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.team-card-clean:hover {
    transform: translateY(-8px);
    border-color: #1e40af;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
}

.portrait-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f1f5f9;
}

.portrait-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-clean:hover .portrait-wrapper img {
    transform: scale(1.05);
}

.linkedin-icon-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.linkedin-icon-btn:hover {
    background: #1e40af;
    color: #ffffff;
    transform: scale(1.1);
}

.team-info-clean {
    padding: 30px 25px;
    text-align: center;
}

.team-info-clean h4 {
    font-size: 1.35rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 6px;
}

.member-role {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #1e40af;
    display: block;
    margin-bottom: 15px;
}

.team-info-clean p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 6. IMPACT STATS */
.stats-awwwards-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.stats-banner-clean {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    max-width: 1250px;
    margin: 0 auto;
    background: #faf9f6;
    padding: 55px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    gap: 30px;
}

.stat-unit {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-big-num {
    font-size: clamp(2.8rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: #0f172a;
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-unit-label {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1e40af;
    text-transform: uppercase;
}

.stat-divider-line {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
}

/* 7. TESTIMONIALS */
.testimonials-awwwards {
    padding: 130px 5%;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.testimonials-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1250px;
    margin: 0 auto;
}

.testimonial-box-clean {
    background: #ffffff;
    padding: 48px 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.testimonial-box-clean.span-two-cols {
    grid-column: 1 / -1;
}

.testimonial-box-clean:hover {
    transform: translateY(-8px);
    border-color: #1e40af;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.08);
}

.quote-body {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: #0f172a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.author-info strong {
    color: #1e40af;
    font-size: 1.1rem;
    display: block;
    font-weight: 800;
    margin-bottom: 4px;
}

.author-info span {
    color: #64748b;
    font-size: 0.88rem;
}

/* 8. CTA LUXURY MINIMALIST */
.cta-awwwards-clean {
    padding: 120px 5%;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.cta-awwwards-clean h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-awwwards-clean p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-minimal {
    background: #0f172a;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.cta-btn-minimal:hover {
    background: #1e40af;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}


/* =======================================
   RESPONSIVE DESIGN
   ======================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide for mobile demo, normally would use JS for slide out */
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        padding-top: 120px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .glass-card {
        padding: 30px 20px;
    }
    .glass-card h3 {
        font-size: 1.1rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
