/* Variables CSS pour Starlink */
:root {
    --primary: #1a3a6c;
    --accent: #ff6b35;
    --starlink-blue: #0066cc;
    --starlink-orange: #ff6b35;
    --light: #f8f9fa;
    --dark: #1a3a6c;
    --gray: #6c757d;
    --white: #ffffff;
    --whatsapp: #25D366;
}

/* Reset et styles globaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(26, 58, 108, 0.95);
    padding: 15px 0;
    width: 100%;
    transition: all 0.4s ease-out;
}

#main-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

#main-header.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Boutons */
.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-whatsapp {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-whatsapp-large {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    padding: 15px 40px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-full {
    width: 100%;
}

/* Hero Section Starlink */
.hero-starlink {
    background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(15, 33, 61, 0.9)), url('images/starlink-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 120px 0;
    text-align: center;
    position: relative;
}

.hero-starlink h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-starlink {
    padding: 60px 0;
    background: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--starlink-blue);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Kits Section */
.kits-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--gray);
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.kit-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.kit-popular {
    border-color: var(--starlink-blue);
}

.kit-business {
    border-color: var(--accent);
}

.kit-custom {
    border-color: var(--gray);
}

.kit-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--starlink-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.kit-business .kit-badge {
    background: var(--accent);
}

.kit-custom .kit-badge {
    background: var(--gray);
}

.kit-header {
    text-align: center;
    margin-bottom: 30px;
}

.kit-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.kit-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--starlink-blue);
}

.kit-features {
    margin-bottom: 30px;
}

.kit-features ul {
    list-style: none;
}

.kit-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kit-features i {
    color: var(--starlink-blue);
}

/* Services Section */
.services-starlink {
    padding: 80px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--starlink-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-starlink {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--starlink-blue);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-starlink {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--starlink-blue) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.starlink-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.animated-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--dark);
    text-decoration: none;
    padding: 15px 30px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-mobile a:hover {
    background-color: var(--light);
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links, .header-actions {
        display: none;
    }
    
    .hero-starlink h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .kits-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-starlink {
        padding: 150px 0 80px 0;
    }
    
    .hero-starlink h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}