/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --primary-color: #003366;
    /* Deep Blue */
    --secondary-color: #C8202F;
    /* Accent Red */
    --accent-gold: #D4AF37;
    /* Premium Gold Accent */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --border-color: #e5e7eb;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 60, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--off-white);
}

.grid-center {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================
   Preloader
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader-track {
    width: 150px;
    height: 4px;
    background: #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--secondary-color);
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.loader-logo {
    width: 80px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}


/* =========================================
   Typography & Buttons
   ========================================= */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.8rem;
    color: var(--white);
    letter-spacing: -1px;
}

h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: inline-block;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.underline {
    height: 4px;
    width: 80px;
    background: var(--secondary-color);
    margin: 15px auto 20px;
    border-radius: 2px;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(200, 32, 47, 0.4);
}

.btn-primary:hover {
    background: #a31422;
    border-color: #a31422;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 32, 47, 0.5);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: scale(1.05);
}

.full-width {
    width: 100%;
    border-radius: 6px;
}

/* =========================================
   Header (Glassmorphism)
   ========================================= */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 80px;
    width: auto;
    /* Ensure aspect ratio is maintained */
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 70px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 16px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Underline animation for links */
.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: 0.3s;
}

.nav-menu a:not(.btn-primary)::after {
    width: 0;
}

.nav-menu a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-menu .btn-primary {
    padding: 10px 25px;
    border-radius: 6px;
    color: var(--white);
    box-shadow: none;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    font-size: 24px;
    margin-bottom: 40px;
    cursor: pointer;
    color: #aaa;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: block;
}

/* =========================================
   Hero Section & Parallax
   ========================================= */
.hero {
    height: 110vh;
    /* slightly taller for parallax feel */
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Bright, high-quality modern interior */
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=90') center/cover no-repeat;
    z-index: -2;
    transform: scale(1.1);
    /* room for movement */
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.95) 0%, rgba(0, 51, 102, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-text {
    z-index: 2;
}

.hero-text span {
    color: #8ecae6;
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--white);
}

.play-btn i {
    font-size: 30px;
}

.play-btn:hover {
    color: var(--secondary-color);
}

/* Floating Form */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
    max-width: 400px;
    margin-left: auto;
    position: relative;
    top: 20px;
    border-top: 5px solid var(--secondary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-header p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

.form-footer {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

/* Scroll Down Mouse */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* =========================================
   Stats Section
   ========================================= */
.stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    margin-top: -100px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =========================================
   Features
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: #eee;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #eef2f6;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* =========================================
   Process Section
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step {
    position: relative;
    padding: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Connector Line (Desktop Only) */
@media (min-width: 900px) {
    .process-step::after {
        content: '';
        position: absolute;
        top: 50px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #e1e1e1;
        z-index: 1;
    }

    .process-step:last-child::after {
        display: none;
    }
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
    /* Approximate max height */
    border-top: 1px solid #f1f1f1;
}

/* =========================================
   Products
   ========================================= */
.product-tabs {
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 35px;
    border: none;
    background: #e1e1e1;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    font-family: var(--font-main);
    font-weight: 600;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.btn-primary.sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   Customization Styles
   ========================================= */
.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 5px solid var(--secondary-color);
}

.color-box {
    height: 180px;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-5 {
    margin-top: 50px;
}

/* =========================================
   Parallax CTA
   ========================================= */
.cta-parallax {
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    height: 500px;
    /* other styles same as before, updated image */
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 51, 102, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.stars {
    color: var(--accent-gold);
    font-size: 14px;
}

.quote-icon {
    font-size: 40px;
    color: rgba(200, 32, 47, 0.1);
    margin: 0;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.user-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.user-info span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}


/* =========================================
   Footer
   ========================================= */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.branding p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.contact-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.footer-gallery img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--secondary-color);
    animation: beat 1s infinite;
}

@keyframes beat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* =========================================
   Animations
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-load {
    opacity: 0;
    animation: fadeUpLoad 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-100 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

@keyframes fadeUpLoad {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 900px) {
    .header-container {
        padding: 0 10px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }

    .hero-form {
        margin: 0 auto;
        width: 100%;
        border: none;
    }

    .stats-section {
        margin-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}