/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: #8a7860;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn.active {
    background: #b8956a;
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(184, 149, 106, 0.1);
}

.language-switcher span {
    color: #8a7860;
    font-size: 12px;
}

/* Luxury Color Palette */
:root {
    --primary-black: #1a1a1a;
    --soft-black: #2c2c2c;
    --warm-white: #fefefe;
    --cream: #f8f6f3;
    --soft-cream: #f5f3f0;
    --champagne: #f7f1e8;
    --rose-gold: #d4a574;
    --soft-gold: #c9a96e;
    --muted-gold: #b8956a;
    --light-grey: #f0f0f0;
    --border-light: #e8e6e3;
    --text-muted: #8a8a8a;
    --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.04);
    --shadow-elegant: 0 8px 40px rgba(0, 0, 0, 0.06);
}

/* Typography */
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--primary-black);
    margin: 0;
}

.brand-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--muted-gold);
    margin: 0;
    text-transform: uppercase;
}

h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--primary-black);
    line-height: 1.3;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--soft-black);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 100%;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.floating-cta.show {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta.hide {
    transform: translateY(100px);
    opacity: 0;
}

.cta-button {
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    color: #2c2c2c;
    border: 2px solid #b8956a;
    padding: 18px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    animation: creamGlow 3s ease-in-out infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f5f3f0 0%, #f8f6f3 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 149, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: #c9a96e;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Top Elements */
.hero-top-elements {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.brand {
    text-align: left;
}

/* Foksal Emblem */
.foksal-emblem {
    height: 80px;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.5s forwards;
    margin-top: 40px;
}

.emblem-img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(184, 149, 106, 0.2));
    transition: all 0.3s ease;
}

.emblem-img:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 15px rgba(184, 149, 106, 0.3));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    align-items: center;
    padding: 0 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: var(--champagne);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    box-shadow: var(--shadow-subtle);
}

.hero-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
}

.doctor-placeholder {
    width: 280px;
    height: 350px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    line-height: 1.2;
}

.hero-cta-button {
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    color: #2c2c2c;
    border: 2px solid #b8956a;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin: 2rem auto;
    display: block;
    position: relative;
    overflow: hidden;
    animation: creamGlow 3s ease-in-out infinite;
}



/* 10 CLASSY BUTTON VARIATIONS - Choose your favorite! */

/* VARIATION 1: Elegant Black */
.hero-cta-button.variation-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #d4a574;
    border: 2px solid #d4a574;
    animation: elegantGlow 3s ease-in-out infinite;
}
@keyframes elegantGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4), inset 0 1px 0 rgba(212, 165, 116, 0.1); }
    50% { box-shadow: 0 8px 25px rgba(26, 26, 26, 0.6), inset 0 1px 0 rgba(212, 165, 116, 0.2); }
}

/* VARIATION 2: Cream Luxury */
.hero-cta-button.variation-2 {
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    color: #2c2c2c;
    border: 2px solid #b8956a;
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: creamGlow 3s ease-in-out infinite;
}
@keyframes creamGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(184, 149, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8); }
    50% { box-shadow: 0 8px 25px rgba(184, 149, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
}

/* VARIATION 3: Deep Navy */
.hero-cta-button.variation-3 {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: #d4a574;
    border: 2px solid #d4a574;
    animation: navyGlow 3s ease-in-out infinite;
}
@keyframes navyGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4), inset 0 1px 0 rgba(212, 165, 116, 0.1); }
    50% { box-shadow: 0 8px 25px rgba(30, 58, 95, 0.6), inset 0 1px 0 rgba(212, 165, 116, 0.2); }
}

/* VARIATION 4: Charcoal Modern */
.hero-cta-button.variation-4 {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: #f3f4f6;
    border: 2px solid #9ca3af;
    animation: charcoalGlow 3s ease-in-out infinite;
}
@keyframes charcoalGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(55, 65, 81, 0.4), inset 0 1px 0 rgba(156, 163, 175, 0.1); }
    50% { box-shadow: 0 8px 25px rgba(55, 65, 81, 0.6), inset 0 1px 0 rgba(156, 163, 175, 0.2); }
}

/* VARIATION 5: Champagne Subtle */
.hero-cta-button.variation-5 {
    background: linear-gradient(135deg, #f7f1e8 0%, #f0e6d2 100%);
    color: #5d4e37;
    border: 2px solid #c9a96e;
    animation: champagneGlow 3s ease-in-out infinite;
}
@keyframes champagneGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(201, 169, 110, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
    50% { box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8); }
}

