:root {
    --gold: #D4AF37;
    --gold-dark: #B38B2D;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B38B2D 100%);
    --brown-deep: #3C3530;
    --chocolate: #3C3530;
    --brown-dark: #2C2420;
    --beige-arena: #F2EBE3;
    --beige-accent: #E8DED1;
    --white: #FFFFFF;
    --text: #3C3530;
    --text-light: #5A5149;
    --transition: all 0.4s ease-out;
    --shadow-soft: 0 10px 30px rgba(44, 36, 32, 0.05);
    --shadow-deep: 0 20px 50px rgba(44, 36, 32, 0.12);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

body {
    background-image: url('bg-texture.png');
    background-repeat: repeat;
    background-size: auto;
    background-color: var(--beige-arena);
    /* Fallback */
    color: var(--text);
}

/* Horizontal Navigation Styles */
header {
    background: #5C423A;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 90px;
}

.header-title-desktop {
    display: block;
    flex: 1;
    text-align: center;
}

.header-title-desktop p {
    color: #E8DED1;
    font-size: 1.4rem;
    font-family: 'Bellota', cursive;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .header-title-desktop {
        display: none;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn.btn-capsule,
.btn-capsule {
    background: linear-gradient(90deg, #C59D5F 0%, #FDF4C5 50%, #C59D5F 100%) !important;
    color: #382218 !important;
    padding: 14px 32px !important;
    border-radius: 9999px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    font-family: 'ITC Avant Garde Gothic', 'League Spartan', 'Century Gothic', sans-serif !important;
    text-decoration: none !important;
    letter-spacing: -0.5px !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(197, 157, 95, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-block !important;
    text-align: center !important;
}

.btn.btn-capsule:hover,
.btn-capsule:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(197, 157, 95, 0.4) !important;
    background: linear-gradient(90deg, #D4AF37 0%, #FFF8E1 50%, #D4AF37 100%) !important;
    /* Move/brighten gradient slightly */
}

.header-banner-mobile {
    display: none;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    text-align: center;
    background: #3C302A;
}

@media (max-width: 900px) {
    .header-banner-mobile {
        display: block;
    }
}

.header-banner-mobile p {
    color: #E8DED1;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.8;
}

.horizontal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: #3C302A;
    padding: 12px 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    text-decoration: none;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #F0D060;
    text-decoration: underline;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .header-top {
        gap: 15px;
    }

    .page-title-banner h1 {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: grid !important;
        grid-template-columns: 80px 1fr 80px !important;
        align-items: center !important;
        padding: 0 3% !important;
        gap: 10px !important;
        height: 70px;
    }

    .logo {
        justify-self: start !important;
    }

    .header-actions {
        display: contents !important;
    }

    .btn.btn-capsule,
    .btn-capsule {
        grid-column: 2 !important;
        justify-self: center !important;
        padding: 10px 18px !important;
        font-size: 0.75rem !important;
        margin: 0 !important;
        white-space: nowrap !important;
        width: auto !important;
    }

    .menu-toggle {
        grid-column: 3 !important;
        justify-self: end !important;
    }

    .horizontal-nav {
        display: none !important;
    }

    .header-banner-mobile {
        padding: 10px 0;
    }

    .horizontal-nav.nav-active {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

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

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

    .nav-link {
        font-size: 0.9rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .logo img {
        height: 70px;
        width: auto;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        width: 32px;
        height: 22px;
        background: transparent;
        border: none;
        border-radius: 0;
        cursor: pointer;
        padding: 0;
        z-index: 2001;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #D4AF37 0%, #FDF4C5 50%, #D4AF37 100%);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animation for toggle */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .page-title-banner {
        width: 100%;
        text-align: center;
        background: rgba(212, 175, 55, 0.05);
        padding: 8px 10px;
        border-radius: 10px;
        margin: 5px 0;
    }

    .page-title-banner h1 {
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
        line-height: 1.4 !important;
    }
}

/* Hide toggle on desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}


h1,
h2,
h3,
.premium-font {
    font-family: 'Bellota', cursive;
    line-height: 1.1;
    color: var(--brown-deep);
}

body {
    background-color: var(--beige-arena);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

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

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
.btn {
    padding: 14px 40px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--brown-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    opacity: 0.95;
}

/* Hero Special Button */
.btn-hero {
    padding: 18px 50px;
    font-size: 1rem;
    background: var(--gold-gradient);
    background-size: 200% 200%;
    animation: heartbeat 2s infinite ease-in-out, shimmer 3s infinite linear;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--brown-dark);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.05);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Section Redesign */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 5% 60px;
    background: transparent;
    background-image:
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(212, 175, 55, 0.02) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    background-image: url("https://www.transparenttextures.com/patterns/linen-padding.png");
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #3C3530;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'League Spartan', sans-serif;
    font-style: normal;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #5A5149;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 500;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}



/* Form Card Design */
.hero-form-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 60px;
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 520px;
    position: relative;
    transition: var(--transition);
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(44, 36, 32, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 2.2rem;
    color: #3C3530;
    margin-bottom: 8px;
    font-weight: 400;
}

.form-header p {
    font-size: 0.85rem;
    color: #B38B2D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group label {
    color: #B38B2D;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    border-bottom: 1px solid #EAEAEA;
    font-size: 1.1rem;
    color: #BBB;
    padding: 10px 0;
}

.phone-prefix {
    color: #B38B2D;
    font-weight: 800;
}

.btn-whatsapp-hero {
    background: #2ECC71;
    color: var(--white);
    width: 100%;
    padding: 22px;
    border-radius: 12px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 800;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    animation: btn-pulse 2s infinite ease-in-out;
    border: none;
}

.btn-whatsapp-hero:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.3);
}


@media (max-width: 1024px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        padding-top: 20px;
    }

    .hero-form-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 4% 40px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        margin-bottom: 2rem;
    }

    .hero-form-container {
        margin-bottom: 2.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 5%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 5%;
    }

    .form-card {
        padding: 25px 15px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-header {
        margin-bottom: 20px;
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .form-header p {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select,
    .phone-prefix {
        font-size: 1rem;
        padding: 8px 0;
    }

    .btn-whatsapp-hero {
        padding: 15px;
        font-size: 0.9rem;
        margin-top: 15px;
        white-space: normal;
        line-height: 1.2;
    }

}

@media (max-width: 480px) {
    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 2rem;
    }

    .form-card {
        padding: 35px 20px;
        border-radius: 40px;
    }
}

/* Section Styling */
section {
    padding: clamp(40px, 8vw, 80px) 5%;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 60px);
    position: relative;
    z-index: 5;
}

.section-title h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--brown-deep);
    margin-bottom: 12px;
    padding: 0 10px;
    font-weight: 700;
}

