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

body {
    font-family: 'Aptos', sans-serif;
    /* Changed to Aptos */
    line-height: 1.8;
    color: #FFFFFF;
    overflow-x: hidden;
    background: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Aptos', sans-serif;
    /* Changed to Aptos */
}

/* Exception for Hero Title */
.hero h1 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section - FULL WIDTH WITH VISIBLE GOLD SWEEP */
.hero {
    height: 100vh;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background:
        linear-gradient(rgba(20, 30, 50, 0.5), rgba(20, 30, 50, 0.5)),
        /* Reduced opacity to 0.5 */
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Optional: adds a nice parallax-like feel */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Remove gold sweep animation keyframes as they are no longer needed */

/* Light Reflection Animation */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: sheen 4s infinite ease-in-out;
    /* Sped up from 7s */
    pointer-events: none;
}

@keyframes sheen {
    0% {
        left: -150%;
    }

    50%,
    100% {
        left: 150%;
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 40% 60%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(201, 169, 97, 0.04) 0%, transparent 50%);
    animation: pulseGlow 18s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    /* Raised to sit above the fade gradient */
    max-width: 900px;
    padding: 20px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    animation: fadeInDown 1s ease;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

/* Bottom Fade for Seamless Transition */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    /* Increased from 150px for smoother blend */
    background: linear-gradient(to bottom, transparent 0%, #000000 90%);
    z-index: 2;
    pointer-events: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both, shine 5s linear infinite;
    /* Luxurious Gold Gradient with Shine */
    background: linear-gradient(110deg,
            #B8860B 0%,
            /* Dark Goldenrod */
            #FFD700 20%,
            /* Gold */
            #FFFFE0 30%,
            /* Light Yellow (Shine) */
            #FFD700 40%,
            /* Gold */
            #B8860B 55%,
            /* Dark Goldenrod */
            #8B6914 70%,
            /* Darker Bronze */
            #B8860B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero .tagline {
    font-size: 1.5em;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    color: #FFFFFF;
}

.hero .location {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
    color: #FFFFFF;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    /* Explicitly set body font for buttons */
}

.btn-primary {
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    color: #0a0a0a;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    /* Updated shadow */
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E8C468 0%, #E8B923 100%);
}

.btn-text-link {
    background: transparent;
    color: #FFFFFF;
    border: none;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding: 15px 20px;
    font-size: 1.05em;
    opacity: 0.9;
}

.btn-text-link:hover {
    color: #E8B923;
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 1000;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* Center links on desktop */
    align-items: center;
    position: relative;
    /* Context for absolute logo */
    height: 100%;
    /* Ensure full height for centering */
}

.nav-logo-link {
    position: absolute;
    left: 0;
    /* Align with container edge (20px screen padding) to match right side */
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    /* Remove padding */
    background: none !important;
    /* No background */
    box-shadow: none !important;
    /* No shadow */
    border: none;
}

.nav-logo-link:hover {
    background: none !important;
    transform: translateY(-50%) !important;
    /* Prevent hover move */
    box-shadow: none !important;
    opacity: 1;
}

.nav-logo {
    height: 50px;
    /* Adjust size */
    width: auto;
    display: block;
    border-radius: 50%;
    /* Optional: if round logo desired, else remove */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

nav.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #E8B923;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

nav a {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0.95em;
    font-weight: 500;

    /* Gradient Text */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

nav a:hover {
    background: rgba(212, 175, 55, 0.15);
    -webkit-background-clip: border-box;
    /* Reset clip to show background box */
    background-clip: border-box;
    -webkit-text-fill-color: #E8B923;
    /* Reset text fill to visible color */
    color: #E8B923;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    /* Added glow */
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* Transformation context for borders */
}

/* Luxurious Section Border Animation */
section:not(.hero)::before,
section:not(.hero)::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            #B8860B 20%,
            #FFD700 40%,
            #FFFFE0 50%,
            #FFD700 60%,
            #B8860B 80%,
            transparent 100%);
    background-size: 200% auto;
    animation: shine 6s linear infinite;
    opacity: 0.5;
    /* Subtle elegance */
}

section:not(.hero)::before {
    top: 0;
}

section:not(.hero)::after {
    bottom: 0;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;

    /* Apply Button Gradient to Headers */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
    /* Fallback */
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: block;

    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
    /* Fallback */

    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;

    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

.feature-card p {
    color: #FFFFFF;
    line-height: 1.8;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #E8B923;
    padding: 50px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    /* Centered content */
}

.highlight-box h3 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;

    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

.highlight-box p {
    font-size: 1.15em;
    line-height: 2;
    /* Increased line-height for readability */
    color: #FFFFFF;
}

.content-divider {
    text-align: center;
    color: #E8B923;
    font-size: 1.5em;
    margin: 20px 0;
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #E8B923;
    text-align: center;
    /* Borders handled by global section animation now */
}

.stats-section h2 {
    color: #E8B923;
}

.stats-section h2::after {
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.stat-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2.5em;
    /* Reduced from 3em */
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    white-space: nowrap;
    /* Forces single line */
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2em;
        /* Reduced from 2.2em */
    }
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
    color: #FFFFFF;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-card strong {
    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

.contact-icon {
    font-size: 2em;
    margin-bottom: 15px;
    display: block;

    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

.avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: #0a0a0a;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.team-card h3 {
    margin-bottom: 10px;
    font-weight: 600;

    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

.team-card p {
    color: #FFFFFF;
}

.role {
    color: #E8B923;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* Location Section */
.location-advantages {
    background: #000000;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #E8B923;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.advantage-card h4 {
    margin-bottom: 15px;
    font-size: 1.3em;

    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

.advantage-card i {
    margin-right: 10px;
    /* Icons inherit gradient from h4 if inside, but explicit is safer if structure varies */
}

.advantage-card p {
    color: #FFFFFF;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #E8B923;
    text-align: center;
    /* Border now handled by global animation */
}

.contact-section h2 {
    color: #E8B923;
}

.contact-section h2::after {
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.contact-card {
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-card h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;

    /* Apply Button Gradient */
    background: linear-gradient(135deg, #E8B923 0%, #E8C468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E8B923;
}

.contact-card p {
    line-height: 1.8;
    font-size: 1.05em;
    color: #FFFFFF;
}

.contact-card a {
    color: #FFFFFF;
    text-decoration: none;
    /* Optional: removes underline if desired, or keep it */
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #E8B923;
    /* Gold hover effect */
}

.contact-card strong {
    color: #E8B923;
}

/* Footer */
footer {
    background: #000000;
    color: #FFFFFF;
    /* Reverted to white */
    text-align: center;
    padding: 30px 20px;
    position: relative;
    /* Context for border */
}

/* Add top border animation to footer explicitly if it's not a section tag */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            #B8860B 20%,
            #FFD700 40%,
            #FFFFE0 50%,
            #FFD700 60%,
            #B8860B 80%,
            transparent 100%);
    background-size: 200% auto;
    animation: shine 6s linear infinite;
    opacity: 0.5;
}

footer p {
    color: #FFFFFF;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
    /* Sped up from 0.8s */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids - Tighter timing */
.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.reveal:nth-child(5) {
    transition-delay: 0.25s;
}

.reveal:nth-child(6) {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo {
        width: 150px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero .tagline {
        font-size: 1.2em;
    }

    .hero .location {
        font-size: 1em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    h2 {
        font-size: 2em;
    }

    .highlight-box {
        padding: 30px 20px;
    }

    .highlight-box h3 {
        font-size: 1.5em;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Navigation */
    nav,
    nav.scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        padding-top: 20px;
        height: 80px;
        /* Ensure height for logo */
    }

    .nav-container {
        justify-content: flex-end;
        /* Keep hamburger right-aligned on mobile */
    }

    .nav-logo-link {
        left: 0;
        /* Ensure symmetry on mobile too */
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-links {
        position: absolute;
        right: 20px;
        top: 70px;
        /* Below the navbar */
        height: auto;
        width: 250px;
        background: rgba(15, 15, 15, 0.98);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        /* Prevent clicks when closed */
        transition: all 0.3s ease;

        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }

    .nav-links.nav-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    nav a {
        font-size: 1.1em;
        /* Smaller font for compact box */
        border: none;
        background: transparent;
        opacity: 1;
        /* Reset opacity as we are fading the whole box */
        padding: 10px 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    nav a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #E8B923;
    }

    /* Remove the old slide animation as we are fading */
    /* Improve Hero Visibility on Mobile */
    .hero::before {
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
        /* Darker vignetting */
    }

    .hero-content {
        padding: 80px 20px 20px;
        /* Add top padding to clear navbar */
    }

    section {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 120px;
    }

    .hero {
        background-attachment: scroll;
        /* Fix for mobile parallax stutter */
    }

    .hero h1 {
        font-size: 1.8em;
        /* Reduced from 2em */
    }

    .hero .tagline {
        font-size: 0.95em;
        /* Reduced from 1em */
    }

    .hero .location {
        font-size: 0.85em;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    h2 {
        font-size: 1.5em;
        /* Reduced from 1.75em */
    }

    .feature-card h3 {
        font-size: 1.1em;
    }

    .stat-number {
        font-size: 2em;
    }

    .team-card h3 {
        font-size: 1.2em;
    }

    .role {
        font-size: 0.9em;
    }

    p {
        font-size: 0.9em;
        /* Slightly smaller body text */
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .avatar {
        width: 100px;
        height: 100px;
        font-size: 2em;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-logo {
        width: 180px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}