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

:root {
    --primary-color: #8B6F47;
    --secondary-color: #F5EADA;
    --accent-color: #8B6F47;
    --text-color: #8B6F47;
    --text-light: #8B6F47;
    --white: #F5EADA;
    --border-color: #d4c5a8;
    --button-bg: #8B6F47;
    --button-hover: #6d5637;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-book {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-primary:hover {
    background-color: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

.btn-book {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-book:hover {
    background-color: #c5a028;
}

/* Hero Section - Removed */

/* Featured Section */
.featured-section, .featured-treatment {
    padding: 100px 20px;
    background-color: var(--white);
}

.featured-section h2, .featured-treatment h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.featured-text {
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 2;
    text-align: center;
    color: var(--text-light);
    font-weight: 300;
}

.featured-section .container, .featured-treatment .container {
    text-align: center;
}

/* Treatments Preview */
.treatments-preview {
    padding: 100px 20px;
    background-color: var(--white);
}

.treatments-preview h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.treatment-card {
    background: var(--white);
    padding: 40px 35px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.treatment-card:hover {
    border-color: var(--accent-color);
}

.treatment-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.5;
}

.treatment-card p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.view-all {
    text-align: center;
}

/* Medical Treatments */
.medical-treatments {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.medical-treatments h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.medical-treatments p {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

.treatment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.badge {
    padding: 18px 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.badge:hover {
    border-color: var(--accent-color);
}

/* Community Section */
.community-section {
    padding: 100px 20px;
    background-color: var(--white);
    text-align: center;
}

.community-section h2 {
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.community-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.9;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.newsletter-section h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-section p {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.95rem;
    background: var(--white);
    font-weight: 300;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: var(--white);
    padding: 150px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 140px 0 80px;
    background-color: var(--secondary-color);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.about-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.about-image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-title-image {
    margin-bottom: 40px;
    margin-top: 0;
    width: 100%;
    line-height: 0;
    text-align: center;
    padding: 0 15px;
}

.about-title-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    vertical-align: bottom;
}

.inspiring-quote {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 22px auto 0;
    max-width: 700px;
    font-weight: 600;
    line-height: 1.6;
}

.inspiring-quote::before,
.inspiring-quote::after {
    content: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-description {
    max-width: 100%;
    margin-top: 0;
    padding-top: 0;
}

.profile-description p {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-color);
    font-weight: 300;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.profile-description p:first-child {
    margin-top: 1px;
}

.profile-description p:last-child {
    margin-bottom: 0;
}

.favorite-treatment {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.favorite-treatment h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.about-text {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-content address {
    font-style: normal;
    margin-top: 1rem;
    line-height: 1.8;
}

.about-content address a {
    color: var(--accent-color);
}

/* Treatments Section */
.treatments-section {
    padding: 80px 0;
    background-color: var(--white);
}

.treatments-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.reviews-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-color);
    margin-bottom: 40px;
    padding-bottom: 20px;
    scroll-behavior: auto;
    cursor: grab;
}

.reviews-scroll-container:active {
    cursor: grabbing;
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.reviews-scroll {
    display: flex;
    gap: 30px;
    padding: 10px 0;
    min-width: min-content;
}

.review-card {
    background-color: var(--white);
    padding: 40px 35px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.review-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.review-stars {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.review-rating {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.review-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 400;
    margin: 0;
    text-align: right;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* Book Section */
.book-section {
    padding: 100px 0;
    background-color: var(--white);
}

.book-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.book-content {
    text-align: center;
}

.book-section h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.book-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.9;
}

.btn-whatsapp {
    font-size: 1rem;
    padding: 16px 40px;
    letter-spacing: 1.5px;
}

.book-map {
    width: 100%;
}

.book-map h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
}

.book-map .map-container {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.book-map .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    font-weight: 300;
    background: var(--white);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form textarea {
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* About Section Mobile Improvements */
    .about-section {
        padding: 150px 0 50px;
    }
    
    .about-section h2 {
        margin-bottom: 2.5rem;
        font-size: 1.4rem;
    }
    
    .about-title-image {
        margin-bottom: 25px;
        margin-top: 10px;
        padding: 0;
        text-align: center;
    }
    
    .about-title-image img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-profile {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    .profile-description p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }
    
    /* Treatments Section Mobile */
    .treatments-section {
        padding: 50px 0;
    }
    
    .treatments-section h2 {
        margin-bottom: 1.5rem;
        font-size: 1.4rem;
        padding: 0 15px;
    }
    
    .treatment-category {
        margin-bottom: 35px;
        padding-bottom: 25px;
        padding: 0 15px 25px;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .category-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .treatment-detail-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .treatment-detail-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .treatment-detail-card p {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .treatment-options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
    }
    
    .treatment-option {
        padding: 18px 15px;
    }
    
    .treatment-option h4 {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .area-options {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    .area-option {
        padding: 20px 15px;
    }
    
    .area-option h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .area-option p {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .filler-options {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 15px;
    }
    
    .filler-option {
        padding: 20px 15px;
    }
    
    .filler-option h4 {
        font-size: 0.9rem;
    }
    
    .treatment-variants {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }
    
    .variant {
        padding: 10px 15px;
        min-width: 100%;
        font-size: 0.8rem;
    }
    
    /* Reviews Section Mobile */
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-section h2 {
        margin-bottom: 2.5rem;
        font-size: 1.4rem;
        padding: 0 15px;
    }
    
    .reviews-scroll-container {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 25px;
    }
    
    .reviews-scroll {
        gap: 15px;
    }
    
    .review-card {
        padding: 25px 20px;
        min-width: 85vw;
        max-width: 85vw;
    }
    
    .review-header {
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }
    
    .review-stars {
        font-size: 1rem;
    }
    
    .review-rating {
        font-size: 0.9rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    
    .review-author {
        font-size: 0.85rem;
    }
    
    .reviews-cta {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    /* Book Section Mobile */
    .book-section {
        padding: 50px 0;
    }
    
    .book-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .book-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .book-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.7;
        max-width: 100%;
    }
    
    .btn-whatsapp {
        font-size: 0.85rem;
        padding: 14px 30px;
        letter-spacing: 1px;
        width: 100%;
        max-width: 100%;
    }
    
    .book-map {
        order: -1;
    }
    
    .book-map h3 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .book-map .map-container {
        height: 250px;
    }
    
    .btn-whatsapp,
    .btn-primary,
    .btn-secondary {
        padding: 14px 25px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
        display: block;
    }
    
    .btn-book {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 15px 15px;
    }
    
    .footer-container {
        display: block;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