/* VARIATION 6: Bordeaux Rich */
.hero-cta-button.variation-6 {
    background: linear-gradient(135deg, #722f37 0%, #9c4146 100%);
    color: #f8f6f3;
    border: 2px solid #d4a574;
    animation: bordeauxGlow 3s ease-in-out infinite;
}
@keyframes bordeauxGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(114, 47, 55, 0.4), inset 0 1px 0 rgba(212, 165, 116, 0.1); }
    50% { box-shadow: 0 8px 25px rgba(114, 47, 55, 0.6), inset 0 1px 0 rgba(212, 165, 116, 0.2); }
}

/* VARIATION 7: Sage Sophisticated */
.hero-cta-button.variation-7 {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: #f8f6f3;
    border: 2px solid #d1d5db;
    animation: sageGlow 3s ease-in-out infinite;
}
@keyframes sageGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3), inset 0 1px 0 rgba(209, 213, 219, 0.1); }
    50% { box-shadow: 0 8px 25px rgba(107, 114, 128, 0.5), inset 0 1px 0 rgba(209, 213, 219, 0.2); }
}

/* VARIATION 8: Platinum Metallic */
.hero-cta-button.variation-8 {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #374151;
    border: 2px solid #9ca3af;
    animation: platinumGlow 3s ease-in-out infinite;
}
@keyframes platinumGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(156, 163, 175, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8); }
    50% { box-shadow: 0 8px 25px rgba(156, 163, 175, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
}

/* VARIATION 9: Taupe Warm */
.hero-cta-button.variation-9 {
    background: linear-gradient(135deg, #a8a29e 0%, #78716c 100%);
    color: #f8f6f3;
    border: 2px solid #d4a574;
    animation: taupeGlow 3s ease-in-out infinite;
}
@keyframes taupeGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(168, 162, 158, 0.3), inset 0 1px 0 rgba(212, 165, 116, 0.1); }
    50% { box-shadow: 0 8px 25px rgba(168, 162, 158, 0.5), inset 0 1px 0 rgba(212, 165, 116, 0.2); }
}

/* VARIATION 10: Muted Rose Gold */
.hero-cta-button.variation-10 {
    background: linear-gradient(135deg, #e8d5c4 0%, #d4c4b0 100%);
    color: #5d4e37;
    border: 2px solid #b8956a;
    animation: mutedRoseGlow 3s ease-in-out infinite;
}
@keyframes mutedRoseGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(212, 196, 176, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 8px 25px rgba(212, 196, 176, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7); }
}



.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #f5f3f0 0%, #f8f6f3 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 149, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: #c9a96e;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--soft-black);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Experience & Video Section */
.experience-video-section {
    background: var(--cream);
    padding: 80px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.experience-video-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-video-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experience-content {
    margin-bottom: 40px;
}

.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.experience-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Video Container Styles */
.video-section {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.clinic-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Desktop Layout - Side by Side */
@media (min-width: 1024px) {
    .experience-video-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .experience-content {
        margin-bottom: 0;
        padding-right: 20px;
    }
    
    .video-container::before {
        content: '';
        display: block;
        padding-top: 100%; /* Square aspect ratio */
    }
    
    .clinic-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Tablet Layout */
@media (min-width: 768px) and (max-width: 1023px) {
    .experience-video-section {
        padding: 80px 40px;
    }
    
    .video-container {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .video-container::before {
        content: '';
        display: block;
        padding-top: 75%; /* 4:3 aspect ratio for tablets */
    }
    
    .clinic-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Mobile Layout - Stacked */
@media (max-width: 767px) {
    .experience-video-section {
        padding: 60px 20px 0;
    }
    
    .experience-content {
        margin-bottom: 30px;
    }
    
    .experience-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .experience-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .video-container {
        margin: 0 -20px;
        width: calc(100% + 40px);
        border-radius: 0;
        box-shadow: none;
    }
    
    .clinic-video {
        height: 60vh;
        min-height: 400px;
        object-fit: cover;
    }
    

}

/* About Section */
.about {
    padding: 120px 40px;
    background: var(--warm-white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    text-align: center;
}

.about-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 0.5rem;
}

.doctor-credentials {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--soft-gold);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2rem;
}

.about-text > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: var(--cream);
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
}

.feature h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature p {
    color: var(--soft-black);
    font-size: 0.95rem;
    margin: 0;
}

.credentials {
    margin-top: 60px;
    padding: 30px;
    background: var(--cream);
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

.credentials p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--soft-black);
    font-weight: 400;
    margin: 0;
    max-width: none;
}

.about-image {
    display: flex;
    justify-content: center;
}

/* Image Styles for when placeholders are replaced */
.hero-img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
}

.doctor-img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
}

