/* ========== RESET & VARIABLES ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0b1a33;
    --primary-light: #1a2f4f;
    --primary-dark: #060f1c;
    --accent: #00d4ff;
    --accent-hover: #00b8e6;
    --accent-glow: rgba(0, 212, 255, 0.25);
    --text-light: #f0f6ff;
    --text-muted: #94a9c9;
    --text-dark: #0b1a33;
    --bg-light: #f4f8ff;
    --bg-card: #ffffff;
    --shadow: 0 20px 60px rgba(11, 26, 51, 0.12);
    --shadow-hover: 0 30px 80px rgba(11, 26, 51, 0.18);
    --radius: 18px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --max-width: 1200px;
    --nav-height: 76px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 212, 255, 0.4);
    background: var(--accent-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 212, 255, 0.4);
    background: var(--accent-hover);
}

.btn-white {
    background: #fff;
    color: var(--primary);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ========== HEADER / NAV ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 26, 51, 0.85);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    height: var(--nav-height);
}

.header.scrolled {
    background: rgba(11, 26, 51, 0.96);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.5px;
}
.logo i {
    color: var(--accent);
    font-size: 1.9rem;
}
.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-links a:hover {
    color: #fff;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active {
    color: #fff;
}
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.12;
    color: #fff;
    letter-spacing: -1px;
}
.hero-content h1 .highlight {
    color: var(--accent);
    position: relative;
}
.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 24px 0 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stats .stat h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.hero-stats .stat h3 span {
    color: var(--accent);
}
.hero-stats .stat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Hero visuel */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.hero-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.2);
}

.hero-card .card-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.hero-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.hero-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.hero-card .badge-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-card .badge-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e8f5;
    font-size: 0.9rem;
}
.hero-card .badge-list li i {
    color: var(--accent);
    font-size: 1rem;
    width: 20px;
}

/* floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.3;
}
.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -80px;
    right: -80px;
}
.orb-2 {
    width: 200px;
    height: 200px;
    background: #6366f1;
    bottom: -40px;
    left: -40px;
}

/* ========== SECTION TITLES ========== */
.section {
    padding: 90px 0;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-header .tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.section-header h2 span {
    color: var(--accent);
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 14px;
    line-height: 1.7;
}

/* ========== SERVICES ========== */
.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 36px 30px 40px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #6366f1);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 212, 255, 0.15);
}
.service-card:hover::before {
    opacity: 1;
}

.service-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    transition: var(--transition);
}
.service-card .learn-more i {
    transition: var(--transition);
}
.service-card:hover .learn-more i {
    transform: translateX(6px);
}

/* ========== BOOKING ========== */
.booking {
    background: linear-gradient(160deg, var(--primary-dark), var(--primary));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.booking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.booking .section-header h2 {
    color: #fff;
}
.booking .section-header p {
    color: var(--text-muted);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.booking-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.booking-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}
.booking-info .feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.booking-info .feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #e0e8f5;
    font-size: 0.95rem;
}
.booking-info .feature-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 28px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.booking-form .form-group {
    margin-bottom: 20px;
}
.booking-form label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: #c8d6f0;
    margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background: rgba(255, 255, 255, 0.08);
}
.booking-form select option {
    background: var(--primary);
    color: #fff;
}
.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}
.booking-form .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 212, 255, 0.1);
}
.testimonial-card .stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-card .author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}
.testimonial-card .author .name {
    font-weight: 600;
    font-size: 0.95rem;
}
.testimonial-card .author .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== CONTACT / CTA ========== */
.cta-section {
    background: linear-gradient(160deg, var(--primary), var(--primary-light));
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}
.cta-section .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    position: relative;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: var(--text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.8;
}
.footer-col h4 {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 18px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-socials a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    transition: var(--transition);
}
.footer-bottom a:hover {
    color: #fff;
}

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.modal-overlay.open {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: var(--radius);
    max-width: 520px;
    width: 100%;
    padding: 40px 36px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.35s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal .close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}
.modal .close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}
.modal h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 6px;
}
.modal p {
    color: var(--text-muted);
    margin-bottom: 24px;
}
.modal .form-group {
    margin-bottom: 18px;
}
.modal .form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}
.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dce3ed;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #f8faff;
}
.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    outline: none;
}
.modal .form-group textarea {
    min-height: 80px;
    resize: vertical;
}
.modal .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-dark);
    color: #fff;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateY(120px);
    opacity: 0;
    transition: var(--transition);
    z-index: 3000;
    border-left: 4px solid var(--accent);
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast i {
    color: var(--accent);
    font-size: 1.4rem;
}
.toast .toast-msg {
    font-weight: 500;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .hero-card {
        max-width: 100%;
    }
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 66px;
    }
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(11, 26, 51, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 30px 24px 40px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        align-items: stretch;
        text-align: center;
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
    }
    .nav-links .nav-cta {
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    .nav-cta-desktop {
        display: none !important;
    }
    .hamburger {
        display: flex;
    }

    .hero {
        padding: 110px 0 70px;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-stats .stat h3 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .modal {
        padding: 28px 20px;
    }
    .modal h2 {
        font-size: 1.4rem;
    }

    .toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 26px;
        font-size: 0.9rem;
    }
    .hero-card {
        padding: 24px 20px;
    }
    .hero-card .badge-list li {
        font-size: 0.8rem;
    }
}
/* ========== PAGE SERVICE DÉTAIL (à ajouter à la fin de style.css) ========== */
.service-detail-hero {
    padding: 140px 0 70px;
    background: linear-gradient(160deg, var(--primary-dark), var(--primary));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.service-detail-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.service-detail-breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}
.service-detail-breadcrumb a:hover {
    color: var(--accent);
}
.service-detail-breadcrumb .separator {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.service-detail-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.service-icon-large {
    width: 90px;
    height: 90px;
    background: var(--accent-glow);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--accent);
    margin-bottom: 8px;
}
.service-detail-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}
.service-detail-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
}
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 20px;
}
.detail-left h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.detail-left > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 0;
}
.feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 24px;
}
.detail-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid #e9eef5;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}
.detail-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.detail-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.detail-card ul li i {
    color: var(--accent);
    font-size: 1rem;
}
.detail-card .divider {
    height: 1px;
    background: #dce3ed;
    margin: 20px 0;
}
.detail-card .detail-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.detail-cta-mobile {
    display: none;
    margin-top: 30px;
}
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .detail-card {
        position: relative;
        top: 0;
    }
    .detail-cta-mobile {
        display: block;
    }
}
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 110px 0 50px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
    }
}