* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #4A90E2;
    --blue-dark: #2E6BB8;
    --blue-light-ui: #EAF2FB;
    --blue-ultra-light: #F5F9FD;
    --bg-general: #F7F9FB;
    --text-primary: #1F1F23;
    --text-secondary: #5F6368;
    --white: #FFFFFF;
    --footer-dark: #1A2332;
    --border-light: #E1E8EF;
    --shadow-sm: 0 2px 8px rgba(74, 144, 226, 0.08);
    --shadow-md: 0 8px 24px rgba(74, 144, 226, 0.12);
    --shadow-lg: 0 16px 48px rgba(74, 144, 226, 0.16);
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    background: var(--bg-general);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* TOP BAR */
.top-bar {
    background: var(--blue-primary);
    padding: 12px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.top-bar-info {
    display: flex;
    gap: 32px;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.top-bar-cta {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.top-bar-cta:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* NAVIGATION */
.navbar {
    background: var(--white);
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
    gap: 12px;
        text-decoration: none;
    }


.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--blue-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-phone {
    background: var(--blue-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-phone:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #5BA3E8 0%, #4A90E2 50%, #3A7FD5 100%);
    padding: 120px 80px 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero h1 .highlight {
    display: block;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.75;
    max-width: 560px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white);
    color: var(--blue-primary);
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-family: 'DM Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-illustration {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.car-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.car-illustration {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* CAR SVG */
.car-shape {
    fill: var(--white);
    opacity: 0.98;
}

.car-window {
    fill: #C8DFEF;
}

.car-wheel {
    fill: #2C3E50;
}

.car-accent {
    fill: var(--blue-primary);
}

/* STATS BAR */
.stats-bar {
    background: var(--white);
    padding: 48px 80px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    margin-top: -60px;
    border-radius: 20px;
    margin-left: 80px;
    margin-right: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--blue-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* SERVICES SECTION */
.services {
    padding: 120px 80px;
    background: var(--bg-general);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--blue-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-description {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 52px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue-light-ui) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-primary);
}

.service-card:hover::before {
    opacity: 0.3;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--blue-light-ui) 0%, #F0F6FC 100%);
    border-color: var(--blue-primary);
    border-width: 2px;
}

.service-card.featured .service-tag {
    display: inline-block;
    background: var(--blue-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--blue-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.25);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    box-shadow: 0 12px 28px rgba(74, 144, 226, 0.35);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-details {
    list-style: none;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.service-details li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.service-details li:last-child {
    border-bottom: none;
}

.service-details svg {
    width: 18px;
    height: 18px;
    fill: var(--blue-primary);
    flex-shrink: 0;
}

/* TRUST SECTION */
.trust {
    padding: 120px 80px;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.trust-card {
    background: var(--bg-general);
    border-radius: 20px;
    padding: 44px 36px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light-ui);
    background: var(--white);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--blue-light-ui) 0%, var(--blue-ultra-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.trust-card:hover .trust-icon {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    transform: scale(1.1);
}

.trust-card:hover .trust-icon svg {
    fill: var(--white);
}

.trust-icon svg {
    width: 42px;
    height: 42px;
    fill: var(--blue-primary);
    transition: fill 0.4s ease;
}

.trust-card h4 {
    font-size: 21px;
    margin-bottom: 14px;
    color: var(--text-primary);
    font-weight: 700;
}

.trust-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* PROCESS SECTION */
.process {
    padding: 120px 80px;
    background: var(--blue-ultra-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--blue-primary) 100%);
    opacity: 0.2;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--white);
    border: 4px solid var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-primary);
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.2);
}

.process-step h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* VSL DETAILED SECTION */
.vsl-detailed {
    padding: 120px 80px;
    background: var(--white);
}

.vsl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
}

.vsl-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
}

.vsl-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.vsl-highlight-box {
    background: var(--blue-light-ui);
    border-left: 4px solid var(--blue-primary);
    padding: 28px 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.vsl-highlight-box h4 {
    font-size: 19px;
    color: var(--blue-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.vsl-highlight-box p {
    font-size: 15px;
    color: var(--text-primary);
    margin: 0;
}

.vsl-checklist {
    list-style: none;
    margin-top: 28px;
}

.vsl-checklist li {
    padding: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.vsl-checklist li:last-child {
    border-bottom: none;
}

.vsl-checklist svg {
    width: 24px;
    height: 24px;
    fill: var(--blue-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.vsl-links {
    background: var(--bg-general);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-light);
}

.vsl-links h4 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
}

.link-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.link-card:hover {
    border-color: var(--blue-primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.link-card h5 {
    font-size: 16px;
    color: var(--blue-primary);
    margin-bottom: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.external-icon {
    width: 16px;
    height: 16px;
    fill: var(--blue-primary);
}

/* TEAM SECTION */
.team {
    padding: 120px 80px;
    background: var(--bg-general);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-light);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-primary);
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--blue-light-ui) 0%, var(--blue-ultra-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--white);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.2);
    position: relative;
}

.team-avatar::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--blue-primary);
    border-radius: 50%;
    bottom: 5px;
    right: 5px;
    border: 4px solid var(--white);
}

.team-avatar svg {
    width: 64px;
    height: 64px;
    fill: var(--blue-primary);
}

.team-card h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.team-role {
    font-size: 16px;
    color: var(--blue-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.team-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* BOOKING SECTION */
.booking {
    padding: 120px 80px;
    background: linear-gradient(135deg, var(--blue-light-ui) 0%, var(--blue-ultra-light) 100%);
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.booking-container {
    background: var(--white);
    border-radius: 28px;
    padding: 72px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

label .required {
    color: var(--blue-primary);
}

input, select, textarea {
    padding: 18px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-primary);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-submit {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 22px 48px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 16px;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.4);
}

.form-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}
.form-required-note {
    font-size: 14px;
    color: #c52a2a;
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: var(--footer-dark);
    padding: 100px 80px 40px;
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
}

.footer-brand p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-phone-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-phone-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-phone {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    display: block;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--blue-primary);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ICON STYLES */
.icon-svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.icon-sm {
    width: 18px;
    height: 18px;
}

#js-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    width: 50%;
    background-color: var(--blue-dark);
    z-index: 101;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: none;
    background-color: var(--blue-primary);
    color: var(--blue-light-ui);
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

#backToTop.visible {
    display: block;
}

#backToTop:hover {
    background-color: var(--blue-dark);
}

/* ========================================
   CSS À AJOUTER DANS LA BALISE <style>
   (Remplacer tout le code @media existant)
   ======================================== */

/* MENU BURGER */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--blue-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}
/* RESPONSIVE BREAKPOINTS */

/* Tablettes et petits écrans (1024px et moins) */
@media (max-width: 1024px) {
    .container,
    .navbar-content,
    .top-bar-content,
    .hero-container,
    .stats-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-illustration {
        display: flex;
        justify-content: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-item {
        border-right: none;
        padding: 20px;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border-light);
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Trust */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    /* VSL */
    .vsl-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }


    /* Formulaire */
    .booking-container {
        padding: 50px 40px;
    }
}

/* Mobile (768px et moins) */
@media (max-width: 768px) {
    /* Top bar - simplifier */
    .top-bar-info {
        gap: 15px;
        font-size: 12px;
    }

    .top-bar-item svg {
        width: 14px;
        height: 14px;
    }

    .top-bar-cta {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* Navigation mobile */
    .navbar-content {
        padding: 15px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link::after {
        display: none;
    }

    .nav-phone {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Overlay pour fermer le menu */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Conteneurs */
    .container,
    .navbar-content,
    .top-bar-content,
    .hero-container,
    .stats-container,
    .services-grid,
    .trust-grid,
    .process-steps,
    .vsl-content,
    .team-grid,
    .booking-wrapper,
    .footer-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    /* Hero */
    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .car-illustration {
        max-width: 100%;
    }

    /* Stats */
    .stats-bar {
        margin-left: 40px;
        margin-right: 40px;
    }

    /* Stats bar */
    .stats-bar {
        margin-left: 20px;
        margin-right: 20px;
        padding: 30px 20px;
        margin-top: -40px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        padding: 0 10px;
    }



    /* Section headers */
    .section-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .section-description {
        font-size: 16px;
    }

    .section-label {
        font-size: 12px;
    }

    /* Services */
    .services-grid {
        max-width: 100%;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 35px 25px;
    }

    /* ========================================
   CSS RESPONSIVE POUR SECTION PROCESS
   À ajouter dans ton fichier CSS (section responsive mobile)
   ======================================== */

    /* TABLETTE (1024px et moins) */
    @media (max-width: 1024px) {
        .process {
            padding: 80px 40px;
        }

        .process-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        /* Garde la ligne entre étapes horizontales uniquement */
        .process-steps::before {
            top: 40px;
            left: 25%;
            right: 25%;
        }
    }

    /* MOBILE (768px et moins) */
    @media (max-width: 768px) {
        .process {
            padding: 60px 20px;
        }

        .process-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 35px 25px;
            margin-top: 40px;
        }

        /* Supprime la ligne pour mobile */
        .process-steps::before {
            display: none;
        }

        .process-step {
            text-align: center;
        }

        /* Numéros légèrement plus petits */
        .process-number {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            font-size: 28px;
            border: 3px solid var(--blue-primary);
        }

        .process-step h4 {
            font-size: 17px;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 14px;
            line-height: 1.5;
        }
    }

    /* TRÈS PETIT MOBILE (480px et moins) */
    @media (max-width: 480px) {
        .process {
            padding: 50px 15px;
        }

        .process-steps {
            gap: 30px 20px;
        }

        .process-number {
            width: 65px;
            height: 65px;
            margin: 0 auto 18px;
            font-size: 26px;
        }

        .process-step h4 {
            font-size: 16px;
        }

        .process-step p {
            font-size: 13px;
        }
    }

    /* VSL */
    .vsl-text h3 {
        font-size: 26px;
    }

    .vsl-text p {
        font-size: 16px;
    }

    .vsl-links {
        padding: 30px 25px;
    }

    /* Team */
    .team-grid {
        max-width: 100%;
    }

    .team-card {
        padding: 40px 30px;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
    }

    .team-avatar svg {
        width: 56px;
        height: 56px;
    }

    /* Booking */
    .booking-container {
        padding: 40px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ========================================
   CSS RESPONSIVE FOOTER COMPACT
   À ajouter dans ton fichier CSS (section responsive mobile uniquement)
   ======================================== */


        .footer {
            padding: 40px 20px 20px;
        }

        .footer-main {
            grid-template-columns: 1fr;
            gap: 25px;
            margin-bottom: 25px;
            padding-bottom: 25px;
        }

        /* Brand avec téléphone - version compacte */
        .footer-brand h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 13px;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .footer-brand p:first-of-type {
            display: none; /* Cache le long texte descriptif */
        }

        /* Téléphone en mode compact */
        .footer-phone-box {
            padding: 16px 20px;
            margin-top: 15px;
        }

        .footer-phone-label {
            font-size: 11px;
            margin-bottom: 6px;
        }

        .footer-phone {
            font-size: 24px;
        }

        /* Sections en accordéon visuel compact */
        .footer-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 15px;
        }

        .footer-section h4 {
            font-size: 14px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 15px;
        }

        .footer-links li {
            margin-bottom: 0;
            display: inline;
        }

        .footer-links a {
            font-size: 13px;
            display: inline;
            padding: 4px 0;
        }

        .footer-links a:hover {
            transform: none;
            color: var(--blue-primary);
        }

        /* Footer bottom ultra compact */
        .footer-bottom {
            padding-top: 15px;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .footer-copyright {
            font-size: 11px;
            line-height: 1.5;
            text-align: center;
            order: 2;
        }

        .footer-legal {
            order: 1;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-legal a {
            font-size: 12px;
        }

        /* Cache les réseaux sociaux s'ils sont visibles */
        .footer-social {
            display: none;
        }
    }

    /* TRÈS PETIT MOBILE (480px et moins) */
    @media (max-width: 480px) {
        .footer {
            padding: 30px 15px 15px;
        }

        .footer-main {
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .footer-brand h3 {
            font-size: 22px;
        }

        .footer-phone {
            font-size: 22px;
        }

        .footer-section h4 {
            font-size: 13px;
        }

        .footer-links a {
            font-size: 12px;
        }

        .footer-legal {
            flex-direction: column;
            gap: 8px;
        }

        .footer-copyright {
            font-size: 10px;
        }
    }

/* Très petits écrans (480px et moins) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 30px;
        font-size: 16px;
    }

    .booking-container {
        padding: 30px 20px;
    }
}

/* BOUTON RETOUR */
#backToTop {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
}

/* ===============================
   FORMULAIRE RESPONSIVE AMÉLIORÉ
   =============================== */

/* Base : meilleure lisibilité */
.form-grid {
    max-width: 700px;
    margin: 0 auto;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
}

/* Espacement général */
.form-group {
    gap: 6px;
}


/* Tablette */
@media (max-width: 900px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-container {
        padding: 45px 35px;
    }

}


/* Mobile */
@media (max-width: 600px) {

    /* Carte formulaire */
    .booking-container {
        padding: 28px 20px;
        border-radius: 20px;
    }

    /* Formulaire */
    .form-grid {
        gap: 18px;
    }

    label {
        font-size: 14px;
    }

    input,
    select,
    textarea {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

    textarea {
        min-height: 120px;
    }

    /* Bouton */
    .btn-submit {
        padding: 18px;
        font-size: 16px;
        border-radius: 10px;
    }

    /* Note */
    .form-note {
        font-size: 13px;
        margin-top: 14px;
    }

}


/* Très petit mobile */
@media (max-width: 400px) {

    .booking-container {
        padding: 22px 16px;
    }

    input,
    select,
    textarea {
        font-size: 14px;
    }

}
/* Animation focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: scale(1.01);
}
