


{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-green: #0C3B2E;
    --emerald-medium: #1A5C45;
    --metallic-gold: #C6A664;
    --gold-light: #D9B25F;
    --light-bg: #F5F5F0;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between; /* Keeps logo and menu separated */
    align-items: center;
    height: 80px;
}

/* --- Header Modification Styles --- */
.header-logo-group {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    /* Reduced gap between logo group and menu is achieved by keeping the logo group compact */
}

.logo-img {
    height: 50px; /* Adjust size as needed */
    width: auto;
    margin-right: 10px; /* Space between logo image and text */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-green);
    line-height: 1; /* Compact the logo text */
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--metallic-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1; /* Compact the logo text */
}
/* --- End Header Modification Styles --- */


.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Reduced gap from 2rem to 1.5rem for a more compact look */
    align-items: center;
}

.nav-menu a {
    color: var(--emerald-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--metallic-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--metallic-gold);
    transition: width 0.3s ease;
}


.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
}
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-icon i {
    width: 28px;
    height: 28px;
    color: var(--emerald-green);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Drawer Styles */
@media (max-width: 1024px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 0;
        gap: 0;
        z-index: 1002;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
        transition: right 0.3s ease-in-out;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        border-bottom: 2px solid var(--metallic-gold);
        background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    }
    
    .mobile-menu-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--metallic-gold);
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: var(--metallic-gold);
        transform: rotate(90deg);
    }
    
    .mobile-menu-close i {
        width: 24px;
        height: 24px;
        color: white;
    }
    
    /* Mobile Menu Items */
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #E5E7EB;
        padding: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        color: var(--emerald-green);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: white;
        background: var(--metallic-gold);
        padding-left: 2rem;
    }
    
    .nav-menu .btn-primary {
        margin: 1.5rem;
        justify-content: center;
        width: calc(100% - 3rem);
        padding: 1rem 1.5rem;
    }
    
    .nav-menu .btn-primary:hover {
        padding-left: 1.5rem;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

@media (min-width: 1025px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}
/* Buttons */
.btn-primary {
    background: var(--metallic-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(198, 166, 100, 0.4);
}

.btn-primary:hover {
    background: var(--emerald-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(198, 166, 100, 0.6);
}

.btn-primary i {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(12, 59, 46, 0.95) 0%, 
        rgba(12, 59, 46, 0.85) 50%, 
        rgba(26, 92, 69, 0.75) 100%);
}

.hero-blur-1 {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-blur-2 {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(217, 178, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-left {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(198, 166, 100, 0.2);
    border: 1px solid rgba(198, 166, 100, 0.3);
    border-radius: 50px;
    color: var(--metallic-gold);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 4rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    color: var(--metallic-gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid rgba(198, 166, 100, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 300px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon i {
    width: 24px;
    height: 24px;
    color: var(--metallic-gold);
}

.floating-card-text h4 {
    color: var(--emerald-green);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.floating-card-text p {
    color: #666;
    font-size: 0.875rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(198, 166, 100, 0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    animation: bounce 1.5s infinite;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--metallic-gold);
    border-radius: 50%;
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-medium) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(198, 166, 100, 0.1);
    border-radius: 50px;
    color: var(--metallic-gold);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.page-hero .section-badge {
    background: rgba(198, 166, 100, 0.2);
    border: 1px solid rgba(198, 166, 100, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.quick-links .section-header h2 {
    color: white;
}

.section-header p {
    color: #666;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-links .section-header p {
    color: rgba(255,255,255,0.9);
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-left {
    opacity: 0;
    transform: translateX(-30px);
}

.about-left.animate {
    animation: slideInLeft 0.6s ease-out forwards;
}

.about-left h2 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
}

.about-left p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-right {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
}

.about-right.animate {
    animation: slideInRight 0.6s ease-out forwards;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 59, 46, 0.6), transparent);
}

.about-blur {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

/* Quick Links */
.quick-links {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-medium) 100%);
    position: relative;
    overflow: hidden;
}

.quick-links::before {
    content: '';
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.quick-links::after {
    content: '';
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(217, 178, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.quick-link-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 166, 100, 0.3);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
}

.quick-link-card.animate {
    animation: fadeInUp 0.5s ease-out forwards;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.quick-link-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.quick-link-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1);
}

.icon-blue { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.icon-purple { background: linear-gradient(135deg, #A855F7, #9333EA); }
.icon-green { background: linear-gradient(135deg, #10B981, #059669); }
.icon-orange { background: linear-gradient(135deg, #F97316, #EA580C); }
.icon-pink { background: linear-gradient(135deg, #EC4899, #DB2777); }

.quick-link-card h4 {
    color: var(--emerald-green);
    font-size: 1.125rem;
}

/* Impact Section */
.impact {
    padding: 5rem 0;
    background: white;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
}

.stat-card.animate {
    animation: scaleIn 0.5s ease-out forwards;
}

.stat-card-number {
    color: var(--metallic-gold);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--metallic-gold);
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-name {
    color: var(--emerald-green);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #999;
    font-size: 0.875rem;
}

/* Partners */
.partners {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.partners h3 {
    text-align: center;
    color: var(--emerald-green);
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partner-item {
    color: #999;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
}

.partner-item.animate {
    animation: scaleIn 0.5s ease-out forwards;
}

.partner-item:hover {
    color: var(--metallic-gold);
}

/* About Page Specific */
.our-story {
    padding: 5rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-left h2 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
}

.story-left p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 59, 46, 0.5), transparent);
}

/* Mission Vision Values */
.mission-vision {
    padding: 5rem 0;
    background: var(--light-bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.mvv-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mvv-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.mvv-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.mvv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1);
}

.mvv-icon i {
    width: 32px;
    height: 32px;
    color: var(--metallic-gold);
}

.mvv-card h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #666;
    line-height: 1.8;
}

/* Core Values */
.core-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.core-value-item {
    background: white;
    border-left: 4px solid var(--metallic-gold);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.core-value-item.animate {
    animation: scaleIn 0.5s ease-out forwards;
}

.core-value-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.core-value-item i {
    width: 40px;
    height: 40px;
    color: var(--metallic-gold);
    flex-shrink: 0;
}

.core-value-item h4 {
    color: var(--emerald-green);
    margin-bottom: 0.25rem;
}

.core-value-item p {
    color: #666;
    font-size: 0.875rem;
}

/* Photo Gallery */
.photo-gallery {
    padding: 5rem 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.animate {
    animation: scaleIn 0.5s ease-out forwards;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 59, 46, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(12, 59, 46, 0.3);
}

/* Model Page */
.model-pillars {
    padding: 5rem 0;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.pillar-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.pillar-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.pillar-card h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.pillar-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.pillar-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-features li:before {
    content: '✓';
    color: var(--metallic-gold);
    font-weight: bold;
}

/* Journey Timeline */
.journey-timeline {
    padding: 5rem 0;
    background: var(--light-bg);
}

.timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--metallic-gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.timeline-item.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 45%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: var(--metallic-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-content h3 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-content li {
    padding: 0.25rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-content li:before {
    content: '•';
    color: var(--metallic-gold);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.benefits-column {
    opacity: 0;
    transform: translateY(20px);
}

.benefits-column.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    width: 24px;
    height: 24px;
    color: var(--metallic-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item span {
    color: var(--emerald-green);
    font-weight: 500;
    line-height: 1.6;
}

/* Services/Pricing Page */
.pricing-banner {
    padding: 1rem 0;
    background: var(--metallic-gold);
    text-align: center;
}

.pricing-banner p {
    color: white;
    font-weight: 600;
}

.pricing-table-section {
    padding: 5rem 0;
    background: white;
}

.pricing-table-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-table-container.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
}

.pricing-table th {
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
}

.pricing-table th:first-child {
    text-align: left;
    min-width: 250px;
}

.pricing-table th.gold-column {
    background: var(--metallic-gold);
}

.pricing-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
}

.pricing-table tbody tr:nth-child(even) {
    background: #F9FAFB;
}

.pricing-table tbody tr:hover {
    background: rgba(198, 166, 100, 0.05);
}

.pricing-table td {
    padding: 1.25rem 1rem;
    text-align: center;
}

.pricing-table td:first-child {
    text-align: left;
}

.pricing-table td.gold-highlight {
    background: rgba(198, 166, 100, 0.1);
}

.product-name {
    color: var(--emerald-green);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-desc {
    color: #666;
    font-size: 0.875rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--metallic-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.product-badge i {
    width: 12px;
    height: 12px;
}

.price-value {
    color: var(--emerald-green);
    font-weight: 700;
    font-size: 1.125rem;
}

.gold-highlight .price-value {
    color: var(--metallic-gold);
}

/* Mobile Pricing Cards */
.mobile-pricing-cards {
    display: none;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-pricing-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
}

.mobile-pricing-card.popular {
    border: 2px solid var(--metallic-gold);
}

.mobile-card-header {
    margin-bottom: 1.5rem;
}

.mobile-card-header h3 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.mobile-card-header p {
    color: #666;
    font-size: 0.875rem;
}

.mobile-price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-price-item {
    background: #F9FAFB;
    padding: 1rem;
    border-radius: 8px;
}

.mobile-price-item.special {
    background: rgba(198, 166, 100, 0.1);
    border: 2px solid var(--metallic-gold);
}

.mobile-price-item .period {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.mobile-price-item .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-green);
}

.mobile-price-item.special .price {
    color: var(--metallic-gold);
}

.mobile-price-item .discount {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
}

.mobile-price-item.special .discount {
    color: var(--metallic-gold);
}

/* Features Included */
.features-included {
    padding: 5rem 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Background image layer */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* VERY low opacity */
    z-index: 0;
}

/* Keep text above image */
.feature-card * {
    position: relative;
    z-index: 1;
}
.coffee-bg::before {
    background-image: url("images/coffee.jpeg");
}

.wifi-bg::before {
    background-image: url("images/wifi.jpeg");
}

.security-bg::before {
    background-image: url("images/security.jpeg");
}

.print-bg::before {
    background-image: url("images/printing.jpeg");
}

.meeting-bg::before {
    background-image: url("images/meeting.jpeg");
}
.mail-bg::before {
    background-image: url("images/mail.jpeg");
}
.support-bg::before {
    background-image: url("images/support.jpeg");
}
.community-bg::before {
    background-image: url("images/community.jpeg");
}


.feature-card.animate {
    animation: fadeInUp 0.5s ease-out forwards;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-card i {
    width: 32px;
    height: 32px;
    color: var(--metallic-gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--emerald-green);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.875rem;
}

/* Discount Info Box */
.discount-info {
    padding: 4rem 0;
    background: white;
}

.info-box {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    border-radius: 16px;
    padding: 3rem;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.info-box.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.info-box i {
    width: 32px;
    height: 32px;
    color: var(--metallic-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-box-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.info-box-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.info-box-content .highlight {
    color: var(--metallic-gold);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
}

.cta-content.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Offerings Page */
.offering-section {
    padding: 5rem 0;
}

.offering-section:nth-child(even) {
    background: var(--light-bg);
}

.offering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.offering-content.reverse {
    direction: rtl;
}

.offering-content.reverse > * {
    direction: ltr;
}

.offering-image {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(-30px);
}

.offering-content.reverse .offering-image {
    transform: translateX(30px);
}

.offering-image.animate {
    animation: slideInLeft 0.6s ease-out forwards;
}

.offering-content.reverse .offering-image.animate {
    animation: slideInRight 0.6s ease-out forwards;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offering-text {
    opacity: 0;
    transform: translateX(30px);
}

.offering-content.reverse .offering-text {
    transform: translateX(-30px);
}

.offering-text.animate {
    animation: slideInRight 0.6s ease-out forwards;
}

.offering-content.reverse .offering-text.animate {
    animation: slideInLeft 0.6s ease-out forwards;
}

.offering-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offering-icon i {
    width: 32px;
    height: 32px;
    color: var(--metallic-gold);
}

.offering-text h2 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.offering-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.offering-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offering-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.offering-features li:before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--metallic-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Additional Services */
.additional-services {
    padding: 5rem 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card i {
    width: 48px;
    height: 48px;
    color: var(--metallic-gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    font-size: 0.875rem;
}

/* Impact Page */
.impact-metrics {
    padding: 5rem 0;
    background: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.metric-card {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
}

.metric-card.animate {
    animation: scaleIn 0.5s ease-out forwards;
}

.metric-card-number {
    color: var(--metallic-gold);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-card-label {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

/* Success Stories Detailed */
.success-stories-detailed {
    padding: 5rem 0;
    background: var(--light-bg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.story-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.story-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.1);
}

.story-card-content {
    padding: 2rem;
}

.story-founder {
    color: var(--emerald-green);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.story-business {
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.story-quote {
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.story-metric {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.story-metric-value {
    color: var(--metallic-gold);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.story-metric-label {
    color: #666;
    font-size: 0.75rem;
}

/* Partner Ecosystem */
.partner-ecosystem {
    padding: 5rem 0;
    background: white;
}

.partner-categories {
    margin-top: 3rem;
}

.partner-category {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.partner-category.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.partner-category h3 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partner-logo-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    border-color: var(--metallic-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.partner-logo-card span {
    color: #666;
    font-weight: 500;
}

/* Community Impact */
.community-impact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.initiative-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--metallic-gold);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.initiative-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.initiative-card h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.initiative-card p {
    color: #666;
    line-height: 1.8;
}

/* Awards Section */
.awards-section {
    padding: 5rem 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.award-badge {
    background: white;
    border: 2px solid var(--metallic-gold);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.award-badge.animate {
    animation: scaleIn 0.5s ease-out forwards;
}

.award-badge:hover {
    background: var(--metallic-gold);
    transform: scale(1.05);
}

.award-badge i {
    width: 48px;
    height: 48px;
    color: var(--metallic-gold);
    margin-bottom: 1rem;
}

.award-badge:hover i {
    color: white;
}

.award-badge h4 {
    color: var(--emerald-green);
    font-size: 0.875rem;
}

.award-badge:hover h4 {
    color: white;
}

/* Contact Page */
.contact-methods {
    padding: 5rem 0;
    background: white;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.contact-method-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-method-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.contact-method-card h3 {
    color: var(--emerald-green);
    margin-bottom: 0.75rem;
}

.contact-method-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateX(-30px);
}

.contact-form.animate {
    animation: slideInLeft 0.6s ease-out forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--emerald-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--metallic-gold);
    box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin: 0;
    font-weight: 400;
}

.form-submit {
    width: 100%;
}

/* Contact Info */
.contact-info {
    opacity: 0;
    transform: translateX(30px);
}

.contact-info.animate {
    animation: slideInRight 0.6s ease-out forwards;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    color: var(--metallic-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-detail h4 {
    color: var(--emerald-green);
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: #666;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-green);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--metallic-gold);
    color: white;
    transform: translateY(-3px);
}

.social-link i {
    width: 18px;
    height: 18px;
}

.cta-info-card {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
    color: white;
    border-radius: 12px;
    padding: 2rem;
}

.cta-info-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.cta-info-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-container {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question h4 {
    color: var(--emerald-green);
    margin: 0;
}

.faq-question i {
    width: 24px;
    height: 24px;
    color: var(--metallic-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--emerald-green);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: var(--metallic-gold);
    transform: translateY(-3px);
}

.social-icon i {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    color: var(--metallic-gold);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--metallic-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero-content,
    .about-grid,
    .story-grid,
    .offering-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        display: none;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-stats,
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .core-values {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-table-container {
        display: none;
    }
    
    .mobile-pricing-cards {
        display: block;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
    }
    
    .timeline-number {
        left: 20px;
    }
}
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.team-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--metallic-gold);
}

.team-photo-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-medium));
}

.team-photo {
    width: 100%;
    height: 150%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(12, 59, 46, 0.7));
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-position {
    color: var(--metallic-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: block;
}

.team-bio {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.team-bio-preview {
    max-height: 4.5em;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.team-bio-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(to bottom, transparent, white);
}

.team-bio-full {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card.expanded .team-bio-preview {
    max-height: none;
}

.team-card.expanded .team-bio-preview::after {
    display: none;
}

.team-card.expanded .team-bio-full {
    max-height: 2000px;
    opacity: 1;
    margin-top: 1rem;
}

.read-more-btn {
    background: var(--metallic-gold);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.read-more-btn:hover {
    background: var(--emerald-green);
    transform: translateX(5px);
}

.read-more-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.team-card.expanded .read-more-btn i {
    transform: rotate(180deg);
}

.team-social {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--metallic-gold);
    color: white;
    transform: translateY(-3px);
}

.team-social-link i {
    width: 18px;
    height: 18px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: rgba(198, 166, 100, 0.1);
    color: var(--metallic-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(198, 166, 100, 0.3);
}

.team-achievements {
    background: var(--light-bg);
    border-left: 3px solid var(--metallic-gold);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.team-achievements h5 {
    color: var(--emerald-green);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-achievements li {
    color: #666;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-achievements li:before {
    content: '✓';
    color: var(--metallic-gold);
    font-weight: bold;
    font-size: 1rem;
}

.leadership-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--metallic-gold);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 10px rgba(198, 166, 100, 0.4);
    z-index: 10;
}

.leadership-badge i {
    width: 14px;
    height: 14px;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-photo-wrapper {
        height: 280px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
:root {
  --emerald-green: #0c3b2e;
  --emerald-medium: #195e4a;
  --metallic-gold: #c6a664;
  --light-bg: #f8f8f8;
}
.team-bio {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}

.team-bio .full-bio {
    display: none;
    margin-top: 5px;
    color: #555;
}

.read-more-btn {
    margin-top: 8px;
    background: none;
    border: none;
    color: var(--metallic-gold);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: var(--emerald-medium);
}
.team-photo-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Set a fixed height for uniform cards */
    overflow: hidden;
    border-radius: 12px; /* optional, rounded corners */
}

.team-photo-wrapper img {
    width: 100%;
    height: 130%;
    object-fit: cover; /* Ensures image covers the box without distortion */
    display: block;
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2); /* optional overlay */
}

/* Gallery Stats */
.gallery-stats {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gallery-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gallery-stat-item:hover {
    background: rgba(198, 166, 100, 0.1);
    transform: translateY(-3px);
}

.gallery-stat-item i {
    width: 40px;
    height: 40px;
    color: var(--metallic-gold);
    flex-shrink: 0;
}

.gallery-stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-green);
    margin-bottom: 0.25rem;
}

.gallery-stat-item .stat-label {
    font-size: 0.875rem;
    color: #666;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid #E5E7EB;
    color: var(--emerald-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.filter-btn i {
    width: 18px;
    height: 18px;
}

.filter-btn:hover {
    border-color: var(--metallic-gold);
    color: var(--metallic-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--metallic-gold);
    border-color: var(--metallic-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(198, 166, 100, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.gallery-item-inner {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.gallery-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-inner:hover img {
    transform: scale(1.1);
}
.logo a {
    text-decoration: none; /* removes underline */
    color: inherit; /* keeps original text color */
    display: inline-block; /* ensures the whole div is clickable */
}


/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(12, 59, 46, 0.95) 0%, 
        rgba(12, 59, 46, 0.7) 40%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-action-btn:hover {
    background: var(--metallic-gold);
    border-color: var(--metallic-gold);
    transform: scale(1.1);
}

.gallery-action-btn i {
    width: 18px;
    height: 18px;
}

/* Category Badge */
.gallery-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--metallic-gold);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(198, 166, 100, 0.4);
}

/* Video Items */
.video-item .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(198, 166, 100, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.video-item:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--metallic-gold);
}

.video-item .video-play-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 1rem 2.5rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: block;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: zoom-out;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--metallic-gold);
    transform: rotate(90deg);
}

.lightbox-close i {
    width: 24px;
    height: 24px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--metallic-gold);
}

.lightbox-nav i {
    width: 28px;
    height: 28px;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-info {
    text-align: center;
    margin-top: 1.5rem;
    color: white;
}

.lightbox-info h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: block;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: var(--metallic-gold);
    transform: rotate(90deg);
}

.video-modal-close i {
    width: 24px;
    height: 24px;
}

.video-container {
    max-width: 1200px;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.video-placeholder i {
    width: 80px;
    height: 80px;
    color: var(--metallic-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
}

```