/* =========================================================
   SAFAR MULIA FRONTEND THEME
   Cleaned version from iterative homepage polish
   ========================================================= */

/* =========================================================
   1. THEME TOKENS + BASE
   ========================================================= */

:root {
    --bg: #f5f0e6;
    --bg-soft: #fffaf0;
    --bg-card: rgba(255, 255, 255, 0.72);
    --text: #111827;
    --muted: #5b6472;
    --border: rgba(17, 24, 39, 0.10);

    --primary: #c6ff00;
    --primary-dark: #98c900;
    --emerald: #0f766e;
    --emerald-soft: #2aa37f;

    --dark: #07110f;
    --dark-soft: #111a18;

    --shadow: 0 30px 80px rgba(21, 31, 25, 0.16);
    --shadow-soft: 0 18px 52px rgba(34, 28, 18, 0.08);

    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
}

html[data-theme="dark"] {
    --bg: #050706;
    --bg-soft: #0a0f0d;
    --bg-card: rgba(15, 23, 20, 0.72);
    --text: #f8fafc;
    --muted: #a9b3ad;
    --border: rgba(255, 255, 255, 0.10);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    --shadow-soft: 0 18px 52px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 10%, rgba(198, 255, 0, 0.12), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(42, 163, 127, 0.10), transparent 28%),
        linear-gradient(180deg, #f5f0e6 0%, #f8f4eb 45%, #f3eee4 100%);
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at 8% 10%, rgba(198, 255, 0, 0.08), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(42, 163, 127, 0.08), transparent 28%),
        linear-gradient(180deg, #050706 0%, #0a0f0d 55%, #050706 100%);
}

a {
    text-decoration: none;
}

section {
    scroll-margin-top: 110px;
}

a,
button,
.btn,
.service-card,
.package-card,
.stat-box,
.why-item,
.about-card,
.hero-plan-card,
.site-navbar,
.testimonial-card,
.faq-panel {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        opacity .25s ease;
}

/* =========================================================
   2. BUTTONS + SHARED TYPOGRAPHY
   ========================================================= */

.btn {
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 20px;
    border: 0;
}

.btn-luxury {
    color: #07110f !important;
    background: linear-gradient(135deg, var(--primary), #efff00);
    box-shadow: 0 16px 34px rgba(198, 255, 0, 0.28);
}

.btn-luxury:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #eaff00, var(--primary));
}