/* Services Preview */
.services-preview {
    padding: 120px 40px;
    background: var(--soft-cream);
    text-align: center;
}

.services-preview h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 3rem;
}

.services-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-item {
    background: var(--warm-white);
    padding: 0;
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

/* Specific positioning for service images to show top of image */
.service-item:nth-child(2) .service-img,
.service-item:nth-child(3) .service-img {
    object-position: top center;
}

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

.service-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin: 0 30px 1rem;
}

.service-item p {
    color: var(--soft-black);
    font-size: 0.95rem;
    margin: 0 30px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Service CTA Buttons - Cream Luxury Style */
.service-cta-button {
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    color: #2c2c2c;
    border: 2px solid #b8956a;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin: 0 30px 30px;
    display: block;
    position: relative;
    overflow: hidden;
    animation: creamGlow 3s ease-in-out infinite;
    margin-top: auto;
}

.service-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-cta-button:hover::before {
    left: 100%;
}

.service-cta-button:hover {
    background: linear-gradient(135deg, #f5f3f0 0%, #f8f6f3 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 149, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: #c9a96e;
}

/* Reviews Carousel */
.reviews-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    position: relative;
}

.reviews-section .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.reviews-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted-gold);
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 100px;
    margin: 0 auto;
    max-width: 1200px;
    cursor: grab;
}

.reviews-carousel:active {
    cursor: grabbing;
}

.review-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: calc(33.333% - 20px);
    background: var(--warm-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 50px 40px;
    text-align: center;
}

.review-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.stars {
    font-size: 1.2rem;
    color: var(--soft-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-slide p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--soft-black);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 80px;
}

.review-slide cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--muted-gold);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--warm-white);
    color: var(--muted-gold);
    border: 2px solid var(--muted-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn.prev {
    left: 40px;
}

.carousel-btn.next {
    right: 40px;
}

.carousel-btn:hover {
    background: var(--muted-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(184, 149, 106, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--muted-gold);
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: var(--soft-gold);
}

/* CTA Section */
.cta-section {
    padding: 120px 40px;
    background: white;
    text-align: center;
    color: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(196, 149, 106, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(212, 165, 116, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 165, 116, 0.02) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--soft-black);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.main-cta-button {
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    color: #2c2c2c;
    border: 2px solid #b8956a;
    padding: 22px 50px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(184, 149, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    animation: creamGlow 3s ease-in-out infinite;
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.main-cta-button:hover::before {
    left: 100%;
}

.main-cta-button:hover {
    background: linear-gradient(135deg, #f5f3f0 0%, #f8f6f3 100%);
    border-color: #c9a96e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 149, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 60px 40px 40px;
    background: #000000;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.social-media a:hover {
    background: var(--soft-gold);
    border-color: var(--soft-gold);
    transform: translateY(-3px);
}

.social-media a:hover svg {
    color: #19213b;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--soft-gold);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--soft-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--soft-gold);
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.footer-brand p:first-child {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--soft-gold);
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--warm-white);
    margin: 3% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    min-height: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    color: var(--primary-black);
}

/* Form Language Switcher */
.form-language-switcher {
    position: absolute;
    top: 20px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.5);
    padding: 6px 12px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.form-lang-btn {
    background: none;
    border: none;
    color: var(--muted-gold);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-lang-btn.active {
    background: var(--muted-gold);
    color: white;
}

.form-lang-btn:hover:not(.active) {
    background: rgba(184, 149, 106, 0.1);
}

.form-language-switcher span {
    color: var(--muted-gold);
    font-size: 11px;
}

/* Progress Bar */
.form-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--muted-gold);
    width: 10%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.progress-steps {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.step-number {
    color: var(--muted-gold);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 40px;
    text-align: center;
}

.step-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 18px 24px;
    border: 2px solid transparent;
    background: var(--cream);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--soft-black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--muted-gold);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

/* Phone Input Group */
.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.country-select {
    flex-shrink: 0;
    width: 110px;
    padding: 18px 16px;
    border: 2px solid transparent;
    background: var(--cream);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--soft-black);
    cursor: pointer;
}

.country-select:focus {
    outline: none;
    border-color: var(--muted-gold);
    background: white;
}

.phone-group input[type="tel"] {
    flex: 1;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label:hover {
    border-color: var(--border-light);
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-label input[type="radio"]:checked + .radio-text {
    color: var(--primary-black);
    font-weight: 500;
}

.radio-label input[type="radio"]:checked ~ .radio-text::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--muted-gold);
    border-radius: 50%;
    background: white;
}

.radio-label input[type="radio"]:checked ~ .radio-text::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--muted-gold);
    border-radius: 50%;
}

.radio-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--soft-black);
    padding-left: 36px;
}

