/* ═══════════════════════════════════════════════════
   SHIFT MY SUBCONSCIOUS — Premium Stylesheet
   Font: Bricolage Grotesque
   Theme: White + Gold (#B8995E)
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #B8995E;
    --gold-light: #D4BC8A;
    --gold-dark: #9A7C46;
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --gray-900: #111111;
    --gray-800: #222222;
    --gray-700: #333333;
    --gray-600: #555555;
    --gray-500: #777777;
    --gray-400: #999999;
    --gray-300: #bbbbbb;
    --gray-200: #dddddd;
    --gray-100: #f0f0f0;
    --gray-50: #f8f8f7;
    --white: #ffffff;
    --warm-bg: #faf9f7;
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-300);
}

/* ─── CONTAINER ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

/* ─── GSAP ANIMATION TARGETS ─── */
.gs-reveal {
    opacity: 0;
    visibility: hidden;
}

/* ─── LOADER ─── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out);
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 28px;
    animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--gray-100);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loaderFill 1.2s var(--ease-out) forwards;
}

@keyframes loaderFill {
    to {
        width: 100%;
    }
}

/* ─── NAVIGATION ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height 0.4s var(--ease-out);
}

#navbar.scrolled .nav-inner {
    height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--dark);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--dark);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

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

/* Active section highlight */
.nav-links a.nav-active:not(.nav-cta) {
    color: var(--gold-dark);
}

.nav-links a.nav-active:not(.nav-cta)::after {
    width: 100%;
    background: var(--gold);
}

.nav-cta {
    background: var(--dark);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* Desktop: show links inline, hide toggle */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        transform: none;
    }

    .nav-toggle {
        display: none;
    }
}

/* Mobile: overlay menu */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        display: flex;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 20px;
        letter-spacing: 3px;
        color: var(--dark);
    }

    .nav-links a:not(.nav-cta)::after {
        display: none;
    }

    .nav-links a.nav-active:not(.nav-cta) {
        color: var(--gold);
    }

    .nav-links .nav-cta {
        margin-top: 16px;
        padding: 14px 36px;
        font-size: 14px !important;
    }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.btn--solid:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 153, 94, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--gray-200);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
}

.btn--white:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.btn--full {
    width: 100%;
}

/* ─── SECTION COMMON ─── */
.section {
    padding: 100px 0;
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding: 140px 0;
    }
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-eyebrow--light {
    color: var(--gold-light);
}

.section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-heading--light {
    color: var(--white);
}

.section-sub {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 500px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-sub {
    margin: 0 auto;
}

/* ─── TRIBAL DIVIDERS ─── */
.tribal-divider {
    padding: 20px 24px;
    display: flex;
    justify-content: center;
    background: var(--white);
}

.tribal-divider.bg-warm {
    background: var(--warm-bg);
}

.tribal-divider svg {
    width: 100%;
    max-width: 600px;
    height: 40px;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 40px;
    background: url('assets/bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

/* Dark overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 1;
}

.hero>* {
    position: relative;
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40Z' fill='none' stroke='%23fff' stroke-width='0.8'/%3E%3Ccircle cx='40' cy='40' r='12' fill='none' stroke='%23fff' stroke-width='0.6'/%3E%3Ccircle cx='40' cy='40' r='5' fill='none' stroke='%23fff' stroke-width='0.4'/%3E%3C/svg%3E");
    background-size: 120px;
}

/* Rising Bubble Dots */
.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    animation: bubbleRise linear infinite;
    opacity: 0;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) scale(0.5);
        opacity: 0;
    }
}

/* 20 bubbles with varied sizes, positions, colors, speeds, and delays */
.bubble:nth-child(1) {
    left: 5%;
    width: 4px;
    height: 4px;
    background: rgba(247, 245, 92, 0.308);
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 12%;
    width: 6px;
    height: 6px;
    background: rgba(255, 243, 200, 0.10);
    animation-duration: 14s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    left: 20%;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    animation-duration: 10s;
    animation-delay: 2.5s;
}