.btn-glass,
.btn-outline-luxury {
    color: var(--text) !important;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.btn-glass:hover,
.btn-outline-luxury:hover {
    border-color: rgba(198, 255, 0, 0.5);
    background: rgba(198, 255, 0, 0.12);
}

.section-heading {
    margin-bottom: 48px;
}

.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(42, 163, 127, 0.10);
    color: #238b6b;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

html[data-theme="dark"] .section-kicker {
    background: rgba(198, 255, 0, 0.10);
    color: #c6ff00;
}

.section-title {
    max-width: 720px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4.3vw, 62px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.section-description {
    max-width: 660px;
    color: rgba(75, 85, 99, 0.88);
    font-size: 16.5px;
    line-height: 1.85;
    margin-top: 18px;
}

html[data-theme="dark"] .section-description {
    color: rgba(226, 232, 240, 0.72);
}

/* =========================================================
   3. HEADER + NAVBAR
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 24px 0 0;
    background: transparent;
    backdrop-filter: none;
    pointer-events: none;
}

.site-header .site-navbar {
    pointer-events: auto;
}

.site-navbar {
    width: min(1160px, calc(100% - 44px));
    min-height: 66px;
    margin: 0 auto;
    border: 1px solid rgba(17, 24, 39, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 18px 50px rgba(34, 28, 18, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

html[data-theme="dark"] .site-navbar {
    background: rgba(12, 18, 15, 0.66);
    border-color: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .site-navbar {
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 18px 50px rgba(34, 28, 18, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

html[data-theme="dark"] .site-header.is-scrolled .site-navbar {
    background: rgba(12, 18, 15, 0.88);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--text) !important;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #07110f;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(198, 255, 0, 0.35);
}

.brand-text {
    font-size: 18px;
    letter-spacing: -0.04em;
}

.nav-menu {
    gap: 4px;
}

.nav-menu .nav-link {
    position: relative;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 14px !important;
}

.nav-menu .nav-link:hover {
    color: var(--text);
    background: rgba(42, 163, 127, 0.08);
}

html[data-theme="dark"] .nav-menu .nav-link:hover {
    background: rgba(198, 255, 0, 0.08);
}

.nav-menu .nav-link.active {
    color: #111827;
    background: rgba(42, 163, 127, 0.10);
}

html[data-theme="dark"] .nav-menu .nav-link.active {
    color: #f8fafc;
    background: rgba(198, 255, 0, 0.10);
}

.nav-menu .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: #2aa37f;
}

html[data-theme="dark"] .nav-menu .nav-link.active::after {
    background: #c6ff00;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn-luxury {
    padding: 12px 22px;
    font-size: 13.5px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-toggler,
.navbar-toggler {
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 999px;
    padding: 8px 10px;
    box-shadow: none !important;
}

html[data-theme="dark"] .custom-toggler,
html[data-theme="dark"] .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.10);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
}

/* =========================================================
   4. HERO
   ========================================================= */

.hero-elegant.hero-full-bg {
    position: relative;
    min-height: 94vh;
    padding: 132px 0 96px;
    overflow: hidden;
    isolation: isolate;
    background: #efe8d8;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img,
.hero-bg-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    display: block;
    transform: scale(1.035);
    filter: saturate(0.98) contrast(0.96) brightness(1.02);
    transition:
        opacity 900ms ease,
        transform 1200ms cubic-bezier(.2, .8, .2, 1),
        filter 900ms ease;
    will-change: opacity, transform, filter;
}

.hero-bg-img-light {
    opacity: 1;
}

.hero-bg-img-dark {
    opacity: 0;
    filter: saturate(0.95) contrast(1.04) brightness(0.86);
    transform: scale(1.055);
}

html[data-theme="dark"] .hero-bg-img-light {
    opacity: 0;
    transform: scale(1.055);
    filter: saturate(0.85) contrast(0.96) brightness(0.72);
}

html[data-theme="dark"] .hero-bg-img-dark {
    opacity: 1;
    transform: scale(1.035);
    filter: saturate(1) contrast(1.04) brightness(0.92);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to bottom,
            rgba(246, 239, 223, 0.82) 0%,
            rgba(246, 239, 223, 0.56) 17%,
            rgba(246, 239, 223, 0.18) 38%,
            rgba(246, 239, 223, 0.10) 56%,
            rgba(246, 239, 223, 0.42) 74%,
            rgba(246, 239, 223, 0.88) 100%
        ),
        radial-gradient(
            circle at center 34%,
            rgba(255, 255, 255, 0.34) 0%,
            rgba(255, 255, 255, 0.12) 34%,
            rgba(255, 255, 255, 0) 62%
        );
    transition:
        background 900ms ease,
        opacity 900ms ease;
}

html[data-theme="dark"] .hero-bg-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(8, 12, 10, 0.82) 0%,
            rgba(8, 12, 10, 0.60) 17%,
            rgba(8, 12, 10, 0.28) 38%,
            rgba(8, 12, 10, 0.22) 56%,
            rgba(8, 12, 10, 0.56) 74%,
            rgba(8, 12, 10, 0.92) 100%
        ),
        radial-gradient(
            circle at center 34%,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(255, 255, 255, 0.02) 34%,
            rgba(255, 255, 255, 0) 62%
        );
}

.hero-elegant-container {
    position: relative;
    z-index: 2;
    min-height: calc(94vh - 112px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-elegant-top {
    max-width: 860px;
    margin: 0 auto;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}

.hero-trust-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 17px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(49, 41, 26, 0.08);
    font-size: 12.5px;
    font-weight: 700;
    color: #5b6472;
}

html[data-theme="dark"] .hero-trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #c7d0ca;
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatars span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: -6px;
    border: 2px solid #fff;
    background: linear-gradient(135deg, #8ccfbd, #2aa37f);
}

.hero-trust-avatars span:first-child {
    margin-left: 0;
}

.hero-elegant-title {
    max-width: 900px;
    margin: 22px auto 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: #111827;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.14);
    text-wrap: balance;
}

html[data-theme="dark"] .hero-elegant-title {
    color: #f8fafc;
    text-shadow: none;
}

.hero-elegant-title span {
    display: block;
}

.hero-elegant-subtitle {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(31, 41, 55, 0.78);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .hero-elegant-subtitle {
    color: rgba(248, 250, 252, 0.74);
    text-shadow: none;
}

.hero-elegant-actions {
    margin-top: 24px;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-hero-search {
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 23px;
    font-size: 14px;
    transition: all .25s ease;
}

.btn-hero-primary {
    background: #2aa37f;
    color: #fff !important;
    border: 1px solid #2aa37f;
    box-shadow: 0 12px 26px rgba(42, 163, 127, 0.22);
}

.btn-hero-primary:hover {
    background: #238b6b;
    border-color: #238b6b;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.74);
    color: #111827 !important;
    border: 1px solid rgba(17, 24, 39, .10);
}

.btn-hero-secondary:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

html[data-theme="dark"] .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc !important;
    border-color: rgba(255, 255, 255, 0.10);
}

.hero-plan-wrap {
    width: 100%;
    margin-top: 90px;
}

.hero-plan-card {
    position: relative;
    z-index: 3;
    width: min(950px, 100%);
    margin: 0 auto;
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow:
        0 22px 60px rgba(34, 28, 18, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
}

html[data-theme="dark"] .hero-plan-card {
    background: rgba(12, 18, 15, 0.86);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-plan-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 15px;
}

.hero-plan-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #111827;
}

html[data-theme="dark"] .hero-plan-head h3 {
    color: #f8fafc;
}

.hero-plan-head p {
    margin: 6px 0 0;
    font-size: 13.5px;
    color: #6b7280;
}

.hero-plan-head small {
    color: #9ca3af;
    font-size: 12px;
    white-space: nowrap;
    padding-top: 5px;
}

html[data-theme="dark"] .hero-plan-head p,
html[data-theme="dark"] .hero-plan-head small {
    color: #aeb8b2;
}

.hero-plan-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

html[data-theme="dark"] .hero-plan-label {
    color: #aeb8b2;
}

.hero-plan-field {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-radius: 15px;
    background: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(17, 24, 39, .08);
}

html[data-theme="dark"] .hero-plan-field {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.hero-plan-field span {
    font-size: 16px;
}

.hero-plan-field strong {
    font-size: 14px;
    color: #111827;
}

html[data-theme="dark"] .hero-plan-field strong {
    color: #f8fafc;
}

.btn-hero-search {
    min-height: 50px;
    background: #2aa37f;
    color: #fff !important;
    border: 1px solid #2aa37f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-search:hover {
    background: #238b6b;
    border-color: #238b6b;
}

/* =========================================================
   5. INTRO / ABOUT
   ========================================================= */

.intro-section {
    position: relative;
    padding: 110px 0 96px;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.46), transparent 36%),
        transparent;
}

html[data-theme="dark"] .intro-section {
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 36%),
        transparent;
}

