/* Variables */
:root {
    /* Couleurs principales */
    --primary: 205 90% 40%; /* #0074CC */
    --primary-dark: 205 90% 30%; /* #005a9e */
    --primary-light: 205 90% 50%; /* #0088FF */
    --secondary: 225 73% 57%; /* #4560DB */
    --accent: 15 100% 55%; /* #FF5533 */
    
    /* Tons neutres */
    --dark: 210 29% 24%; /* #2C3E50 */
    --medium: 210 14% 53%; /* #7B8A9A */
    --light: 210 14% 89%; /* #D9E2EC */
    --lighter: 210 14% 97%; /* #F5F8FA */
    
    /* États */
    --success: 152 69% 31%; /* #147D4F */
    --warning: 45 100% 51%; /* #FFC107 */
    --danger: 354 70% 54%; /* #DC3545 */
    --info: 200 100% 35%; /* #0097C8 */
    
    /* Typo */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    
    /* Autres */
    --border-radius: 4px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --container-width: 1200px;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: hsl(var(--dark));
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: hsl(var(--primary-dark));
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: hsl(var(--primary));
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #fff;
    margin-right: 20px;
}

.contact-info a:hover {
    color: hsl(var(--light));
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: hsl(var(--light));
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    color: hsl(var(--dark));
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: hsl(var(--primary));
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu .active a::after {
    width: 100%;
}

.nav-menu .cta {
    margin-left: 20px;
}

.nav-menu .cta a::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: hsl(var(--dark));
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: hsl(var(--dark));
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.btn-primary:hover {
    color: #fff;
    background-color: hsl(var(--primary-dark));
    border-color: hsl(var(--primary-dark));
}

.btn-secondary {
    color: #fff;
    background-color: hsl(var(--secondary));
    border-color: hsl(var(--secondary));
}

.btn-secondary:hover {
    color: #fff;
    background-color: hsl(var(--secondary), 65%);
    border-color: hsl(var(--secondary), 65%);
}

.btn-accent {
    color: #fff;
    background-color: hsl(var(--accent));
    border-color: hsl(var(--accent));
}

.btn-accent:hover {
    color: #fff;
    background-color: hsl(var(--accent), 45%);
    border-color: hsl(var(--accent), 45%);
}

.btn-outline {
    color: hsl(var(--primary));
    background-color: transparent;
    border-color: hsl(var(--primary));
}

.btn-outline:hover {
    color: #fff;
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.btn-link {
    color: hsl(var(--primary));
    background-color: transparent;
    border-color: transparent;
    text-decoration: underline;
    padding: 10px 0;
}

.btn-link:hover {
    color: hsl(var(--primary-dark));
    text-decoration: underline;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://pixabay.com/get/g220d0bf91f658f895ad83a9b8ffa322c57ce68d7778da6eadb870f0d913c44f2681cce5a542613acff88f1d42075c4457054e47c0e41c40d976ad58020cbb813_1280.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(var(--dark));
}

.section-subtitle {
    font-size: 18px;
    color: hsl(var(--medium));
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: hsla(var(--primary), 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: hsl(var(--primary));
    font-size: 24px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(var(--dark));
}

.service-description {
    color: hsl(var(--medium));
    margin-bottom: 20px;
}

.service-price {
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 15px;
    font-size: 18px;
}

.service-link {
    margin-top: 15px;
    display: inline-block;
}

/* Features */
.features {
    background-color: hsl(var(--lighter));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 40px;
    color: hsl(var(--primary));
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(var(--dark));
}

.feature-description {
    color: hsl(var(--medium));
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.testimonial-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 30px;
    text-align: center;
    margin: 10px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: hsl(var(--dark));
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 50px;
    color: hsla(var(--primary), 0.1);
    position: absolute;
    line-height: 0.8;
}

.testimonial-text::before {
    top: 0;
    left: -15px;
}

.testimonial-text::after {
    bottom: -10px;
    right: -15px;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(var(--dark));
}

.testimonial-role {
    color: hsl(var(--medium));
    font-size: 14px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid hsl(var(--light));
    color: hsl(var(--primary));
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #fff;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: hsla(var(--primary), 0.05);
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 1000px;
}

/* Forms */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: hsl(var(--dark));
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    color: hsl(var(--dark));
    background-color: #fff;
    border: 1px solid hsl(var(--light));
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: hsl(var(--primary));
    outline: none;
    box-shadow: 0 0 0 3px hsla(var(--primary), 0.2);
}

.form-control::placeholder {
    color: hsl(var(--medium), 70%);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    font-size: 14px;
    color: hsl(var(--medium));
    margin-top: 5px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-check-label {
    font-size: 15px;
}

.form-buttons {
    margin-top: 30px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}

.alert-success {
    color: hsl(var(--success));
    background-color: hsla(var(--success), 0.1);
    border-color: hsla(var(--success), 0.2);
}

.alert-danger {
    color: hsl(var(--danger));
    background-color: hsla(var(--danger), 0.1);
    border-color: hsla(var(--danger), 0.2);
}

.alert-warning {
    color: hsl(var(--warning));
    background-color: hsla(var(--warning), 0.1);
    border-color: hsla(var(--warning), 0.2);
}

.alert-info {
    color: hsl(var(--info));
    background-color: hsla(var(--info), 0.1);
    border-color: hsla(var(--info), 0.2);
}

/* Call to action */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://pixabay.com/get/g87bfb9700c3b0e975b7a10e475fd125d677c1764b5face7da8bbd5106861aa14eb2a8cd49032f3f1a83606bd6e0fa44b723645341e3a399ca10aa8e093ff1bd2_1280.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: hsl(var(--medium));
}

/* Footer */
.main-footer {
    background-color: hsl(var(--dark));
    color: #fff;
    margin-top: auto;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid hsla(var(--light), 0.1);
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: hsl(var(--primary-light));
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: hsla(0, 0%, 0%, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    opacity: 0.7;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #fff;
    opacity: 0.7;
    transition: var(--transition);
}

.legal-links a:hover {
    opacity: 1;
    color: hsl(var(--primary-light));
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

/* About page */
.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(var(--dark));
}

.about-content p {
    margin-bottom: 15px;
}

.about-list {
    margin-top: 20px;
}

.about-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.about-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: hsl(var(--primary));
    position: absolute;
    left: 0;
}

/* Map */
.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Contact info */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: hsla(var(--primary), 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: hsl(var(--primary));
    font-size: 28px;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(var(--dark));
}

.contact-card-content {
    color: hsl(var(--medium));
}

.contact-card-content a {
    display: block;
    margin-bottom: 5px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content h3 {
    font-size: 18px;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Service detail */
.service-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: start;
}

.service-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(var(--dark));
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 20px;
}

.service-detail-features {
    margin: 30px 0;
}

.service-detail-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-detail-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: hsl(var(--primary));
    position: absolute;
    left: 0;
}

/* Price tables */
.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-table {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.price-table:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-table-header {
    background-color: hsl(var(--primary));
    color: #fff;
    padding: 20px;
    text-align: center;
}

.price-table-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-table-price {
    font-size: 36px;
    font-weight: 700;
}

.price-table-period {
    font-size: 14px;
    opacity: 0.8;
}

.price-table-content {
    padding: 30px;
}

.price-table-features {
    margin-bottom: 30px;
}

.price-table-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.price-table-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: hsl(var(--primary));
    position: absolute;
    left: 0;
}

.price-table-footer {
    text-align: center;
    padding: 0 30px 30px;
}

/* Booking steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: hsl(var(--light));
    z-index: 1;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.booking-step-number {
    width: 40px;
    height: 40px;
    background-color: hsl(var(--light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.booking-step.active .booking-step-number {
    background-color: hsl(var(--primary));
    color: #fff;
}

.booking-step-label {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Delivery zones */
.delivery-zones {
    margin-top: 40px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.zone-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    border-left: 4px solid hsl(var(--primary));
}

.zone-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(var(--dark));
}

.zone-areas {
    padding-left: 20px;
}

.zone-areas li {
    margin-bottom: 5px;
    position: relative;
}

.zone-areas li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: hsl(var(--primary));
}

/* Terms and policy pages */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: hsl(var(--dark));
}

.terms-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: hsl(var(--dark));
}

.terms-content p {
    margin-bottom: 15px;
}

.terms-content ul, 
.terms-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.terms-content ul li, 
.terms-content ol li {
    margin-bottom: 8px;
}

.terms-content ul {
    list-style-type: disc;
}

.terms-content ol {
    list-style-type: decimal;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .booking-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .booking-steps::before {
        display: none;
    }
    
    .booking-step {
        flex-direction: row;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: var(--shadow-md);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 10px 0;
    }
    
    .nav-menu .cta {
        margin: 10px 0 0 0;
        width: 100%;
    }
    
    .nav-menu .cta a {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info a {
        margin-right: 0;
    }
    
    .social-links a {
        margin-left: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
