/* --- Luxury Aesthetic Variables --- */
:root {
    /* Color Palette */
    --primary: #10393b;
    /* Deep Emerald - Trust & Luxury */
    --accent: #c5a059;
    /* Champagne Gold - Premium */
    --bg-body: #fdfbf7;
    /* Soft Cream - Warmth */
    --bg-card: rgba(255, 255, 255, 0.7);
    /* Glassmorphism Base */
    --text-main: #1d1d1f;
    /* Soft Black */
    --text-light: #6e6e73;
    /* Muted Grey */
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Effects */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(16, 57, 59, 0.15);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

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

/* --- Navigation (Glass Effect) --- */
/* --- Navigation (Glass Effect) --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 57, 59, 0.05);
    padding: 0.8rem 0;
    /* Reduced from 1rem */
    transition: var(--transition);
}

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

.logo img {
    height: 38px;
    /* Slightly reduced form 40px */
}

/* ... (omitting skipped lines) ... */



.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-links a:not(.btn-book)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-links a:not(.btn-book):hover::after {
    width: 100%;
}

.btn-book {
    display: inline-block;
    background: var(--accent);
    color: var(--primary) !important;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    /* Fully rounded */
    font-weight: 600 !important;
    font-size: 1.1rem;
    border: 1px solid var(--primary);
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--accent);
    color: var(--primary) !important;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* --- Hero Section (Magazine Style) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 2rem 4rem;
    /* Reduced top padding since stories are now relative */
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fdfbf7 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2.5rem;
    border: 4px solid var(--accent);
    padding: 5px;
    /* Double border effect */
    background: white;
    box-shadow: var(--shadow-hover);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

/* Page Header */
.page-header {
    height: auto;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 2rem 8rem;
    /* Increased bottom padding to prevent overlap */
    background: var(--primary);
    color: white;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--accent);
    /* Gold heading on dark background */
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Bento Grid / Services (Glassmorphism) --- */
.section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 90%;
    word-wrap: break-word;
}

.section-title::after {
    content: '✦';
    font-size: 1.5rem;
    color: var(--accent);
    display: block;
    margin-top: 10px;
}

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

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: var(--glass-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.9);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: rgba(16, 57, 59, 0.05);
    /* Soft background for icon */
    padding: 15px;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 0.8rem;
}

.service-list a {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list a::before {
    content: '•';
    color: var(--accent);
    font-size: 1.2rem;
}

.service-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* --- About Section (Premium Layout) --- */
#about {
    background: white;
    border-radius: 30px;
    margin: 4rem auto;
    box-shadow: var(--shadow-soft);
}

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

.gallery img {
    height: 300px;
    width: 33%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    filter: sepia(20%);
    /* Artistic touch */
}

.gallery img:hover {
    transform: scale(1.03);
    filter: sepia(0%);
    box-shadow: var(--shadow-hover);
}

/* --- Trust Banner (Dark Elegance) --- */
.trust-banner {
    background: var(--primary);
    color: white;
    padding: 5rem 2rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.trust-item span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.trust-item strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
}

/* --- Footer --- */
footer {
    background: var(--text-main);
    color: white;
    padding: 6rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.footer-content h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-map h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-map .mapouter {
    border-radius: 12px;
    overflow: hidden;
}

.footer-map .gmap_canvas iframe {
    width: 100%;
    border-radius: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- Content Page Styling --- */
.content-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-top: -3rem;
    /* Overlap with header */
    position: relative;
    z-index: 10;
}

.content-section h2 {
    font-size: 2.2rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.15rem;
}

.content-section ul li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}
/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
}

.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .gallery {
        flex-direction: column;
    }

    .gallery img {
        width: 100%;
        height: auto;
    }
}

/* --- Restored Floating Actions --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9990;
    /* Below whatsapp float if active */
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

/* --- Interactive Elements (JS Injected) --- */
.btn-learn-more {
    display: inline-block;
    margin-top: 1.5rem;
    /* Separates from text */
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* Specific styling for Dark Page Headers */
.page-header .btn-learn-more {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.page-header .btn-learn-more:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

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

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 2rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
}

/* Hero Button Enhancement */
.btn-book {
    box-shadow: 0 4px 15px rgba(16, 57, 59, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-book::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-book:hover::after {
    left: 100%;
}

.cta-btn {
    flex: 1;
    padding: 12px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.cta-call {
    background: #f5f5f7;
    color: var(--text-main);
    border: 1px solid #e5e5e5;
}

.cta-call i {
    transform: rotate(90deg);
}

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

/* Responsive visibility */
@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
        /* Hide floating button on mobile to avoid clutter */
    }

    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
        /* Prevent content from being hidden behind sticky bar */
    }

    .section {
        padding: 4rem 1.5rem;
    }

    /* Navbar Compact Mode */
    nav {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo img {
        height: 35px;
        /* Slightly smaller logo */
    }

    .stories-container {
        /* Show stories on mobile tablets, but will hide on scroll */
        padding: 10px 15px;
        /* Reduce padding */
        gap: 10px;
        z-index: 1;
        /* Low z-index so nav is above */
    }

    .story-ring {
        width: 60px;
        /* Smaller on mobile */
        height: 60px;
    }

    .story-item span {
        font-size: 0.8rem;
    }
}

/* --- Mobile Story Widget (Instagram Style) --- */
.stories-container {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    overflow-x: auto;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
    position: relative;
    /* Scroll with page like Instagram */
    z-index: 1;
    margin-top: 70px;
    /* Push below fixed navbar */
}

.stories-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome */
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.story-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    position: relative;
    transition: transform 0.3s;
}

.story-ring.seen {
    background: #ddd;
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.story-item span {
    font-size: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
}

.story-item:hover .story-ring {
    transform: scale(1.05);
}

/* Story Viewer Overlay */
.story-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 20000;
    display: none;
    flex-direction: column;
}

.story-viewer.active {
    display: flex;
}

.story-progress-bar {
    display: flex;
    gap: 5px;
    padding: 10px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20001;
}

.progress-segment {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.1s linear;
}

.story-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    z-index: 20002;
    cursor: pointer;
    background: none;
    border: none;
}

.story-caption {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    color: white;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.story-nav-area {
    position: absolute;
    top: 0;
    height: 100%;
    width: 30%;
    z-index: 20001;
}

.story-prev {
    left: 0;
}

.story-next {
    right: 0;
}

/* --- Skin Quiz Widget --- */
.quiz-floating-btn {
    position: fixed;
    bottom: 100px;
    /* Above WhatsApp button */
    right: 30px;
    background: white;
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--accent);
}

.quiz-floating-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
}

.quiz-floating-btn i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Quiz Modal */
.quiz-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 57, 59, 0.6);
    /* Darkened primary */
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.quiz-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.quiz-modal {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
}

.quiz-modal-overlay.active .quiz-modal {
    transform: translateY(0);
}

.quiz-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.quiz-step p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option-btn {
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-option-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(5px);
}

.quiz-option-btn i {
    opacity: 0.5;
}

.quiz-option-btn:hover i {
    opacity: 1;
    color: var(--accent);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .quiz-floating-btn {
        bottom: 80px;
        /* Adjust for mobile bar */
        right: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}