.bubble:nth-child(4) {
    left: 28%;
    width: 5px;
    height: 5px;
    background: rgba(255, 243, 200, 0.297);
    animation-duration: 16s;
    animation-delay: 0.5s;
}

.bubble:nth-child(5) {
    left: 35%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.10);
    animation-duration: 11s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    left: 42%;
    width: 7px;
    height: 7px;
    background: rgba(211, 121, 12, 0.354);
    animation-duration: 18s;
    animation-delay: 1.5s;
}

.bubble:nth-child(7) {
    left: 48%;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.14);
    animation-duration: 9s;
    animation-delay: 4s;
}

.bubble:nth-child(8) {
    left: 55%;
    width: 5px;
    height: 5px;
    background: rgba(255, 243, 200, 0.09);
    animation-duration: 15s;
    animation-delay: 0.8s;
}

.bubble:nth-child(9) {
    left: 62%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.11);
    animation-duration: 13s;
    animation-delay: 2s;
}

.bubble:nth-child(10) {
    left: 70%;
    width: 6px;
    height: 6px;
    background: rgba(162, 129, 9, 0.08);
    animation-duration: 17s;
    animation-delay: 3.5s;
}

.bubble:nth-child(11) {
    left: 78%;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.13);
    animation-duration: 10s;
    animation-delay: 1.2s;
}

.bubble:nth-child(12) {
    left: 85%;
    width: 5px;
    height: 5px;
    background: rgba(255, 243, 200, 0.07);
    animation-duration: 14s;
    animation-delay: 4.5s;
}

.bubble:nth-child(13) {
    left: 92%;
    width: 4px;
    height: 4px;
    background: rgba(151, 176, 25, 0.1);
    animation-duration: 12s;
    animation-delay: 0.3s;
}

.bubble:nth-child(14) {
    left: 8%;
    width: 3px;
    height: 3px;
    background: rgba(255, 243, 200, 0.12);
    animation-duration: 11s;
    animation-delay: 5s;
}

.bubble:nth-child(15) {
    left: 25%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    animation-duration: 19s;
    animation-delay: 2.8s;
}

.bubble:nth-child(16) {
    left: 38%;
    width: 4px;
    height: 4px;
    background: rgba(255, 243, 200, 0.10);
    animation-duration: 13s;
    animation-delay: 6s;
}

.bubble:nth-child(17) {
    left: 52%;
    width: 5px;
    height: 5px;
    background: rgba(174, 128, 54, 0.08);
    animation-duration: 16s;
    animation-delay: 1.8s;
}

.bubble:nth-child(18) {
    left: 65%;
    width: 3px;
    height: 3px;
    background: rgba(255, 243, 200, 0.14);
    animation-duration: 10s;
    animation-delay: 3.2s;
}

.bubble:nth-child(19) {
    left: 80%;
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.05);
    animation-duration: 20s;
    animation-delay: 0.6s;
}

.bubble:nth-child(20) {
    left: 95%;
    width: 4px;
    height: 4px;
    background: rgba(216, 184, 70, 0.09);
    animation-duration: 12s;
    animation-delay: 4.2s;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-accent {
    color: var(--gold-light);
    font-weight: 300;
    font-style: italic;
}

.hero-tagline {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn--outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.hero-buttons .btn--outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Trust Strip */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .hero-trust {
        gap: 40px;
        padding: 20px 56px;
    }
}

.trust-item {
    text-align: center;
    flex-shrink: 0;
}

.trust-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.trust-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .trust-num {
        font-size: 24px;
    }

    .trust-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .trust-divider {
        height: 32px;
    }
}

@media (max-width: 767px) {
    .hero-trust {
        gap: 14px;
        padding: 12px 18px;
        margin-top: 32px;
        transform: scale(0.82);
        transform-origin: center;
    }
}

