/* --- CSS Reset & Variables --- */
:root {
    /* Premium Color Palette */
    --primary: #1F3F23;
    /* Very Deep Forest Green */
    --primary-light: #2D5832;
    --secondary: #8B6535;
    /* Rich Warm Soil Brown */
    --secondary-light: #A67D44;
    --accent: #E6C875;
    /* Soft Premium Gold */
    --bg-light: #F9F8F4;
    /* Very subtle warm off-white */
    --bg-dark: #122115;
    /* Almost black rich green for footers/dark sections */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #5A5A5A;

    /* Typography - Updated to Mulish as requested */
    --font-sans: 'Mulish', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing & Utilities */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --container-width: 1280px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(31, 63, 35, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* --- Global Enhancements --- */
::selection {
    background-color: var(--secondary);
    color: var(--text-light);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: var(--primary);
    line-height: 1.2;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

p.lead-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(230, 200, 117, 0.15);
    /* Accent tint */
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.badge-dark {
    background-color: rgba(31, 63, 35, 0.1);
    color: var(--primary);
}

/* --- Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 120px 0;
}

/* --- Buttons --- */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 63, 35, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* --- Header & Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background-color: rgba(249, 248, 244, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    /* Adding a crisp white pill background so the dark logo is ALWAYS perfectly visible */
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .brand-logo {
    height: 55px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -6px;
    left: auto;
    right: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover:not(.btn-primary)::after {
    width: 100%;
    left: 0;
    right: auto;
}

.navbar.scrolled .btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.navbar.scrolled .btn-primary:hover {
    background-color: var(--primary-light);
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
    left: 0;
}

.navbar.scrolled .mobile-menu-btn span,
.mobile-nav.open~.navbar .mobile-menu-btn span {
    background-color: var(--primary);
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 11px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 22px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    transition: right 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding-top: 200px;
    /* Increased to give ample space for navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much darker overlay to ensure the dark logo and white text pops perfectly */
    background: linear-gradient(135deg, rgba(8, 20, 10, 0.85) 0%, rgba(20, 50, 25, 0.8) 100%), url('assets/hero-bg.png') center/cover no-repeat;
    z-index: -1;
    animation: slowBackgroundZoom 20s infinite alternate ease-in-out;
}

@keyframes slowBackgroundZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: left;
    background: rgba(18, 33, 21, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-logo-box {
    margin-top: 120px;
    margin-bottom: 40px;
}

.hero-logo-large {
    height: 160px;
    /* Slightly smaller for sophistication */
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

.hero h1 {
    font-size: 5.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1 span {
    background: linear-gradient(to right, #E6C875, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 300;
    display: inline-block;
    font-size: 5rem;
    padding-bottom: 5px;
}

/* Orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.5;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: 20%;
    left: -10%;
    animation: floatOrb 12s ease-in-out infinite alternate;
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    bottom: -10%;
    right: -5%;
    animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

/* Divider */
.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-divider .shape-fill {
    fill: var(--bg-light);
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    max-width: 650px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- About Section --- */
.about {
    background-color: var(--bg-light);
    position: relative;
}

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

.section-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.section-title span {
    color: var(--secondary);
    font-style: italic;
    font-weight: 400;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin-bottom: 30px;
}

.stats-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stats-list h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-serif);
    margin-bottom: 5px;
}

.stats-list p {
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    font-weight: 700;
}

/* Premium Image Composition */
.images-composition {
    position: relative;
    height: 600px;
    width: 100%;
}

.img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    z-index: 1;
}

.img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 10px solid var(--bg-light);
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--text-light);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(31, 63, 35, 0.3);
    border: 4px solid var(--accent);
}

.experience-badge .num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

/* --- Benefits Section (Dark Premium Theme) --- */
.benefits {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: none;
    position: relative;
}

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

.benefits .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.benefits .header-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 4px solid var(--accent);
}

.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 200, 117, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background-color: var(--accent);
}

.feature-card .icon {
    font-size: 35px;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover .icon {
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: var(--font-serif);
    color: var(--text-light);
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Process Section --- */
.process {
    background-color: var(--bg-light);
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(139, 101, 53, 0.2);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--secondary);
    color: var(--text-light);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.process-step p {
    font-size: 0.95rem;
}

/* --- Applications Section --- */
.applications {
    background-color: #F3F1EC;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.applications .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.app-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 101, 53, 0.1);
}

.app-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.app-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.app-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Contact Section --- */
.contact {
    position: relative;
    padding: 150px 0;
    /* Clean parallax-like bg */
    background: url('assets/soil-bg.png') center/cover fixed;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 33, 21, 0.9);
}

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

.contact-card {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-card h2 {
    color: var(--primary);
    font-size: 2.8rem;
}

.contact-card>p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #F9F8F4;
    padding: 40px;
    border-radius: var(--radius-md);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    background: var(--primary);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.contact-item a,
.contact-item p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin: 0;
}

.contact-action-block {
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 60px;
}

.contact-action-block .btn-primary {
    width: 100%;
    justify-content: center;
}

/* --- Footer --- */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    /* Since its a dark footer and the logo likely has a white background originally,
       we might need a white backplate or just accept the image */
    border-radius: var(--radius-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links-group h4 {
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links-group a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.designed-by {
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Animations (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

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

    .contact-action-block {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .images-composition {
        height: 500px;
        margin-top: 40px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 100px;
        min-height: 600px;
    }

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

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

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .stats-list {
        flex-direction: column;
        gap: 20px;
        border-top: none;
        padding-top: 20px;
    }

    .contact-card {
        padding: 40px 20px;
    }

    .contact-card h2 {
        font-size: 2.2rem;
    }

    .contact-grid {
        padding: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}