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

:root {
    --primary-color: #ff6b6b;
    --primary-color-light: #ffbaba;
    --secondary-color: #ffd93d;
    --accent-orange: #ff8c42;
    --accent-pink: #ff6b9d;
    --dark: #2d3436;
    --light: #fef9f3;
    --gray: #636e72;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
    color: var(--dark);
    padding: 4rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 211, 61, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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


.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    font-weight: 800;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    line-height: 1.6;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color-light), var(--light));
    color: #ff6b72;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.1s backwards;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Formulaire Hero Card - Multi-étapes */
.hero-form-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInScale 0.8s ease;
    border: 3px solid rgba(255, 107, 107, 0.1);
    min-height: 420px;
}

.form-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-card-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Progress Bar */
.form-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.progress-step {
    width: 40px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
}

.progress-step.completed {
    background: var(--primary-color);
}

/* Step Container */
.form-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Question */
.step-question {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-question h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-question p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Option Buttons */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-btn {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.option-btn:hover {
    border-color: var(--primary-color);
    background: #fff5f5;
}

.option-btn.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 157, 0.1));
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.option-btn .option-icon {
    font-size: 1.75rem;
}

.option-btn .option-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

/* Location Step */
.location-container {
    margin-bottom: 1.5rem;
}

.location-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.country-dropdown {
    position: relative;
    width: 100%;
}
.country-dd-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    color: var(--dark);
    background: #f8fafc;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}
.country-dd-btn:hover,
.country-dd-btn:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}
.country-dd-btn .chevron {
    margin-left: auto;
    color: #94a3b8;
}
.country-dd-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    z-index: 50;
    overflow: hidden;
}
.country-dd-menu.show { display: block; }
.country-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.12s;
}
.country-dd-item:hover { background: #f1f5f9; }
.country-dd-item.active { background: #eff6ff; color: #2563eb; font-weight: 600; }

.city-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    color: var(--dark);
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.city-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.detect-location-btn {
    width: 100%;
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.detect-location-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff5f5;
}

.detect-location-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.detect-location-btn .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.detect-location-btn.loading .spinner {
    display: block;
}

.detect-location-btn.loading .location-icon {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Sign-up Methods */
.signup-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-method-btn {
    width: 100%;
    padding: 0.5rem 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.signup-method-btn:hover {
    border-color: var(--primary-color);
    background: #fff5f5;
    transform: translateY(-2px);
}

.signup-method-btn .method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.signup-method-btn.google .method-icon {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.signup-method-btn.microsoft .method-icon {
    background: #f3f3f3;
}

.signup-method-btn.yahoo .method-icon {
    background: #720e9e;
    color: white;
}

.signup-method-btn.email .method-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    color: white;
}

.signup-method-btn .method-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.nav-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
}

.nav-btn.back {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: var(--gray);
}

.nav-btn.back:hover {
    border-color: var(--gray);
    color: var(--dark);
}

.nav-btn.next {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.nav-btn.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.nav-btn.next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-hint {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
}

/* Google Places Autocomplete */
.pac-container {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pac-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.pac-item:hover {
    background: #fff5f5;
}

.pac-item-query {
    color: var(--dark);
    font-weight: 600;
}

.button-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.button-primary::after {
    content: '→';
    font-size: 1.25rem;
}

.button-secondary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.button-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Sections */
section {
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Trust Badges */
.trust-section {
    background: white;
    padding: 3rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.trust-badge-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    color: var(--dark);
}

h2 .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Target Audience */
.target-audience {
    background: linear-gradient(180deg, var(--light) 0%, #fff5e6 100%);
    position: relative;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-10px);
}

.audience-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.audience-content {
    padding: 2rem;
    text-align: center;
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-orange));
    padding: 1rem;
    border-radius: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 1rem;
    box-shadow: 0 8px 20px rgba(255, 217, 61, 0.4);
}

.audience-card:nth-child(2) .audience-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.audience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.audience-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-orange));
    box-shadow: 0 8px 20px rgba(255, 217, 61, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #00b894, #55efc4);
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.3);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    box-shadow: 0 8px 20px rgba(116, 185, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Success Stories Gallery */
.success-gallery {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: white;
    font-size: 0.9rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-card:nth-child(2) {
    border-top-color: var(--primary-color);
}

.testimonial-card:nth-child(3) {
    border-top-color: var(--accent-orange);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: var(--dark);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-pink) 50%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    border-radius: 30px;
    padding: 5rem 2rem;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    -webkit-text-fill-color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-section .hero-buttons {
    position: relative;
    z-index: 1;
}

.cta-section .button-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .button-primary:hover {
    background: var(--light);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-orange), var(--accent-pink));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.25rem;
}

.social-links a:nth-child(1):hover {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(135deg, #e4405f, #f77737);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(135deg, #1da1f2, #0e8dd6);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-links a:nth-child(4):hover {
    background: linear-gradient(135deg, #0077b5, #005f8e);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .hero-form-card {
        padding: 2rem 1.5rem;
        border-radius: 25px;
    }

    h2 {
        font-size: 2rem;
    }


    .cta-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-form-card {
        padding: 1.5rem 1.25rem;
    }

    .form-card-header h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) and (min-width: 481px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