.section-title p {
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Asymmetric Analysis Section */
#why-analysis {
    background-color: transparent;
}

.analysis-container {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.analysis-img-container {
    flex: 1;
    min-width: 320px;
    position: relative;
    padding: 20px;
}

.analysis-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-deep);
    transition: var(--transition);
}

.analysis-img:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.analysis-content {
    flex: 1.2;
    min-width: 320px;
}

.analysis-list {
    list-style: none;
    margin-bottom: 40px;
}

.analysis-list li {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.analysis-list .check {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;
}

.investment-card {
    background: var(--white);
    padding: 30px;
    border-left: 6px solid var(--gold);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    .analysis-list li {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .investment-card {
        text-align: center;
        border-left: none;
        border-top: 6px solid var(--gold);
    }
}

/* FAQ Styling */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--chocolate);
    line-height: 1.2;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 2000px;
}

/* Treatments Grid - Glassmorphism */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Treatment Flip Cards */
.treatment-card {
    perspective: 1000px;
    /* Base for 3D effect */
    height: 480px;
    /* Fixed height for consistency */
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform;
}

.treatment-card.is-flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 30px;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.card-front {
    background: var(--white);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.card-back {
    background: var(--brown-dark);
    color: var(--white);
    transform: rotateY(180deg) translateZ(1px);
    text-align: center;
    overflow-y: auto;
}

.card-front h3 {
    font-family: 'Bellota', cursive;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--brown-deep);
    margin-bottom: 20px;
    line-height: 1.1;
}

