:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --background-light: #FFFDF0;
    --text-dark: #1A1A1A;
    --text-light: #FFD700; /* Jaune pour fond foncé */
    --text-on-light: #000000; /* Noir pour fond clair */
    --transition-speed: 0.3s;
    --border-radius: 15px;
    --box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #FFD700 0%, #000000 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

header.header-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity var(--transition-speed) ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo span {
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: 50px;
    transition: transform var(--transition-speed) ease;
}

.logo-img:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFA500 100%);
    color: var(--secondary-color);
    padding: 4rem 2rem 6rem;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-illustration {
    width: 100%;
    max-width: 800px;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: bold;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    animation: fadeInUp 1s ease;
}

/* Feature Sections */
.feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    transition: all var(--transition-speed) ease;
    background: transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-section:hover {
    transform: translateY(-10px) rotateX(2deg);
}

.feature-section:nth-child(odd) {
    color: var(--text-light);
}

.feature-section:nth-child(even) {
    color: var(--text-light);
    flex-direction: row;
}

.feature-section:nth-child(even) .text {
    text-align: right;
    padding-left: 1rem;
}

.feature-section:nth-child(odd) .text {
    padding-right: 1rem;
}

.feature-section .text {
    flex: 1;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-section .text h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.feature-section img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) ease;
    transform: translateZ(20px);
}

.feature-section img:hover {
    transform: translateZ(20px) scale(1.08);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-section .text {
    flex: 1;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
}

.feature-section .text h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery {
    padding: 4rem 2rem;
    background: transparent;
}

.gallery h1 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery p {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--primary-color);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all var(--transition-speed) ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    color: var(--primary-color);
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Legal Section */
.legal {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    margin: 2rem;
    box-shadow: var(--box-shadow);
}

.legal h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.legal h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.reviews-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slider de témoignages */
.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 60px;
}

.testimonials-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
    min-height: 200px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: bold;
    text-align: right;
    font-size: 0.95rem;
}

.testimonials-prev,
.testimonials-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    z-index: 10;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-prev {
    left: 0;
}

.testimonials-next {
    right: 0;
}

/* Widget Google Maps */
.maps-title {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
}

.google-maps-widget {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
}

.google-maps-widget iframe {
    display: block;
    border-radius: var(--border-radius);
    margin: 0 auto;
}

.reviews-note {
    text-align: center;
    color: var(--text-light);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem auto 0;
    max-width: 800px;
    line-height: 1.8;
}

.reviews-note a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.reviews-note a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-contact h3,
.footer-links h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-contact {
    line-height: 2;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        position: relative;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    nav a {
        display: block;
        padding: 1.2rem 2rem;
        border-radius: 0;
        width: 100%;
        text-align: left;
    }
    
    nav a:hover {
        background-color: rgba(255, 215, 0, 0.1);
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem 4rem;
    }
    
    .hero-illustration {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
    }
    
    .feature-section {
        flex-direction: column !important;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .feature-section img {
        order: -1;
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .feature-section .text {
        order: 1;
    }
    
    .feature-section:nth-child(even) .text,
    .feature-section:nth-child(odd) .text {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-slider {
        padding: 0 50px;
    }
    
    .testimonial-card {
        min-width: 180px;
        max-width: 280px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .testimonials-slider {
        padding: 0 45px;
        max-width: 100%;
        overflow: visible;
    }
    
    .testimonials-container {
        padding: 1rem 0;
        overflow-x: auto;
    }
    
    .testimonial-card {
        min-width: 95%;
        max-width: 95%;
        padding: 1.2rem;
        min-height: auto;
        box-sizing: border-box;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.85rem;
    }
    
    .testimonials-prev,
    .testimonials-next {
        font-size: 16px;
        padding: 0;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonials-prev {
        left: 5px;
    }
    
    .testimonials-next {
        right: 5px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 10px;
    }
    
    .reviews-slider {
        padding: 0 50px;
    }
    
    .review-card {
        min-width: 280px;
    }
    
    .reviews-prev,
    .reviews-next {
        font-size: 18px;
        padding: 8px 12px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.services-area h2 {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.service-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.intervention-zone {
    text-align: center;
    margin-bottom: 3rem;
}

.intervention-zone h2 {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.intervention-zone p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.city {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
}

.city:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.opening-hours {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
}

.opening-hours h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.day-hours:last-child {
    border-bottom: none;
}

.day {
    color: var(--text-light);
    font-weight: 500;
}

.hours {
    color: var(--primary-color);
    font-weight: bold;
}

.contact-cta {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
}

.contact-cta h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
}

.cta-btn.primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .cities-list {
        gap: 0.5rem;
    }
    
    .city {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}