/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #faf9f7;
}

.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(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(218, 165, 32, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.nav-logo h2 {
    color: #b8860b;
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 2px;
    background: #b8860b;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf9f7 0%, #f7f2f0 50%, #f1ebe8 100%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #daa520, #b8860b);
    margin: 1rem 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.hero-image-container {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(218, 165, 32, 0.25);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, #daa520, #b8860b);
}

.btn-secondary {
    background: transparent;
    color: #b8860b;
    border: 2px solid #b8860b;
}

.btn-secondary:hover {
    background: #b8860b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.2);
}

/* Hero section buttons maintain original height */
.hero-buttons .btn {
    padding: 16px 35px;
}

/* Back to Top Button */
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 28px;
    background: rgba(184, 134, 11, 0.1);
    color: #b8860b;
    text-decoration: none;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 3rem auto 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.back-to-top:hover {
    background: #b8860b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}

.back-to-top i {
    font-size: 0.8rem;
}

.section-footer {
    text-align: center;
    padding-top: 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #daa520, #b8860b);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: #718096;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

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

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #b8860b;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.15);
}

.feature i {
    font-size: 2.2rem;
    color: #b8860b;
    min-width: 60px;
    margin-top: 0.3rem;
}

.feature h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

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

.about-image-container {
    width: 400px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.about-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(218, 165, 32, 0.25);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Treatments Section */
.treatments {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #f7f2f0 0%, #f1ebe8 100%);
}

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

/* Service card */
.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.service-card.featured {
    border-color: #b8860b;
    box-shadow: 0 15px 50px rgba(184, 134, 11, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.service-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card li {
    color: #4a5568;
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card .hero-buttons {
    margin-top: auto;
    justify-content: center;
}

.service-card .btn {
    padding: 16px 35px;
}

/* Pricing Section */
.pricing {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-category {
    margin-bottom: 5rem;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b8860b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    position: relative;
}

.pricing-category h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #daa520, #b8860b);
    margin: 1rem auto;
    border-radius: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.7rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.price-card.featured {
    border-color: #b8860b;
    box-shadow: 0 15px 50px rgba(184, 134, 11, 0.2);
}

.price-header h4 {
    font-family: 'Playfair Display', serif;
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.price-description {
    margin-bottom: 1.8rem;
}

.price-description p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.price-card .btn {
    padding: 16px 35px;
}

/* Testimonials */
.testimonials {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #f6ad55;
    font-size: 1.3rem;
}

.testimonial-card p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-info strong {
    color: #2d3748;
    font-size: 1.15rem;
    font-weight: 600;
}

.client-info span {
    color: #b8860b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 30px 0 80px;
    background: linear-gradient(135deg, #f7f2f0 0%, #f1ebe8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.15);
}

.contact-item i {
    font-size: 1.8rem;
    color: #b8860b;
    margin-top: 0.5rem;
    min-width: 40px;
}

.contact-item h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.contact-item .btn {
    padding: 12px 25px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    color: #2d3748;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #ffffff;
    color: #2d3748;
}

.contact-form .btn {
    padding: 16px 35px;
}

/* Status messages */
.status-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: #e2e8f0;
    padding: 40px 0 30px;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: #daa520;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #daa520;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
        padding: 3rem 0;
        backdrop-filter: blur(20px);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu .btn {
        width: 120px;
        padding: 6px 20px;
        font-size: 0.95rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-image-container {
        width: 320px;
        height: 320px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-container {
        width: 320px;
        height: 320px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .nav-logo h2 {
        font-size: 2.8rem;
    }

    .nav-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }

    .about-image-container {
        width: 280px;
        height: 280px;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .price-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2.2rem;
    }

    .price-header h4 {
        font-size: 1.3rem;
    }

    .nav-menu .btn {
        width: 100px;
        padding: 5px 15px;
        font-size: 0.9rem;
    }

    .nav-logo h2 {
        font-size: 2.4rem;
    }

    .nav-logo img {
        height: 45px;
    }
}

@media (max-width: 380px) {
    .nav-logo h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 320px) {
    .nav-logo h2 {
        display: none;
    }
}