/* Styled Checkboxes */
.checkbox-group-styled {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-label-styled {
    display: block;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    padding-left: 45px; /* Add space for checkbox */
}

.checkbox-label-styled:hover {
    border-color: var(--soft-gold);
}

.checkbox-label-styled input[type="checkbox"] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 1; /* Make checkbox visible */
    cursor: pointer;
}

.checkbox-label-styled input[type="checkbox"]:checked + .checkbox-text {
    color: var(--primary-black);
}

/* Remove the pseudo elements that were creating custom checkboxes */
.checkbox-label-styled input[type="checkbox"]:checked ~ .checkbox-text::before {
    display: none;
}

.checkbox-label-styled input[type="checkbox"]:checked ~ .checkbox-text::after {
    display: none;
}

.checkbox-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--primary-black);
    text-align: center;
    margin-left: 0; /* Center the text since checkbox is absolute positioned */
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--soft-black);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    margin: 0;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-black);
    border-color: var(--primary-black);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.nav-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.back-btn {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border-light);
}

.back-btn:hover {
    border-color: var(--muted-gold);
    color: var(--muted-gold);
}

.next-btn {
    background: var(--muted-gold);
    color: white;
    border: 2px solid var(--muted-gold);
}

.next-btn:hover {
    background: var(--soft-gold);
    border-color: var(--soft-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 149, 106, 0.3);
}

/* Submit button with cream style to match other CTAs */
.submit-btn-new {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--soft-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 180px;
}

.submit-btn-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--soft-gold);
    transition: all 0.3s ease;
    z-index: -1;
}

.submit-btn-new:hover::before {
    left: 0;
}

.submit-btn-new:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* Highlighted submit button for step 9 */
.submit-btn-new.cta-highlight {
    background: var(--soft-gold);
    color: white;
    min-width: 220px;
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    padding: 18px 36px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
}

.submit-btn-new.cta-highlight::before {
    background: var(--muted-gold);
}

.submit-btn-new.cta-highlight:hover {
    background: var(--muted-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
    transform: translateY(-3px);
}

/* Form Summary */
.form-summary {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--primary-black);
    font-weight: 400;
    text-align: right;
    max-width: 60%;
}

/* Step 10 specific styling - last step */
.form-step[data-step="10"] {
    padding-bottom: 100px; /* Space for submit button */
}

/* Consent checkbox styling on step 10 */
.form-step[data-step="10"] .checkbox-label {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 20px;
}

/* Availability step styling */
.availability-section {
    text-align: left;
}

.availability-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: normal;
}