@media (max-width: 380px) {
    .hero-trust {
        gap: 10px;
        padding: 10px 14px;
        transform: scale(0.75);
    }

    .trust-num {
        font-size: 18px;
    }

    .trust-label {
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    .trust-divider {
        height: 24px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-img-wrap {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.about-photo {
    width: 100%;
    border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    z-index: 10;
}

.badge--left {
    bottom: -16px;
    left: -16px;
}

.badge--right {
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .badge--left {
        left: -32px;
    }

    .badge--right {
        right: -40px;
    }
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    font-weight: 500;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--gray-600);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-text p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.about-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--warm-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    margin-top: 32px;
}

.rating-stars {
    font-size: 22px;
    color: #e5a100;
    white-space: nowrap;
}

.about-rating strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

.about-rating span {
    font-size: 12px;
    color: var(--gray-400);
}

/* Credentials & Certifications */
.credentials {
    margin-top: 80px;
}

.credentials-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.credential-card {
    background: var(--warm-bg);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s var(--ease-out);
}

.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 153, 94, 0.2);
}

.credential-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 153, 94, 0.1), rgba(184, 153, 94, 0.05));
    border-radius: 10px;
    color: var(--gold);
}

.credential-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.credential-card p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   BLIND SPOTS & LIMITING BELIEFS
   ═══════════════════════════════════════════════════ */
.blindspots {
    background: var(--warm-bg);
}

.blindspots-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .blindspots-layout {
        grid-template-columns: 380px 1fr;
        gap: 80px;
        align-items: center;
    }
}

/* Logo Visual */
.blindspots-visual {
    display: flex;
    justify-content: center;
}

.blindspots-logo-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    text-align: center;
    max-width: 380px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blindspots-logo-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.blindspots-logo-img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 24px;
    border-radius: var(--radius-sm);
    transition: transform 0.6s var(--ease-out);
}

.blindspots-logo-wrap:hover .blindspots-logo-img {
    transform: scale(1.03);
}

.blindspots-logo-caption {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blindspots-logo-caption .caption-highlight {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.blindspots-logo-caption span:last-child {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.6;
}

/* Insight Cards */
.blindspots-insights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 28px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(184, 153, 94, 0.2);
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 153, 94, 0.1), rgba(184, 153, 94, 0.05));
    border-radius: 12px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.insight-card:hover .insight-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: scale(1.05);
}

