:root {
    --primary-nude: #F3E5DC;
    --primary-beige: #F5F5DC;
    --medical-blue: #E3F2FD;
    --text-dark: #333333;
    --text-light: #666666;
    --gold: #C5A059;
    --white: #FFFFFF;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.hidden-lang {
    display: none !important;
}

.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--gold), #333);
    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.bg-alt {
    background-color: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Navbar Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 80px;
    /* Increased size */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(197, 160, 89, 0.2));
    /* Soft gold glow/shadow */
    transition: all 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(197, 160, 89, 0.3));
}

.lang-switch {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.separator {
    margin: 0 10px;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('assets/hero_bg.png') no-repeat center center/cover;
    /* Updated background */
    margin-top: 60px;
    /* offset fixed header */
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(243, 229, 220, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    animation: fadeIn Up 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gold);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-nude);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.pricing-tab {
    padding: 10px 25px;
    background: white;
    border: 1px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.pricing-tab.active,
.pricing-tab:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.feature {
    background: var(--primary-nude);
    margin: 0 -30px;
    padding: 15px 30px;
}

.price-row .service-name {
    font-weight: 500;
}

.price-row .price {
    font-weight: 700;
    color: var(--gold);
}

/* Gallery Enhancements */
.gallery-grid {
    display: columns;
    columns: 2 250px;
    /* Masonry-like column layout */
    gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    /* Frame effect */
    height: auto;
    /* Natural height */
}

.gallery-item img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Contact */
.contact-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-link {
    font-size: 1.5rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-link:hover {
    color: #25D366;
    /* WhatsApp Green */
}

.social-links a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

footer {
    text-align: center;
    padding: 20px;
    background: var(--text-dark);
    color: white;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .pricing-tabs {
        flex-direction: column;
    }

    .pricing-container {
        padding: 20px;
    }

    .price-row.feature {
        margin: 0 -20px;
        padding: 15px 20px;
    }
}

/* Utility Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}