.card-front .treatment-price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.card-back p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.details-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.card-back .details-btn {
    border-color: var(--gold);
    color: var(--gold);
}

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

.back-btn {
    margin-top: 10px;
}

/* Results Gallery */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.result-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.result-img-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

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

.result-card:hover .result-img {
    transform: scale(1.05);
}

.result-caption {
    padding: 30px;
    text-align: center;
}

.result-caption h3 {
    font-size: 1.5rem;
    color: var(--chocolate);
    margin-bottom: 10px;
    line-height: 1.1;
}

.result-caption p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .results-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Video Slider 9:16 */
/* Video Slider 9:16 */
.video-section {
    background-color: var(--brown-deep);
    color: var(--white);
    padding: clamp(40px, 8vw, 80px) 5%;
    /* Keep texture overlay if desired, or remove to match "anterior" solid color */
    background-image: none;
}

.video-section h2,
.video-section h3,
.video-section p {
    color: var(--white);
}

.video-section .btn {
    color: var(--white) !important;
    border-color: var(--gold) !important;
}

.video-slider-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .video-slider-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
    }
}

.video-display {
    flex: 0 0 350px;
    aspect-ratio: 9/16;
    height: auto;
    max-height: 650px;
    background: #000;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.video-info {
    flex: 1;
}

@media (max-width: 900px) {
    .video-slider-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .video-display {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }
}

/* Authority Section - Luxury Charcoal */
.authority-section {
    background-color: transparent;
    color: var(--text);
    padding: clamp(40px, 8vw, 80px) 5%;
    overflow: hidden;
}

.authority-section h2,
.authority-section h3,
.authority-section p,
.authority-section li {
    color: var(--text);
}

.authority-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .authority-container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }
}

.authority-img-vessel {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.authority-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-deep);
    object-fit: cover;
}

.authority-content {
    width: 100%;
    max-width: 800px;
}

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

.section-title-white {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    color: var(--brown-deep);
    line-height: 1.1;
}

.authority-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.authority-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
}

.auth-check {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 900;
}

/* Unified FAQ Styling */
#faq {
    background-color: transparent;
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.faq-question {
    padding: 30px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.faq-item.active {
    background-color: rgba(250, 250, 249, 0.5);
}

/* Form Container - Luxury Boutique Look */
.form-container {
    background: var(--white);
    padding: clamp(40px, 8vw, 80px);
    border-radius: 30px;
    /* Centered */
    border: 2px solid var(--gold);
    box-shadow: 0 40px 80px rgba(44, 36, 32, 0.15);
}

.form-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.form-group input,
.form-group select {
    border: none;
    border-bottom: 1px solid #E0E0E0;
    border-radius: 0;
    padding: 15px 0;
    background: transparent;
    font-size: 1.2rem;
    color: var(--charcoal-warm);
    font-weight: 500;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: var(--gold);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E0E0E0;
    transition: var(--transition);
}

.phone-input-wrapper:focus-within {
    border-bottom-color: var(--gold);
}

.phone-prefix {
    padding: 15px 12px 15px 0;
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 1.2rem;
    user-select: none;
}

.phone-input-wrapper input {
    border-bottom: none !important;
    padding-left: 5px !important;
    flex: 1;
}

.form-group input:focus+label,
.form-group:focus-within label {
    color: var(--chocolate);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #BBB;
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .authority-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .authority-img-vessel {
        order: 1;
        max-width: 320px;
    }

    .authority-content {
        order: 2;
        padding-bottom: 20px;
    }

    .authority-list li {
        justify-content: center;
    }

    .ba-slider {
        height: clamp(300px, 50vh, 450px);
        border-radius: 15px;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 30px;
        margin-top: 20px;
    }

    .treatment-card {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        height: auto;
        min-height: 400px;
        perspective: 1200px;
    }

    .card-front,
    .card-back {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .card-front h3 {
        font-size: 1.6rem;
    }

    .card-back p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    footer {
        padding-top: 40px;
    }
}

/* Footer Styling */
footer {
    background-color: transparent;
    padding: 100px 5% 40px;
    border-top: 1px solid rgba(60, 53, 48, 0.1);
}

.footer-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
}

.footer-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.copyright {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    color: var(--charcoal-warm);
}

/* Booking Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active-modal {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--beige-arena);
    padding: 40px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gold);
}

.modal-overlay.active-modal .modal-content {
    transform: translateY(0) scale(1);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modal-title {
    color: var(--brown-deep);
    font-family: 'Bellota', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-body {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* Location Section */
.location-section {
    background-color: transparent;
    padding: clamp(40px, 8vw, 80px) 5%;
}

.location-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
}