.insight-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 600px) {
    .insight-card {
        padding: 20px;
        gap: 14px;
    }

    .insight-icon {
        width: 38px;
        height: 38px;
    }

    .insight-icon svg {
        width: 18px;
        height: 18px;
    }

    .insight-content h4 {
        font-size: 15px;
    }

    .insight-content p {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════════════
   PROGRAMS
   ═══════════════════════════════════════════════════ */
.programs {
    background: var(--warm-bg);
}

/* Featured Card */
.featured-card {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto 64px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
    .featured-card {
        flex-direction: row;
    }
}

.featured-img {
    flex: 0 0 40%;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 260px;
}

.featured-body {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .featured-body {
        padding: 48px;
    }
}

.featured-body h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-body p {
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.featured-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
}

.price-detail {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

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

.service-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card-body {
    padding: 28px;
}

.service-card-body h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card-body p {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   MEDIA (VIDEOS & BOOKS)
   ═══════════════════════════════════════════════════ */
.media {
    background: var(--white);
}

.media-subsection {
    margin-bottom: 64px;
}

.media-subsection:last-child {
    margin-bottom: 0;
}

.media-subtitle {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.video-card img,
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
    pointer-events: none;
}

.video-card:hover img,
.video-card:hover video {
    transform: scale(1.06);
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.4s;
}

.video-card:hover .video-play {
    background: rgba(0, 0, 0, 0.35);
}

.video-play svg {
    width: 56px;
    height: 56px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 16px;
    transition: transform 0.4s var(--ease-out);
}

.video-card:hover .video-play svg {
    transform: scale(1.15);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .books-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.book-page {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    cursor: pointer;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.book-page:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}

.book-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   MEDIA MODAL (Video + Image Lightbox)
   ═══════════════════════════════════════════════════ */
.media-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    z-index: 10000;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out);
}

.media-modal.active .modal-body {
    transform: scale(1);
}

.modal-body video {
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    outline: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-body img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

@media (max-width: 480px) {
    .modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .modal-body {
        width: 95%;
    }
}

/* ═══════════════════════════════════════════════════
   SHOP
   ═══════════════════════════════════════════════════ */
.shop {
    background: var(--gray-900);
    color: var(--white);
    overflow: hidden;
}

.shop-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23fff' stroke-width='0.5'/%3E%3Cpath d='M50 15 v70 M15 50 h70' fill='none' stroke='%23fff' stroke-width='0.3'/%3E%3C/svg%3E");
    background-size: 150px;
}

.shop-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .shop-grid {
        flex-direction: row;
        gap: 80px;
    }
}

.shop-img {
    flex: 0 0 45%;
}

.shop-img img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.shop-text {
    flex: 1;
}

.shop-text p {
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════ */
.reviews {
    background: var(--warm-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #e5a100;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-card p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
    background: var(--white);
}

.contact-card {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
    .contact-card {
        flex-direction: row;
    }
}

.contact-info {
    flex: 0 0 42%;
    background: var(--gray-900);
    padding: 48px;
    color: var(--white);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-intro {
    color: var(--gray-400);
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.contact-detail label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-detail a {
    color: var(--white);
    font-weight: 300;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--gold-light);
}

.contact-detail p {
    color: var(--white);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-wrap {
    flex: 1;
    padding: 48px;
    background: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.form-group input,
.form-group select {
    border: none;
    border-bottom: 1.5px solid var(--gray-200);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    font-weight: 300;
    background: transparent;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: var(--gray-300);
}

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

.form-group select {
    cursor: pointer;
}

.contact-form .btn {
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    padding: 64px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 300;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 300;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-100);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   CREDENTIALS
   ═══════════════════════════════════════════════════ */
.credentials {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid var(--gray-100);
}

.credentials-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
    text-align: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.credential-card {
    padding: 24px;
    background: var(--warm-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
}

.credential-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.credential-card p {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   PROGRAM CATEGORIES (Detailed Listings)
   ═══════════════════════════════════════════════════ */
.program-categories {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-100);
}

.programs-detail-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
    text-align: center;
}

.program-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .program-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .program-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-cat {
    padding: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.program-cat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.program-cat-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.program-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.program-cat:hover .program-cat-img img {
    transform: scale(1.06);
}

.program-cat-body {
    padding: 28px;
}

.program-cat h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.program-cat ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-cat li {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 300;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.program-cat li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes whatsappPulse {

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

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ═══════════════ FAQ & PHILOSOPHY ═══════════════ */
.faq {
    background-color: var(--color-bg);
}

.faq-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--color-text-mut);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.accordion-header h3 {
    font-size: 1.25rem;
    margin: 0;
    padding-right: 2rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
}

.accordion-header:hover h3 {
    color: var(--color-accent);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition);
    color: var(--color-accent);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-inner {
    padding-bottom: 1.5rem;
    color: var(--color-text-mut);
    line-height: 1.7;
}

.accordion-inner p {
    margin-bottom: 1rem;
}

.accordion-inner p:last-child {
    margin-bottom: 0;
}

.faq-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-list li {
    position: relative;
    margin-bottom: 0.5rem;
}

.faq-list li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: -1.2rem;
}

/* ═══════════════ SESSIONS LIST ═══════════════ */
.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.session-row {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform var(--transition), border-color var(--transition);
}

.session-row:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 153, 94, 0.3);
}

.session-img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.session-img img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.session-row:hover .session-img img {
    transform: scale(1.05);
}

.session-info h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.session-info p {
    color: var(--color-text-mut);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.session-req {
    font-size: 0.9rem;
    color: var(--color-accent) !important;
}

.session-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.session-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.session-duration {
    color: var(--color-text-mut);
    font-size: 0.95rem;
}

.session-meta .btn {
    margin-left: auto;
}

@media (max-width: 767px) {
    .session-meta {
        gap: 1rem;
        justify-content: flex-start;
    }
    .session-meta .btn {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (min-width: 768px) {
    .session-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .session-img {
        width: 180px;
        height: auto;
        margin-bottom: 0;
        flex-shrink: 0;
        margin-right: 2rem;
    }
    
    .session-info {
        flex: 1;
        padding-right: 2rem;
    }
    
    .session-meta {
        flex-direction: column;
        align-items: flex-end;
        border-top: none;
        padding-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 2rem;
        gap: 0.75rem;
        min-width: 150px;
    }
    
    .session-meta .btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ═══════════════ DEMO CTA ═══════════════ */
.demo-cta {
    background: linear-gradient(135deg, rgba(184, 153, 94, 0.1), rgba(184, 153, 94, 0.02));
    border: 1px solid rgba(184, 153, 94, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-cta h3 {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.demo-cta p {
    font-size: 1.1rem;
    color: var(--color-text-mut);
    margin-bottom: 2rem;
}

/* ═══════════════ ABOUT SECTION ═══════════════ */
.about-section { background: var(--warm-bg); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-photo-wrap { overflow: hidden; }
.about-photo { width: 100%; height: auto; display: block; mix-blend-mode: darken; }
.about-text p { margin-bottom: 16px; color: var(--gray-600); }
.about-quote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 24px 0; font-style: italic; color: var(--gold-dark); font-size: 1.1rem; background: rgba(184,153,94,0.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ═══════════════ BODY MAP SECTION ═══════════════ */
.body-map-section { background: var(--white); }
.bm-interactive { max-width: 1200px; margin: 0 auto; }
.bm-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; }
.bm-tab { background: var(--gray-50); border: 1.5px solid var(--gray-200); color: var(--gray-600); padding: 12px 32px; border-radius: 100px; font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.3s var(--ease-out); }
.bm-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.bm-tab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.bm-view { display: none; animation: fadeIn 0.4s ease; }
.bm-view.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.bm-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 992px) { .bm-layout { grid-template-columns: 1fr auto 1fr; gap: 24px; } }
.bm-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bm-image-wrapper { position: relative; display: inline-block; }
.bm-silhouette { max-height: 750px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 4px 20px rgba(184,153,94,0.15)); }
.bm-back-img { transform: scaleX(-1); }

.bm-point { position: absolute; width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, 0.85); border: 2px solid var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; font-family: var(--font-heading); cursor: pointer; transform: translate(-50%, -50%); transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.15); z-index: 10; }
.bm-point:hover { background: var(--gold); color: var(--white); transform: translate(-50%, -50%) scale(1.15); box-shadow: 0 4px 12px rgba(184, 153, 94, 0.4); z-index: 15; }
@media (max-width: 768px) { .bm-point { width: 22px; height: 22px; font-size: 9px; border-width: 1.5px; } }

.bm-label { margin-top: 12px; font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.bm-side h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--gray-100); text-transform: uppercase; letter-spacing: 2px; }
.bm-list { list-style: none; padding: 0; margin: 0; }
.bm-list li { position: relative; padding: 8px 0 8px 36px; color: var(--gray-600); font-size: 13px; line-height: 1.6; border-bottom: 1px solid var(--gray-50); transition: background 0.2s ease; }
.bm-list li:hover { background: rgba(184,153,94,0.04); }
.bm-n { position: absolute; left: 0; top: 8px; min-width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; background: rgba(184,153,94,0.1); color: var(--gold-dark); border-radius: 50%; font-size: 10px; font-weight: 700; border: 1px solid rgba(184,153,94,0.25); }
@media (max-width: 991px) { .bm-center { order: -1; margin-bottom: 24px; } .bm-silhouette { max-height: 450px; } }
.body-map-interactive {
    max-width: 1000px;
    margin: 0 auto;
}

.bm-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.bm-tab-btn {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-mut);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.bm-tab-btn:hover {
    color: var(--color-text);
    border-color: rgba(184, 153, 94, 0.3);
}

.bm-tab-btn.active {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    font-weight: 500;
}

.bm-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.bm-panel.active {
    display: block;
}

.bm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bm-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.bm-col {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.bm-col-title {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.bm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bm-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-mut);
    line-height: 1.6;
}

.bm-list li:last-child {
    margin-bottom: 0;
}

.bm-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 153, 94, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(184, 153, 94, 0.3);
}

/* ═══════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════ */
.video-section {
    background-color: var(--white);
    padding: 100px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(184, 153, 94, 0.3);
}

.video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold));
    z-index: 0;
    opacity: 0.5;
}

.custom-video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 2px);
    object-fit: cover;
    aspect-ratio: 9/16;
}

.video-cta-wrap {
    text-align: center;
    margin-top: 48px;
}

/* ═══════════════════════════════════════════════════
   INSTAGRAM SECTION
   ═══════════════════════════════════════════════════ */
.instagram-section {
    background-color: var(--warm-bg);
}

.ig-profile-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.ig-pfp {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    flex-shrink: 0;
}

.ig-pfp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: var(--dark);
}

.ig-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.ig-stats {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.ig-stats strong {
    color: var(--dark);
}

.ig-bio {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-700);
}

.ig-bio strong {
    font-weight: 600;
    color: var(--dark);
}

.ig-actions .btn {
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 14px;
    background: #0095f6; /* Instagram Blue */
    color: #fff;
    border-radius: 8px;
    padding: 12px 24px;
}

.ig-actions .btn:hover {
    background: #1877f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 149, 246, 0.3);
}

@media (max-width: 480px) {
    .ig-header {
        flex-direction: column;
        text-align: center;
    }
    .ig-stats {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════
   INFINITE SCROLLING REVIEWS MARQUEE
   ═══════════════════════════════════════════════════ */
.reviews-marquee-container {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    width: max-content;
    animation: reviewsMarquee 45s linear infinite;
}

.reviews-marquee-container:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviewsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-marquee-card {
    width: 460px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid rgba(184, 153, 94, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out);
}

.review-marquee-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--gold-light);
    box-shadow: 0 20px 40px rgba(184, 153, 94, 0.12);
}

.review-stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.review-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 28px;
    white-space: normal;
}

.review-client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.avatar-gold {
    background: linear-gradient(135deg, #E5C07B 0%, #B8995E 100%);
}

.avatar-bronze {
    background: linear-gradient(135deg, #C5A059 0%, #8C6A2E 100%);
}

.avatar-copper {
    background: linear-gradient(135deg, #D4AF37 0%, #A67C00 100%);
}

.avatar-dark {
    background: linear-gradient(135deg, #9C7E46 0%, #5E4822 100%);
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.client-meta {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 400;
}

/* Responsive adjustments for marquee reviews */
@media (max-width: 767px) {
    .review-marquee-card {
        width: 320px;
        padding: 24px;
    }
    
    .review-text {
        font-size: 13.5px;
        margin-bottom: 20px;
    }
    
    .client-avatar {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    
}

/* ═══════════════════════════════════════════════════
   BOOKING SECTION & CALENDLY WIDGET
   ═══════════════════════════════════════════════════ */
.booking-section {
    background: var(--warm-bg);
}

.booking-notice {
    max-width: 800px;
    margin: 0 auto 48px auto;
    background: rgba(184, 153, 94, 0.04);
    border: 1px solid rgba(184, 153, 94, 0.16);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(184, 153, 94, 0.03);
}

.notice-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.notice-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--gray-700);
}

.notice-text strong {
    color: var(--dark);
    font-weight: 600;
}

.booking-widget-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(184, 153, 94, 0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 12px;
}

/* Responsive adjustments for booking */
@media (max-width: 767px) {
    .booking-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .notice-icon {
        font-size: 32px;
    }
    
    .notice-text {
        font-size: 13.5px;
        line-height: 1.6;
    }
    
    .booking-widget-wrapper {
        border-radius: var(--radius-lg);
        padding: 6px;
    }
}

/* ═══════════════════════════════════════════════════
   AGREEMENT SECTION
   ═══════════════════════════════════════════════════ */
.agreement-section {
    background: var(--white);
}

.agreement-fallback {
    text-align: center;
    margin-top: 32px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--gray-500);
}

.agreement-fallback a {
    color: var(--gold-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.agreement-fallback a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.agreement-fallback a:hover {
    color: var(--gold);
}

.agreement-fallback a:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .agreement-fallback {
        font-size: 13.5px;
        margin-top: 24px;
    }
}