:root {
    --primary: #ffffff;
    --secondary: #00d4ff;
    --accent: #00b8e6;
    --light: #1a1a1a;
    --white: #0a0a0a;
    --gray: #a0a0a0;
    --dark-gray: #2a2a2a;
    --bg-dark: #0d0d0d;
    --bg-darker: #050505;
    --gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --glow: 0 0 30px rgba(0, 212, 255, 0.5);
    --glow-strong: 0 0 40px rgba(0, 212, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
}

/* Effet de particules/étoiles subtil sur le fond */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, var(--secondary), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--secondary), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--secondary), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--secondary), transparent),
        radial-gradient(2px 2px at 90% 60%, var(--secondary), transparent),
        radial-gradient(1px 1px at 30% 90%, var(--secondary), transparent),
        radial-gradient(2px 2px at 70% 40%, var(--secondary), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: twinkle 15s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
}

.section-title.centered {
    text-align: center;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
    }
    50% {
        box-shadow: 0 0 15px var(--secondary), 0 0 30px var(--secondary), 0 0 40px var(--secondary);
    }
}

.accent-line.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1708063785687-53f175935774?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--primary);
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-main {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.4s backwards;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
}

.hero-description {
    font-size: 1.3rem;
    margin: 2rem 0;
    letter-spacing: 2px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    animation: fadeInUp 1s ease 0.8s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6), var(--glow);
}

.cta-button.secondary {
    background: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: var(--dark-gray);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    box-shadow: var(--glow);
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
    box-shadow: 0 0 10px var(--secondary);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature-text p {
    color: var(--gray);
    line-height: 1.6;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow), 0 0 20px rgb(255, 255, 255);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--glow);
}

.image-1 {
    margin-top: 3rem;
}

.image-2 {
    margin-bottom: 3rem;
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.8));
    color: var(--white);
    padding: 1.5rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    cursor: pointer;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--glow), var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    border-left: 3px solid var(--secondary);
    padding-left: 1rem;
}

/* Prestations Section */
.prestations {
    padding: 8rem 0;
    background: var(--light);
}


/* Formules */
.formula-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.formula-card {
    cursor: pointer;
}

.formula-card input[type="radio"] {
    display: none;
}

.formula-content {
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.formula-card:hover .formula-content {
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.05);
}

.formula-card.selected .formula-content {
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow);
}

.formula-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.formula-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.formula-badge {
    padding: 0.3rem 0.8rem;
    background: var(--dark-gray);
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.formula-badge.popular {
    background: var(--gradient);
    color: var(--white);
}

.formula-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--white);
}

.formula-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.formula-description {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.formula-features {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.formula-features li {
    color: var(--gray);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.formula-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-item {
    cursor: pointer;
}

.option-item input[type="checkbox"] {
    display: none;
}

.option-content {
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.option-item:hover .option-content {
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.05);
}

.option-item.selected .option-content {
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.option-icon {
    font-size: 2rem;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.option-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.option-price {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Résumé du prix */
.price-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-content {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: var(--glow), var(--shadow);
}

.summary-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.summary-details {
    margin-bottom: 2rem;
    min-height: 150px;
}

.summary-placeholder {
    color: var(--gray);
    text-align: center;
    font-style: italic;
    padding: 2rem 0;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    color: var(--primary);
}

.summary-icon {
    font-size: 1.3rem;
}

.total-price-container {
    background: rgba(10, 10, 10, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    color: var(--gray);
}

.breakdown-label {
    font-weight: 500;
}

.breakdown-value {
    font-weight: 700;
    color: var(--primary);
}

.total-divider {
    height: 2px;
    background: var(--gradient);
    margin: 1rem 0;
    box-shadow: 0 0 10px var(--secondary);
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.total-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-note {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--glow);
    border-color: var(--secondary);
}

.pricing-card.featured {
    border-color: var(--secondary);
    position: relative;
    transform: scale(1.05);
    box-shadow: var(--glow), var(--shadow-lg);
    background: rgba(0, 212, 255, 0.05);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-badge {
    padding: 0.4rem 1rem;
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-badge.popular {
    background: var(--gradient);
    color: var(--white);
}

.price-description {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.price {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.price span {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light);
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

.custom-quote {
    margin-top: 5rem;
    text-align: center;
    padding: 4rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.custom-quote-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-quote-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.05);
    box-shadow: var(--glow);
    border-color: var(--secondary);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-details a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-details p {
    color: var(--gray);
}

.social-links {
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.social-links h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-coming-soon {
    color: var(--gray);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
    transform: translateY(-3px);
    border-color: transparent;
}

.social-icon.tiktok {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.tiktok:hover {
    background: #000000;
    color: #00f2ea;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 242, 234, 0.4);
    border-color: #00f2ea;
}

/* Footer social icons */
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
}

.footer-social .social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.8);
    color: var(--primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(10, 10, 10, 0.9);
}

/* Mentions & CGV Section */
.mentions {
    padding: 8rem 0;
    background: var(--light);
}

.mentions-content {
    max-width: 900px;
    margin: 2rem auto;
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.mentions-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.mentions-content h3:first-child {
    margin-top: 0;
}

.mentions-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.mentions-content strong {
    color: var(--primary);
}

.mentions-content a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mentions-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.mentions-update {
    margin-top: 2rem;
    font-style: italic;
    color: var(--gray);
    text-align: right;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .price-configurator {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-summary {
        position: static;
    }
    
    .formula-options {
        grid-template-columns: 1fr;
    }
    
    .formula-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 968px) {
    .hero-main {
        font-size: 3.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        order: -1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .vehicle-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .configurator-card {
        padding: 2rem;
    }
    
    .formula-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .image-1,
    .image-2 {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-main {
        font-size: 2rem;
    }
    
    .custom-quote {
        padding: 2rem;
    }
    
    .mentions-content {
        padding: 1.5rem;
    }
}

