/* ============================================
   MASSAGE PRAHA - Responsive Static Website
   DESIGN PHILOSOPHY: Modern Zen Luxury
   - Deep, calming colors (dark green, gold, charcoal)
   - Elegant typography (Playfair Display + Lato)
   - Asymmetric layout with breathing space
   - Smooth animations reflecting modernity
   ============================================ */

/* Root Variables */
:root {
    --primary-color: #2d5016;
    --secondary-color: #d4af37;
    --accent-color: #1a1a1a;
    --text-color: #2c2c2c;
    --light-text: #f5f5f5;
    --border-color: #e0e0e0;
    --bg-light: #fafafa;
    --bg-dark: #0f0f0f;
    --transition: all 0.3s ease;
    --spacing-unit: 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

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

a:hover {
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo-highlight {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
    margin-left: 3rem;
}

.nav-link {
    color: var(--light-text);
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    border-radius: 4px;
    min-width: 40px;
}

.lang-btn.active {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.lang-btn:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.booking-btn {
    background: var(--secondary-color);
    color: var(--accent-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 70px;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.5);
    z-index: 1;
}

.hero-trust-badge {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(212, 175, 55, 0.95);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.8s ease-out;
}

.trust-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.trust-text {
    letter-spacing: 0.5px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-text);
    animation: fadeInUp 1s ease-out;
    padding: 0 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
    stroke-width: 2;
}

/* ============================================
   BUTTONS & CTA
   ============================================ */

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    touch-action: manipulation;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:active {
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.cta-button.full-width {
    width: 100%;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
    padding: 6rem 0;
    background: white;
}

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

.benefit-card {
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-title {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 6rem 0;
    background: var(--bg-light);
}

.gallery-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    padding: 6rem 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(45, 80, 22, 0.8) 100%);
    text-align: center;
}

.cta-title {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 6rem 0;
    background: white;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-info a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--accent-color);
    color: var(--light-text);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 0.8;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.modal-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modal-message {
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.modal-message.success {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.modal-message.error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
}

.modal-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.modal-message p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: var(--accent-color);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-cta.visible {
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.sticky-cta:active {
    transform: translateY(-1px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.5rem; }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        gap: 1.5rem;
        margin-left: 2rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .sticky-cta {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.9rem 1.3rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (max 768px)
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }

    /* Header */
    .header {
        padding: 0.5rem 0;
    }

    .header-content {
        min-height: 60px;
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 0.9rem;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .booking-btn {
        display: none;
    }

    .header-controls {
        gap: 0.75rem;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: 35px;
    }

    /* Hero Section */
    .hero {
        margin-top: 60px;
        height: 80vh;
        background-attachment: scroll;
    }

    .hero-trust-badge {
        top: 70px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .trust-icon {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator svg {
        width: 24px;
        height: 24px;
    }

    /* Buttons */
    .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    /* Sections */
    .services,
    .benefits,
    .gallery,
    .reviews,
    .faq,
    .contact {
        padding: 4rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 50px;
    }

    /* Grids */
    .services-grid,
    .benefits-grid,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0 auto;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .gallery-image {
        height: 250px;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* FAQ */
    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer.active {
        padding: 1.25rem;
    }

    /* Contact */
    .contact-info p {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }

    /* Modal */
    .modal {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        max-height: 85vh;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        padding: 0.65rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Sticky CTA */
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }

    /* Review Cards */
    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .review-author {
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (max 480px)
   ============================================ */

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }

    .logo {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .hero {
        height: 70vh;
    }

    .hero-trust-badge {
        top: 65px;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .services,
    .benefits,
    .gallery,
    .reviews,
    .faq,
    .contact {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .service-image {
        height: 180px;
    }

    .gallery-image {
        height: 200px;
    }

    .cta-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer.active {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.25rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .sticky-cta {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

/* ============================================
   ACCESSIBILITY & UTILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ensure touch targets are at least 44x44px */
button, a, input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .hero-trust-badge {
        border: 2px solid var(--accent-color);
    }

    .service-card,
    .benefit-card,
    .review-card {
        border: 2px solid var(--border-color);
    }
}
/* ============================================
   About therapist section
   ============================================ */

.about-therapist {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-therapist-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-therapist-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-therapist-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .about-therapist-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-therapist {
        padding: 4rem 0;
    }

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

    .about-therapist-image img {
        max-height: 420px;
    }
}

/* Scroll animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