.about-card {
    padding: 16px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 24px 70px rgba(34, 28, 18, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
}

html[data-theme="dark"] .about-card {
    background: rgba(15, 23, 20, 0.70);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-image {
    min-height: 330px;
    border-radius: 26px;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.04), rgba(0,0,0,0.42)),
        url("https://images.unsplash.com/photo-1564769625905-50e93615e769?auto=format&fit=crop&w=1200&q=85");
    background-size: cover;
    background-position: center;
}

.about-content {
    padding: 24px 12px 10px;
}

.about-content p {
    font-size: 15.5px;
    color: rgba(75, 85, 99, 0.88);
    line-height: 1.8;
}

html[data-theme="dark"] .about-content p {
    color: rgba(226, 232, 240, 0.72);
}

.about-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.about-mini-stats div {
    border-radius: 20px;
    padding: 18px;
    background: rgba(248, 250, 252, 0.74);
    border: 1px solid rgba(17, 24, 39, 0.07);
}

html[data-theme="dark"] .about-mini-stats div {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.about-mini-stats strong {
    display: block;
    color: var(--emerald);
    font-size: 28px;
    font-weight: 900;
}

html[data-theme="dark"] .about-mini-stats strong {
    color: var(--primary);
}

.about-mini-stats span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 78px;
    gap: 16px;
}

.stat-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 30px 28px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 18px 48px rgba(34, 28, 18, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
}

.stat-box::after {
    content: "";
    position: absolute;
    right: -26px;
    top: -26px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(42, 163, 127, 0.10);
}

html[data-theme="dark"] .stat-box {
    background: rgba(15, 23, 20, 0.64);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .stat-box::after {
    background: rgba(198, 255, 0, 0.08);
}

.stat-box strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 34px;
    font-weight: 900;
    color: #238b6b;
    letter-spacing: -0.04em;
}

html[data-theme="dark"] .stat-box strong {
    color: var(--primary);
}

.stat-box span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 8px;
    color: rgba(75, 85, 99, 0.78);
    font-size: 13.5px;
    font-weight: 700;
}

html[data-theme="dark"] .stat-box span {
    color: rgba(226, 232, 240, 0.68);
}

.stat-box.active {
    background:
        radial-gradient(circle at top right, rgba(198, 255, 0, 0.22), transparent 34%),
        #101916;
    border-color: rgba(198, 255, 0, 0.18);
}

.stat-box.active strong {
    color: #c6ff00;
}

.stat-box.active span {
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   6. SERVICES
   ========================================================= */

.services-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(42, 163, 127, 0.08), transparent 34%),
        transparent;
}