.location-info-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: var(--beige-arena);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(60, 53, 48, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--gold);
}

.info-item h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--charcoal-warm);
    line-height: 1.4;
}

.highlight-text {
    color: var(--gold-dark) !important;
    font-weight: 700;
}

.location-map-container {
    flex: 1.5;
    min-height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--white);
    position: relative;
}

.location-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-outline-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 1px solid var(--charcoal-warm);
    border-radius: 50px;
    color: var(--charcoal-warm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .results-gallery {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 30px;
    }

    .result-card {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .location-info-card {
        text-align: center;
        padding: 30px 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .info-icon {
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .location-container {
        flex-direction: column;
    }

    .location-info-card {
        max-width: 100%;
    }

    .location-map-container {
        min-height: 350px;
        width: 100%;
        margin-top: 20px;
    }
}

/* CTA Utility */
/* Anniversary Promo Section Classes */
.anniversary-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
}

.promo-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-img-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.promo-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-text-card {
    background: #5C423A;
    padding: 40px;
}

.promo-text-card h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.promo-text-card p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}



.promo-highlight {
    font-weight: 700;
    color: var(--gold-dark);
}

.promo-bonus-card {
    background: var(--gold-gradient);
    color: var(--brown-dark);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.promo-bonus-card h3 {
    font-family: 'Bellota', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.bonus-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.bonus-badge-wrapper {
    margin-bottom: 25px;
}

.bonus-badge {
    background: var(--white);
    color: var(--chocolate);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-bonus {
    background: var(--white);
    color: var(--gold-dark);
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .promo-card {
        max-width: 100%;
        min-width: 100%;
    }

    .promo-bonus-card,
    .promo-text-card {
        padding: 30px 20px;
        text-align: center;
    }

    .bonus-badge-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 0 20px;
    }

    .cta-wrapper .btn {
        width: 100%;
        max-width: 400px;
    }
}

/* WhatsApp Style Button */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: btn-pulse 2s infinite ease-in-out;
    font-size: 1rem;
    padding: 20px 40px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
    color: var(--white);
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* FAQ Table Styles */
.faq-table-wrapper {
    margin: 20px 0;
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid rgba(60, 53, 48, 0.1);
    background: var(--beige-arena);
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
    min-width: 500px;
}

.faq-table th {
    background: var(--beige-dark);
    color: var(--chocolate);
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--gold);
}

.faq-table td {
    padding: 15px;
    border-bottom: 1px solid #EEEEEE;
    color: var(--text-light);
    line-height: 1.4;
}

.faq-table tr:last-child td {
    border-bottom: none;
}

.faq-table strong {
    color: var(--chocolate);
}

@media (max-width: 600px) {

    .faq-table th,
    .faq-table td {
        padding: 12px 10px;
        font-size: 0.8rem;
    }
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}