.availability-days,
.availability-times {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.availability-days .checkbox-label-styled,
.availability-times .checkbox-label-styled {
    flex: 0 1 auto;
    min-width: 110px;
    max-width: 150px;
    padding-left: 45px; /* Space for checkbox */
}

/* Smaller text for availability options */
.availability-days .checkbox-text,
.availability-times .checkbox-text {
    font-size: 0.9rem;
}

/* Center align availability labels */
.availability-label {
    text-align: center;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .brand-name {
        font-size: 3rem;
        letter-spacing: 12px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 80px;
        max-width: 1400px;
    }
    
    .hero-text {
        order: 2;
        padding-left: 40px;
    }
    
    .hero-image {
        order: 1;
        margin: 0;
        padding-right: 40px;
    }
    
    .hero-title {
        font-size: 3.25rem;
        text-align: left;
    }
    
    .hero-cta-button {
        margin: 2rem 0;
        display: inline-block;
    }
    
    .hero-subtitle {
        margin: 0;
        max-width: none;
        text-align: left;
    }
    
    /* Keep floating CTA visible but will be controlled by JS */
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text h3,
    .doctor-credentials {
        text-align: left;
    }
    
    .about-text > p {
        margin-left: 0;
        margin-right: 0;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature {
        text-align: left;
        padding: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-cta-button {
        margin: 0 30px 30px;
        width: auto;
        max-width: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
        align-items: center;
    }
    
    .social-media {
        justify-content: center;
        margin: 0;
    }
    
    .footer-brand {
        text-align: right;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Reviews Styles */
@media (max-width: 1024px) and (min-width: 768px) {
    .reviews-carousel {
        padding: 0 60px;
    }
    
    .review-slide {
        min-width: calc(50% - 15px);
    }
    
    .carousel-btn.prev {
        left: 20px;
    }
    
    .carousel-btn.next {
        right: 20px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .brand-name {
        font-size: 3.5rem;
        letter-spacing: 16px;
    }
    
    .foksal-emblem {
        height: 100px;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .floating-cta {
        bottom: 40px;
        right: 40px;
        left: auto;
        text-align: left;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .feature {
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .hero-top-elements {
        padding: 15px;
    }
    
    .foksal-emblem {
        height: 45px;
    }
    
    .brand-name {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .brand-location {
        font-size: 0.6rem;
    }
    
    .reviews-carousel {
        padding: 0;
    }
    
    .review-slide {
        min-width: 100%;
        padding: 40px 30px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    /* Hide dots on mobile since we have swipe */
    .carousel-dots {
        display: none;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .hero {
        padding: 40px 0 60px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .hero-top-elements {
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        padding: 20px;
        margin-bottom: 40px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .brand {
        text-align: left;
    }
    
    .foksal-emblem {
        height: 60px;
        margin-top: 0;
    }
    
    .hero-content {
        gap: 30px;
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        padding: 0 20px;
    }
    
    .hero-image {
        margin: 0 -20px;
        width: calc(100% + 40px);
        text-align: center;
    }
    
    .hero-image .hero-img {
        max-width: none;
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: top center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .brand-location {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-cta-button {
        margin: 1.5rem auto;
        padding: 16px 32px;
        font-size: 0.9rem;
        max-width: 280px;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 1.5rem;
        text-align: center;
        max-width: none;
    }
    
    /* Keep floating CTA visible on mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
    
    .about, .services-preview, .reviews-section, .cta-section {
        padding: 80px 20px;
    }
    
    .reviews-section {
        padding: 80px 20px;
    }
    
    .reviews-carousel {
        padding: 0 20px;
    }
    
    .review-slide {
        min-width: 100%;
        padding: 30px 25px;
    }
    
    .review-slide p {
        font-size: 0.9rem;
        min-height: 60px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 0;
    }
    
    .carousel-dots {
        margin-top: 30px;
    }
    
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
    }
    
    .service-cta-button {
        padding: 12px 24px;
        font-size: 0.8rem;
        margin: 0 auto 20px;
        max-width: 250px;
        width: 90%;
    }
    
    .modal-content {
        padding: 40px 30px;
        margin: 10% auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 30px 20px;
        max-width: 100%;
        width: 95%;
        min-height: auto;
    }
    
    .form-progress {
        margin-bottom: 30px;
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    .step-header p {
        font-size: 0.9rem;
    }
    
    .radio-label,
    .checkbox-label-styled {
        padding: 16px 20px;
    }
    
    .form-navigation {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .nav-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .form-language-switcher {
        top: 10px;
        right: 50px;
        padding: 4px 8px;
    }
    
    .form-lang-btn {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .country-select {
        width: 100%;
    }
    
    /* Mobile adjustments for step 10 */
    .form-step[data-step="10"] {
        padding-bottom: 80px;
    }
    
    .form-step[data-step="10"] .checkbox-label {
        font-size: 0.85rem;
        padding: 14px 18px;
        margin-top: 20px;
    }
    
    /* Mobile submit button styling */
    .submit-btn-new.cta-highlight {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        font-size: 0.95rem;
        padding: 16px 28px;
    }
    
    /* Mobile availability styling */
    .availability-days,
    .availability-times {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    
    .availability-days .checkbox-label-styled,
    .availability-times .checkbox-label-styled {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
        padding: 12px 10px 12px 35px;
    }
    
    .availability-days .checkbox-text,
    .availability-times .checkbox-text {
        font-size: 0.85rem;
    }
} 