.service-card {
    height: 100%;
    border-radius: 28px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 18px 52px rgba(34, 28, 18, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

html[data-theme="dark"] .service-card {
    background: rgba(15, 23, 20, 0.64);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card.featured {
    background:
        radial-gradient(circle at top right, rgba(198, 255, 0, 0.22), transparent 36%),
        #101916;
    color: white;
    border-color: rgba(198, 255, 0, 0.18);
}

.service-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(42, 163, 127, 0.12);
    color: #238b6b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 26px;
}

.service-card.featured .service-number {
    background: var(--primary);
    color: #07110f;
}

.service-card h3 {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.service-card p {
    color: rgba(75, 85, 99, 0.82);
    font-size: 15.5px;
    line-height: 1.75;
}

html[data-theme="dark"] .service-card p {
    color: rgba(226, 232, 240, 0.70);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   7. PACKAGES
   ========================================================= */

.packages-section {
    position: relative;
    padding: 104px 0 106px;
    background:
        radial-gradient(circle at 18% 0%, rgba(42, 163, 127, 0.09), transparent 32%),
        radial-gradient(circle at 82% 24%, rgba(198, 255, 0, 0.10), transparent 28%),
        transparent;
}

.package-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 30px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 20px 56px rgba(34, 28, 18, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(12px);
}

.package-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(42, 163, 127, 0.08);
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 28px 76px rgba(34, 28, 18, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .package-card {
    background: rgba(15, 23, 20, 0.66);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .package-card::before {
    background: rgba(198, 255, 0, 0.07);
}

.package-card.premium {
    transform: translateY(-18px);
    background:
        radial-gradient(circle at top right, rgba(198, 255, 0, 0.20), transparent 34%),
        linear-gradient(180deg, #14211d 0%, #0d1512 100%);
    color: white;
    border-color: rgba(198, 255, 0, 0.20);
    box-shadow:
        0 30px 86px rgba(9, 14, 12, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.package-card.premium:hover {
    transform: translateY(-24px);
}

.package-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(42, 163, 127, 0.11);
    color: #238b6b;
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.package-card.premium .package-label {
    background: #c6ff00;
    color: #07110f;
}

.package-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.package-price {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #238b6b;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.package-card.premium .package-price {
    color: #c6ff00;
}

.package-card p {
    position: relative;
    z-index: 1;
    color: rgba(75, 85, 99, 0.84);
    font-size: 15.5px;
    line-height: 1.75;
}

html[data-theme="dark"] .package-card p {
    color: rgba(226, 232, 240, 0.70);
}

.package-card.premium p,
.package-card.premium li {
    color: rgba(255, 255, 255, 0.72);
}

.package-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    padding-left: 0;
    margin: 26px 0 30px;
}

.package-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    color: rgba(75, 85, 99, 0.80);
    font-size: 14.5px;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: rgba(42, 163, 127, 0.12);
    color: #238b6b;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.package-card.premium li::before {
    background: rgba(198, 255, 0, 0.18);
    color: #c6ff00;
}

.package-card .btn {
    position: relative;
    z-index: 1;
}

/* =========================================================
   8. TESTIMONIALS
   ========================================================= */

.testimonials-section {
    position: relative;
    padding: 104px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(42, 163, 127, 0.10), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(198, 255, 0, 0.10), transparent 26%),
        transparent;
}

html[data-theme="dark"] .testimonials-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(42, 163, 127, 0.08), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(198, 255, 0, 0.07), transparent 26%),
        transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 20px 56px rgba(34, 28, 18, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(14px);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 76px rgba(34, 28, 18, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

html[data-theme="dark"] .testimonial-card {
    background: rgba(15, 23, 20, 0.66);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.testimonial-featured {
    grid-row: span 2;
    min-height: 520px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.52), rgba(255,255,255,0.74)),
        radial-gradient(circle at top right, rgba(42, 163, 127, 0.14), transparent 36%);
}

html[data-theme="dark"] .testimonial-featured {
    background:
        linear-gradient(to bottom, rgba(15, 23, 20, 0.46), rgba(15, 23, 20, 0.72)),
        radial-gradient(circle at top right, rgba(198, 255, 0, 0.10), transparent 36%);
}

.testimonial-featured::before {
    content: "";
    position: absolute;
    inset: 24px 24px auto auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(42, 163, 127, 0.10);
    filter: blur(4px);
}

html[data-theme="dark"] .testimonial-featured::before {
    background: rgba(198, 255, 0, 0.08);
}

.testimonial-quote-mark {
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: "Playfair Display", serif;
    font-size: 140px;
    line-height: 1;
    color: rgba(42, 163, 127, 0.13);
    pointer-events: none;
}

html[data-theme="dark"] .testimonial-quote-mark {
    color: rgba(198, 255, 0, 0.11);
}

.testimonial-rating {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(42, 163, 127, 0.10);
    color: #238b6b;
    font-weight: 900;
    margin-bottom: 20px;
}

html[data-theme="dark"] .testimonial-rating {
    background: rgba(198, 255, 0, 0.10);
    color: #c6ff00;
}

.testimonial-rating span {
    font-size: 13px;
    letter-spacing: 0.06em;
}

.testimonial-rating small {
    color: rgba(75, 85, 99, 0.72);
    font-weight: 800;
}

html[data-theme="dark"] .testimonial-rating small {
    color: rgba(226, 232, 240, 0.70);
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(75, 85, 99, 0.84);
    font-size: 15.5px;
    line-height: 1.85;
}

.testimonial-featured p {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: rgba(17, 24, 39, 0.82);
}

html[data-theme="dark"] .testimonial-card p {
    color: rgba(226, 232, 240, 0.72);
}

html[data-theme="dark"] .testimonial-featured p {
    color: rgba(248, 250, 252, 0.82);
}

.testimonial-user {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 26px;
}

.testimonial-avatar {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aa37f, #51c7a4);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(42, 163, 127, 0.22);
}

.testimonial-user strong {
    display: block;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

html[data-theme="dark"] .testimonial-user strong {
    color: #f8fafc;
}

.testimonial-user span {
    display: block;
    color: rgba(75, 85, 99, 0.72);
    font-size: 13px;
    line-height: 1.4;
}

html[data-theme="dark"] .testimonial-user span {
    color: rgba(226, 232, 240, 0.62);
}

.testimonial-dark-card {
    display: grid;
    grid-column: span 2;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 16px;
    min-height: 250px;
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(198, 255, 0, 0.20), transparent 36%),
        linear-gradient(180deg, #14211d 0%, #0d1512 100%);
    border-color: rgba(198, 255, 0, 0.18);
}

.testimonial-mini-stat {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-mini-stat strong {
    display: block;
    color: #c6ff00;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.testimonial-mini-stat span {
    display: block;
    max-width: 260px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   9. FAQ
   ========================================================= */

.faq-section {
    position: relative;
    padding: 104px 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(198, 255, 0, 0.10), transparent 28%),
        radial-gradient(circle at 90% 32%, rgba(42, 163, 127, 0.09), transparent 30%),
        transparent;
}

html[data-theme="dark"] .faq-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(198, 255, 0, 0.06), transparent 28%),
        radial-gradient(circle at 90% 32%, rgba(42, 163, 127, 0.07), transparent 30%),
        transparent;
}

.faq-panel {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 26px 76px rgba(34, 28, 18, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(14px);
    will-change: transform, opacity;
}

.faq-panel::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(42, 163, 127, 0.08);
    pointer-events: none;
}

html[data-theme="dark"] .faq-panel {
    background: rgba(15, 23, 20, 0.66);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 26px 76px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .faq-panel::before {
    background: rgba(198, 255, 0, 0.06);
}

.luxury-accordion {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.luxury-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow:
        0 14px 34px rgba(34, 28, 18, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .luxury-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.luxury-accordion .accordion-header {
    overflow: hidden;
}

.luxury-accordion .accordion-button {
    padding: 22px 24px;
    background: transparent;
    color: #111827;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.015em;
    box-shadow: none;
    border-radius: inherit;
}

html[data-theme="dark"] .luxury-accordion .accordion-button {
    color: #f8fafc;
}

.luxury-accordion .accordion-button:not(.collapsed) {
    color: #238b6b;
    background: rgba(42, 163, 127, 0.06) !important;
    border-radius: 22px 22px 0 0 !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .luxury-accordion .accordion-button:not(.collapsed) {
    color: #c6ff00;
    background: rgba(198, 255, 0, 0.08) !important;
}

.luxury-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.luxury-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-size: 14px;
    background-position: center;
    background-color: rgba(42, 163, 127, 0.10);
}

html[data-theme="dark"] .luxury-accordion .accordion-button::after {
    background-color: rgba(198, 255, 0, 0.10);
    filter: invert(1);
}

.luxury-accordion .accordion-collapse {
    margin-top: 0 !important;
    background: transparent;
}

.luxury-accordion .accordion-collapse.show .accordion-body {
    border-radius: 0 0 22px 22px;
}

.luxury-accordion .accordion-body {
    margin-top: 0 !important;
    padding: 18px 24px 24px !important;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    background: rgba(255, 255, 255, 0.68);
    color: rgba(75, 85, 99, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

html[data-theme="dark"] .luxury-accordion .accordion-body {
    border-top-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(226, 232, 240, 0.70);
}

/* =========================================================
   10. WHY + CTA
   ========================================================= */

.why-section {
    position: relative;
    padding: 104px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.42), transparent 36%),
        transparent;
}

html[data-theme="dark"] .why-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 36%),
        transparent;
}

.why-panel {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(198, 255, 0, 0.11), transparent 32%),
        rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 26px 76px rgba(34, 28, 18, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(14px);
}

.why-panel::after {
    content: "";
    position: absolute;
    inset: auto -10% -42% auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(42, 163, 127, 0.08);
    pointer-events: none;
}

html[data-theme="dark"] .why-panel {
    background:
        radial-gradient(circle at top left, rgba(198, 255, 0, 0.08), transparent 32%),
        rgba(15, 23, 20, 0.66);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 26px 76px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 21px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(17, 24, 39, 0.07);
    box-shadow:
        0 14px 34px rgba(34, 28, 18, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .why-item {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.why-item > span {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aa37f, #51c7a4);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(42, 163, 127, 0.22);
}

.why-item h4 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.why-item p {
    margin: 0;
    color: rgba(75, 85, 99, 0.78);
    font-size: 14.5px;
    line-height: 1.65;
}

html[data-theme="dark"] .why-item p {
    color: rgba(226, 232, 240, 0.68);
}

.cta-panel {
    position: relative;
    overflow: hidden;
    margin-top: 78px;
    padding: 86px 28px;
    border-radius: 36px;
    background:
        linear-gradient(to bottom, rgba(7, 17, 15, 0.26), rgba(7, 17, 15, 0.78)),
        url("https://images.unsplash.com/photo-1580418827493-f2b22c0a76cb?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 90px rgba(34, 28, 18, 0.16);
}

.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 15%, rgba(198, 255, 0, 0.18), transparent 28%),
        radial-gradient(circle at 18% 80%, rgba(42, 163, 127, 0.24), transparent 32%);
    pointer-events: none;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel .section-kicker {
    color: var(--primary);
}

.cta-panel h2 {
    max-width: 760px;
    margin: 0 auto;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.cta-panel p {
    max-width: 620px;
    margin: 18px auto 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   11. FOOTER + FLOATING WHATSAPP
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 34px 0 30px;
    background:
        radial-gradient(circle at 10% 0%, rgba(198, 255, 0, 0.10), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(42, 163, 127, 0.16), transparent 32%),
        linear-gradient(180deg, #0b1512 0%, #050807 100%);
    color: #fff;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 70%);
    pointer-events: none;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    margin-bottom: 56px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(198, 255, 0, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 26px 76px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.footer-cta-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(198, 255, 0, 0.12);
    color: #c6ff00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-cta h2 {
    max-width: 680px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: #fff;
}

.footer-cta p {
    max-width: 650px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.footer-main {
    padding-bottom: 44px;
}

.footer-brand {
    color: white !important;
    margin-bottom: 18px;
}

.footer-brand .brand-mark {
    background: #c6ff00;
    color: #07110f;
}

.footer-brand .brand-text {
    color: #fff;
}

.footer-desc {
    max-width: 500px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.85;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 12px;
    font-weight: 900;
}

.footer-socials a:hover {
    background: #c6ff00;
    color: #07110f !important;
    transform: translateY(-2px) !important;
}

.site-footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.site-footer a:not(.brand):not(.btn) {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 11px;
    font-size: 14px;
    transition: 0.2s ease;
}

.site-footer a:not(.brand):not(.btn):hover {
    color: #c6ff00;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item span {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(198, 255, 0, 0.12);
    color: #c6ff00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.footer-contact-item p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom a {
    margin: 0 !important;
    font-size: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 15px 10px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2aa37f, #35c99b);
    color: #fff !important;
    box-shadow:
        0 18px 44px rgba(42, 163, 127, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow:
        0 24px 58px rgba(42, 163, 127, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.floating-whatsapp-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.floating-whatsapp-text {
    display: grid;
    line-height: 1.1;
}

.floating-whatsapp-text strong {
    font-size: 14px;
    font-weight: 900;
}

.floating-whatsapp-text small {
    margin-top: 3px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   12. TOAST + REVEAL
   ========================================================= */

.luxury-toast {
    width: min(380px, calc(100vw - 32px));
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 22px 60px rgba(34, 28, 18, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .luxury-toast {
    background: rgba(12, 18, 15, 0.92);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.luxury-toast .toast-body {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 16px 18px;
    color: #111827;
}

html[data-theme="dark"] .luxury-toast .toast-body {
    color: #f8fafc;
}

.toast-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aa37f, #51c7a4);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(42, 163, 127, 0.22);
}

.luxury-toast strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px;
}

.luxury-toast p {
    font-size: 13.5px;
    color: rgba(75, 85, 99, 0.82);
}

html[data-theme="dark"] .luxury-toast p {
    color: rgba(226, 232, 240, 0.72);
}

.toast-container {
    bottom: 88px !important;
}

.reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.reveal-item:nth-child(1),
.package-card.reveal-item:nth-child(1) {
    transition-delay: .04s;
}

.service-card.reveal-item:nth-child(2),
.package-card.reveal-item:nth-child(2) {
    transition-delay: .10s;
}

.service-card.reveal-item:nth-child(3),
.package-card.reveal-item:nth-child(3) {
    transition-delay: .16s;
}

/* =========================================================
   13. RESPONSIVE
   ========================================================= */

@media (min-width: 1500px) {
    .hero-elegant.hero-full-bg {
        min-height: 92vh;
    }

    .hero-bg-img,
    .hero-bg-media img {
        object-position: center 47%;
        transform: scale(1.025);
    }

    .hero-plan-wrap {
        margin-top: 96px;
    }
}

@media (max-width: 1200px) {
    .hero-elegant-title {
        font-size: clamp(42px, 5.8vw, 66px);
    }

    .hero-plan-wrap {
        margin-top: 72px;
    }
}

@media (max-width: 991px) {
    section {
        scroll-margin-top: 96px;
    }

    .site-header {
        padding: 14px 0 0;
    }

    .site-navbar {
        width: min(720px, calc(100% - 24px));
        border-radius: 28px;
        padding: 8px 10px;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(17, 24, 39, 0.07);
    }

    html[data-theme="dark"] .navbar-collapse {
        background: rgba(12, 18, 15, 0.72);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .nav-menu .nav-link {
        padding: 12px 14px !important;
        border-radius: 16px;
    }

    .nav-menu .nav-link.active::after {
        display: none;
    }

    .nav-actions {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .theme-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-actions .btn-luxury {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
    }

    .hero-elegant.hero-full-bg {
        min-height: auto;
        padding-top: 116px;
        padding-bottom: 76px;
    }

    .hero-elegant-container {
        min-height: auto;
    }

    .hero-bg-img,
    .hero-bg-media img {
        object-position: center center;
        transform: scale(1.02);
    }

    .hero-bg-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(246, 239, 223, 0.88) 0%,
                rgba(246, 239, 223, 0.70) 24%,
                rgba(246, 239, 223, 0.34) 48%,
                rgba(246, 239, 223, 0.58) 76%,
                rgba(246, 239, 223, 0.94) 100%
            );
    }

    html[data-theme="dark"] .hero-bg-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(8, 12, 10, 0.86) 0%,
                rgba(8, 12, 10, 0.72) 24%,
                rgba(8, 12, 10, 0.42) 48%,
                rgba(8, 12, 10, 0.66) 76%,
                rgba(8, 12, 10, 0.94) 100%
            );
    }

    .hero-elegant-top {
        max-width: 680px;
        padding-top: 18px;
    }

    .hero-elegant-title {
        font-size: clamp(38px, 7vw, 56px);
        line-height: 1.02;
    }

    .hero-plan-wrap {
        margin-top: 48px;
    }

    .hero-plan-card {
        width: min(680px, 100%);
    }

    .hero-plan-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-section {
        padding: 88px 0 78px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 54px;
    }

    .about-image {
        min-height: 280px;
    }

    .packages-section,
    .testimonials-section,
    .faq-section,
    .why-section {
        padding: 82px 0;
    }

    .package-card.premium {
        transform: none;
    }

    .package-card.premium:hover {
        transform: translateY(-8px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-featured {
        grid-column: span 2;
        grid-row: auto;
        min-height: auto;
    }

    .testimonial-featured p {
        font-size: 18px;
    }

    .testimonial-dark-card {
        grid-column: span 2;
        grid-template-columns: 1fr 1fr;
    }

    .faq-panel,
    .why-panel {
        padding: 36px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .footer-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header {
        padding: 10px 0 0;
    }

    .site-navbar {
        width: calc(100% - 20px);
        padding: 7px 9px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .brand-text {
        font-size: 16px;
    }

    .hero-elegant.hero-full-bg {
        padding-top: 108px;
        padding-bottom: 64px;
        min-height: auto;
    }

    .hero-bg-img,
    .hero-bg-media img {
        object-position: center center;
        transform: scale(1.08);
    }

    .hero-bg-img-dark {
        transform: scale(1.10);
    }

    html[data-theme="dark"] .hero-bg-img-light {
        transform: scale(1.10);
    }

    html[data-theme="dark"] .hero-bg-img-dark {
        transform: scale(1.08);
    }

    .hero-trust-badge {
        max-width: 100%;
        font-size: 11.5px;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .hero-elegant-title {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        font-size: 36px;
        line-height: 1.05;
        margin-top: 18px;
    }

    .hero-elegant-subtitle {
        max-width: 350px;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-elegant-actions {
        width: 100%;
        margin-top: 22px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: min(310px, 100%);
        min-height: 48px;
        justify-content: center;
    }

    .hero-plan-wrap {
        margin-top: 30px;
    }

    .hero-plan-card {
        width: 100%;
        padding: 16px;
        border-radius: 20px;
        box-shadow:
            0 18px 48px rgba(34, 28, 18, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.66);
    }

    html[data-theme="dark"] .hero-plan-card {
        box-shadow:
            0 18px 48px rgba(0, 0, 0, 0.36),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .hero-plan-head {
        gap: 8px;
        margin-bottom: 14px;
    }

    .hero-plan-head h3 {
        font-size: 18px;
    }

    .hero-plan-head p {
        font-size: 13px;
    }

    .hero-plan-head small {
        white-space: normal;
        padding-top: 0;
    }

    .hero-plan-field,
    .btn-hero-search {
        min-height: 48px;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-search {
        width: 100%;
        justify-content: center;
    }

    .intro-section,
    .services-section,
    .packages-section,
    .testimonials-section,
    .faq-section,
    .why-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-kicker {
        font-size: 11px;
        padding: 7px 11px;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.08;
    }

    .section-description {
        font-size: 14.5px;
        line-height: 1.75;
    }

    .about-card,
    .service-card,
    .package-card,
    .testimonial-card,
    .faq-panel,
    .why-panel {
        border-radius: 24px;
    }

    .about-image {
        min-height: 230px;
        border-radius: 21px;
    }

    .about-mini-stats {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 44px;
    }

    .stat-box {
        padding: 24px;
    }

    .service-card,
    .package-card,
    .testimonial-card {
        padding: 22px;
    }

    .package-card.premium {
        transform: none;
    }

    .package-card h3 {
        font-size: 28px;
    }

    .package-price {
        font-size: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-featured,
    .testimonial-dark-card {
        grid-column: auto;
    }

    .testimonial-featured {
        padding: 24px 22px;
    }

    .testimonial-featured p {
        font-size: 16px;
    }

    .testimonial-quote-mark {
        top: 14px;
        left: 22px;
        font-size: 100px;
    }

    .testimonial-dark-card {
        grid-template-columns: 1fr;
    }

    .testimonial-mini-stat strong {
        font-size: 32px;
    }

    .faq-panel,
    .why-panel {
        padding: 22px;
    }

    .luxury-accordion {
        gap: 12px;
    }

    .luxury-accordion .accordion-item {
        border-radius: 18px;
    }

    .luxury-accordion .accordion-button {
        padding: 17px 16px !important;
        font-size: 14.5px;
        line-height: 1.45;
    }

    .luxury-accordion .accordion-body {
        padding: 16px 16px 18px !important;
        font-size: 14px;
        line-height: 1.75;
    }

    .luxury-accordion .accordion-button::after {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .why-item {
        padding: 17px;
        border-radius: 20px;
    }

    .cta-panel {
        margin-top: 56px;
        padding: 58px 20px;
        border-radius: 28px;
    }

    .site-footer {
        padding-top: 24px;
    }

    .footer-cta {
        padding: 24px;
        border-radius: 26px;
        margin-bottom: 36px;
    }

    .footer-cta h2 {
        font-size: 32px;
    }

    .footer-main {
        padding-bottom: 34px;
    }

    .footer-desc {
        font-size: 14.5px;
    }

    .footer-contact-item {
        margin-bottom: 13px;
    }

    .footer-bottom {
        gap: 12px;
    }

    .footer-bottom div {
        gap: 14px;
    }

    .floating-whatsapp {
        right: 14px;
        left: 14px;
        bottom: 14px;
        justify-content: center;
        padding: 11px 14px;
    }

    .floating-whatsapp-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .toast-container {
        left: 0 !important;
        right: 0 !important;
        bottom: 80px !important;
        padding: 14px !important;
    }

    .luxury-toast {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-text {
        font-size: 15px;
    }

    .hero-elegant-title {
        font-size: 31px;
    }

    .hero-elegant-subtitle {
        font-size: 13.5px;
    }

    .hero-plan-head h3 {
        font-size: 17px;
    }

    .section-title {
        font-size: 29px;
    }

    .footer-cta h2 {
        font-size: 28px;
    }

    .floating-whatsapp-text strong {
        font-size: 13px;
    }
}

/* =========================================================
   14. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }

    .hero-bg-img,
    .hero-bg-overlay {
        transition: none !important;
    }
}

/* =========================================================
   FOOTER SOCIAL REAL ICON FIX
   ========================================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82) !important;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.footer-socials a:hover {
    background: #c6ff00;
    color: #07110f !important;
    transform: translateY(-2px) !important;
}

/* =========================================================
   FOOTER SOCIAL PERFECT CIRCLE FIX
   ========================================================= */

.site-footer .footer-socials a,
.site-footer a.footer-social-link {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    aspect-ratio: 1 / 1;
    flex: 0 0 42px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    line-height: 1 !important;
}

.site-footer .footer-socials a svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
