* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    font-weight: 300;
    letter-spacing: 0.3px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FA8072;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #FFE4E1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo {
    height: 300px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #FA8072;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 128, 114, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.credential {
    text-align: center;
    padding: 1.5rem;
    background: #FFE4E1;
    border-radius: 10px;
}

.credential h4 {
    color: #FA8072;
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.1s ease-out;
}

/* Treatments Section */
.treatments {
    padding: 100px 0;
    background: #FAFAFA;
}

.treatments h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.3px;
}

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

.treatment-card {
    background: transparent;
    width: 100%;
    height: 450px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.treatment-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-back {
    transform: rotateY(180deg);
    background: #f8f9fa;
}

.card-front img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.card-back h3 {
    color: #FA8072;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-back p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.treatment-card h3 {
    color: #FA8072;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.treatment-card p {
    color: #666;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Appointment Section */
.appointment {
    padding: 100px 0;
    background: #fff;
}

.appointment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.appointment-info h3 {
    color: #FA8072;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.appointment-info p {
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.appointment-info ul {
    list-style: none;
}

.appointment-info li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.appointment-info li:before {
    content: "✓";
    color: #FA8072;
    position: absolute;
    left: 0;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #FA8072;
}

.appointment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.appointment-form button {
    background: #FA8072;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.appointment-form button:hover {
    background: #E6725E;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #FFE4E1;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.3px;
}

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

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

.contact-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item h4 {
    color: #FA8072;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.contact-item p {
    color: #666;
    font-weight: 300;
    letter-spacing: 0.2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item a:hover {
    color: #FA8072;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-logo {
        height: 120px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content,
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .treatment-card {
        height: 380px;
    }
    
    .card-front img {
        width: 150px;
        height: 150px;
    }
    
    .card-front, .card-back {
        padding: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
}
