:root {
    --brand-cream: #f5f2ed;
    --brand-gold: #c5a059;
    --brand-dark: #1a1a1a;
    --brand-soft: #8e8e8e;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--brand-cream);
    color: var(--brand-dark);
    font-family: var(--font-sans);
    line-height: 1.7; /* Increased for better legibility */
    font-size: 17px; /* Increased base size */
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 10px;
}

.btn-dark {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
}

.btn-dark:hover {
    background-color: var(--brand-gold);
    color: var(--white);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bold{
    font-weight: 900;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0; /* Reduced from 30px */
    transition: var(--transition);
}

nav.scrolled, nav.mobile-nav-active {
    background-color: rgba(245, 242, 237, 0.95); /* Slightly more opaque */
    backdrop-filter: blur(10px);
    padding: 12px 0; /* Reduced from 15px */
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: var(--font-serif);
    font-size: 26px; /* Slightly larger */
    letter-spacing: 4px;
    font-weight: 700;
    line-height: 1;
    color: var(--white); /* Initial color */
    transition: var(--transition);
}

nav.scrolled .logo, nav.mobile-nav-active .logo {
    color: var(--brand-dark);
}

.logo-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-gold) !important; /* Always gold */
    font-weight: 600;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8); /* Initial color */
    transition: var(--transition);
}

nav.scrolled .nav-links a {
    color: rgba(26, 26, 26, 0.7);
}

.nav-links a:hover {
    color: var(--white);
}

nav.scrolled .nav-links a:hover {
    color: var(--brand-dark);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
}

nav.scrolled .mobile-toggle, nav.mobile-nav-active .mobile-toggle {
    color: var(--brand-dark);
}

/* Hero */
.hero {
    min-height: 100vh;
    height: auto;
    padding-top: 120px; /* Space for fixed navbar */
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    padding-top: 40px; /* Extra space to clear navbar */
}

.hero-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px); /* Refined for better fit */
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    font-style: italic;
}

.hero p {
    font-size: 20px; /* Increased */
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 550px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--brand-gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--brand-dark);
    color: var(--brand-cream);
    padding: 40px;
    border-radius: 20px;
    width: 250px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.experience-badge span {
    display: block;
    font-size: 40px;
    font-family: var(--font-serif);
    margin-bottom: 10px;
}

.experience-badge p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.7;
}

.section-tag {
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.about-content h2 {
    font-size: 54px; /* Increased */
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--brand-soft);
    margin-bottom: 20px;
    font-size: 18px; /* Increased */
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.about-features h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-features p {
    font-size: 14px;
}

/* Services */
.services {
    background-color: var(--white);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    transition: var(--transition);
}

.service-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 25px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-price {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--brand-cream);
    font-family: var(--font-serif);
    font-size: 20px;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-price {
    opacity: 1;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--brand-soft);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Gallery */
.gallery {
    background-color: var(--white);
    overflow: hidden;
}

.gallery-marquee {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    width: max-content;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    /* JS animation handles the movement */
}

.gallery-marquee:active {
    cursor: grabbing;
}

/* Removed CSS animation and hover pause as it's handled by JS */

.gallery-item {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    pointer-events: none; /* Prevent default image drag */
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

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

.stars {
    margin-bottom: 30px;
    color: var(--brand-gold);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 32px;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 40px;
}

.testimonial-author {
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(245, 242, 237, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--brand-gold);
    width: 30px;
    border-radius: 10px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 60px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--brand-cream);
    color: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--brand-gold);
}

.contact-text p {
    font-size: 15px;
    color: var(--brand-soft);
}

.contact-cta {
    margin-top: 20px;
}

.contact-map {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
    padding-top: 100px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo h2 {
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.footer-logo p {
    opacity: 0.5;
    font-size: 14px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--brand-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* Font Awesome size */
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--brand-gold);
}

.footer-col h4 {
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 30px;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    gap: 15px;
}

.footer-col ul li span {
    color: var(--brand-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 242, 237, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.3;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px; /* Font Awesome size */
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float span {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--brand-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-float:hover span {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--brand-cream);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(26, 26, 26, 0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

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

    .nav-links a {
        color: var(--brand-dark) !important;
    }

    .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .experience-badge {
        position: static;
        margin-top: 40px;
        width: 100%;
    }
    .hero h1 {
        font-size: 50px;
    }
    
    /* Mobile Service Cards */
    .service-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 3/4;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        cursor: pointer;
    }
    
    .service-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .service-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
        z-index: 1;
    }
    
    .service-content {
        position: relative;
        z-index: 2;
        padding: 30px 20px;
    }
    
    .service-card h3 {
        color: var(--white);
        margin-bottom: 8px;
    }
    
    .service-card p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
    }
    
    .service-card .btn {
        width: 100%;
        padding: 15px;
        font-size: 14px;
        background-color: var(--brand-gold);
        color: var(--white);
        border: none;
        position: static; /* Allow pseudo-element to be positioned relative to the card */
    }
    
    /* Make the whole card clickable by expanding the button's click area */
    .service-card .btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
    }
}

/* Modal Base */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background-color: var(--brand-cream);
    width: 100%;
    max-width: 900px;
    max-height: 100%;
    min-height: 0;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-dark);
    z-index: 10;
}

.modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 36px;
    margin-bottom: 5px;
}

.modal-header p {
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 40px 40px;
    min-height: 0;
}

.modal-footer {
    padding: 20px 40px;
    background-color: var(--white);
    border-top: 1px solid rgba(26, 26, 26, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.modal-footer p {
    font-size: 11px;
    color: var(--brand-soft);
    max-width: 60%;
}

/* Tabs System */
.modal-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
    padding-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-serif);
    font-size: 18px;
    cursor: pointer;
    color: var(--brand-soft);
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--brand-dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-gold);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Accordion */
.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(26, 26, 26, 0.05);
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white);
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #fafafa;
}

.accordion-header h4 {
    font-size: 20px;
}

.accordion-content {
    display: none;
    padding: 0 20px 20px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .chevron-icon {
    transform: rotate(180deg);
}

.chevron-icon {
    transition: var(--transition);
}

/* Service List */
.service-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted rgba(26, 26, 26, 0.1);
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-info h5 {
    font-size: 16px;
    font-weight: 500;
}

.service-info p {
    font-size: 13px;
    color: var(--brand-soft);
}

.service-price-tag {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-gold);
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--brand-soft);
    margin-left: 10px;
}

/* Packs Grid */
.category-header {
    font-size: 20px;
    color: var(--brand-dark);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    font-family: var(--font-serif);
}

.category-header:first-child {
    margin-top: 10px;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 10px;
}

.pack-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--brand-gold);
}

.pack-img {
    height: 200px;
    overflow: hidden;
}

.pack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pack-card:hover .pack-img img {
    transform: scale(1.1);
}

.pack-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pack-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.pack-note {
    font-size: 12px;
    color: var(--brand-soft);
    margin-bottom: 15px;
}

.pack-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pack-price {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-gold);
}

.best-seller {
    border: 2px solid var(--brand-gold);
}

.best-seller-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--brand-gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        max-height: 100%;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 30px 20px 10px;
    }
    
    .modal-content {
        padding: 0 20px 20px;
    }
    
    .modal-footer {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .modal-footer p {
        max-width: 100%;
    }
    
    .modal-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        white-space: nowrap;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .length-options {
        flex-wrap: wrap;
    }
    
    .length-btn {
        flex: 1 1 40%;
    }
}
