@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-canvas: #FAF6F0;
    --bg-canvas-overlay: rgba(250, 246, 240, 0.88);
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --primary-color: #4A2E2B;
    --primary-light: #6E4844;
    --secondary-color: #8E7568;
    --accent-gold: #D4AF37;
    --accent-gold-dark: #B3922E;
    --accent-gold-light: rgba(212, 175, 55, 0.15);
    --text-main: #2C1A18;
    --text-muted: #6E5B58;
    --status-green: #2ECC71;
    --shadow-sm: 0 4px 12px rgba(74, 46, 43, 0.04);
    --shadow-md: 0 8px 24px rgba(74, 46, 43, 0.08);
    --shadow-lg: 0 16px 32px rgba(74, 46, 43, 0.12);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --border-light: 1px solid rgba(142, 117, 104, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-canvas);
    background-image: linear-gradient(var(--bg-canvas-overlay), var(--bg-canvas-overlay)), url('assets/bg-textura.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 580px;
    padding: 40px 24px 100px 24px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Reusable Glassmorphism Card style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-light);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Header Section */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 10px;
}

.profile-card-header {
    position: relative;
    padding: 0 0 28px 0 !important;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.profile-card-header:hover .hero-banner {
    transform: scale(1.02);
}

.profile-card-header .avatar-container {
    margin-top: -65px;
    z-index: 10;
}

.profile-card-header .profile-info,
.profile-card-header .social-bar {
    padding-left: 28px;
    padding-right: 28px;
    width: 100%;
}

.avatar-container {
    position: relative;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow-md), 0 0 0 2px var(--accent-gold);
    transition: var(--transition-smooth);
}

.profile-avatar:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg), 0 0 0 4px var(--accent-gold);
}

/* Pulsing Badge */
.status-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--status-green);
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--status-green);
    border-radius: 50%;
    animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.profile-info {
    margin-top: 12px;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.profile-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-gold-dark);
    letter-spacing: 1.5px;
    background: var(--accent-gold-light);
    padding: 4px 12px;
    border-radius: 50px;
    border: var(--border-gold);
}

/* Social Icon Bar */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: var(--border-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px);
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(74, 46, 43, 0.25);
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.social-link.whatsapp:hover {
    background: #25D366;
}
.social-link.tiktok:hover {
    background: #010101;
}
.social-link.youtube:hover {
    background: #FF0000;
}

/* Main Action Links */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-button {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 20px;
    background: #fff;
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.cta-button-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-canvas);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 18px;
    transition: var(--transition-smooth);
}

.cta-button-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.cta-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-arrow {
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

/* Hover Actions */
.cta-button:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md), 0 8px 20px rgba(212, 175, 55, 0.12);
}

.cta-button:hover::before {
    width: 8px;
}

.cta-button:hover .cta-button-icon {
    background: var(--primary-color);
    color: #fff;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
    opacity: 1;
    color: var(--accent-gold);
}

/* Highlighting the main booking CTA */
.cta-highlight {
    background: var(--primary-color);
    border: var(--border-gold);
}

.cta-highlight::before {
    background: var(--accent-gold);
}

.cta-highlight .cta-button-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

.cta-highlight .cta-title {
    color: #fff;
}

.cta-highlight .cta-subtitle {
    color: rgba(250, 246, 240, 0.8);
}

.cta-highlight .cta-arrow {
    color: var(--accent-gold);
}

.cta-highlight:hover {
    background: #3B2422;
}

/* Custom Cards / Info Blocks */
.info-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(142, 117, 104, 0.3), transparent);
}

.experience-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    border: var(--border-gold);
}

.experience-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Styled Button inside sections */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(74, 46, 43, 0.2);
}

.btn-primary:hover {
    background: var(--accent-gold-dark);
    box-shadow: 0 6px 18px rgba(179, 146, 46, 0.3);
    transform: translateY(-2px);
}

/* Service Rules / Highlights */
.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.rule-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    border: var(--border-gold);
}

.rule-text strong {
    color: var(--primary-color);
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.rule-text span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Therapies & Massages Section */
.therapies-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.therapy-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(142, 117, 104, 0.15);
}

.therapy-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.therapy-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    border: var(--border-gold);
}

.therapy-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.therapy-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Space Slider / Gallery */
.gallery-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    border: var(--border-gold);
    box-shadow: var(--shadow-sm);
}

.gallery-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    width: 33.333%;
    height: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.gallery-btn.prev {
    left: 12px;
}

.gallery-btn.next {
    right: 12px;
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-dot.active {
    background: var(--accent-gold);
    width: 16px;
    border-radius: 4px;
}

/* FAQs - Accordion Style */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: var(--border-light);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.6);
}

.faq-trigger {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-right: 15px;
}

.faq-icon {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.25);
}

.faq-body {
    padding: 0 20px 20px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Active FAQ State */
.faq-item.active {
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* Footer style */
footer {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.footer-contact {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--accent-gold-dark);
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.8;
    margin-top: 8px;
}

/* Floating Sticky Booking CTA (Mobile optimized) */
.floating-booking {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 48px);
    max-width: 480px;
    z-index: 99;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes slide-up {
    to {
        transform: translateX(-50%) translateY(0);
    }
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    background: #20BA56;
}

/* Fade-in Entrance Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(12px);
    animation: fade-in-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjust for larger screens */
@media (min-width: 600px) {
    .container {
        padding-top: 60px;
        padding-bottom: 120px;
    }
    .floating-booking {
        bottom: 30px;
    }
}

/* Photo Gallery Grid */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.gallery-item-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: var(--border-gold);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-item-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-card:hover .gallery-thumbnail {
    filter: brightness(0.85);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 46, 43, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.gallery-item-card:hover .gallery-item-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 26, 24, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoom-in-lightbox 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoom-in-lightbox {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: var(--border-gold);
}

.lightbox-caption {
    color: #FAF6F0;
    margin-top: 16px;
    font-size: 0.95rem;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0 20px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #FAF6F0;
    font-size: 36px;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1010;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FAF6F0;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    transition: var(--transition-smooth);
    z-index: 1010;
    user-select: none;
}

.lightbox-arrow:hover {
    color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Adjust layout on small screens */
@media (max-width: 480px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .lightbox-arrow {
        padding: 8px;
        font-size: 24px;
    }
    .lightbox-prev {
        left: 8px;
    }
    .lightbox-next {
        right: 8px;
    }
}
