/* =============================================================
   DESIGN TOKENS
   ============================================================= */
:root {
    /* Palette */
    --teal-deep: #0a2e2a;
    --teal-dark: #0f3d37;
    --teal-mid: #145c53;
    --teal-bright: #1d8a7a;
    --teal-glow: #46e2cb;
    --blush: #f2a8c0;
    --blush-light: #fce4ee;
    --gold: #e8c87a;
    --gold-light: #f5e4b0;
    --cream: #fdf6f0;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);

    /* Typography */
    --font-body: 'DM Sans', 'EB Garamond', serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;

    /* Semantic colour helpers */
    --blush-bg: rgba(242, 168, 192, 0.15);
    --blush-border: rgba(242, 168, 192, 0.30);
    --teal-bg: rgba(37, 176, 156, 0.12);
    --teal-border: rgba(37, 176, 156, 0.25);
    --gold-bg: rgba(232, 200, 122, 0.12);
    --gold-border: rgba(232, 200, 122, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);

    /* Shared values */
    --pill-radius: 50px;
    --card-radius: 24px;
    --grad-blush: linear-gradient(135deg, var(--blush), #c4548e);
    --transition-lift: transform 0.25s, box-shadow 0.25s;
}


/* =============================================================
   RESET & BASE
   ============================================================= */
*,
em,
i {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

em,
i {
    font-family: var(--font-script);
    font-style: normal;
    letter-spacing: 0.05em;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--teal-deep);
    color: var(--white);
    overflow-x: hidden;
}

section {
    position: relative;
    z-index: 1;
}


/* =============================================================
   ANIMATED BACKGROUND — orbs, sparkles, petals
   ============================================================= */
.bg-orbs,
.sparkles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-orbs {
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: floatOrb linear infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--teal-glow);
    top: -100px;
    left: -100px;
    animation-duration: 20s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    top: 30%;
    right: -80px;
    animation-duration: 25s;
    animation-delay: -8s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gold);
    bottom: 10%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: -5s;
}

.orb-4 {
    width: 280px;
    height: 280px;
    background: var(--teal-bright);
    top: 60%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: -12s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.08);
    }
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: twinkle ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

.petal {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: petalFall linear infinite;
}

@keyframes petalFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.flower-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.18;
    animation: rotateSlow linear infinite;
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg);
    }
}


/* =============================================================
   NAVIGATION
   ============================================================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 4rem;
    background: rgba(10, 46, 42, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    /* vertical center */
    gap: 8px;
    /* space between image and text */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--teal-glow);
    text-shadow: 0 0 12px rgba(70, 226, 203, 0.75);
    transform: translateY(-1px);
}

/* Hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 2.4rem;
    height: 2.4rem;
    position: relative;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span::before {
    content: '';
    top: -8px;
}

.nav-toggle span::after {
    content: '';
    top: 8px;
}


/* =============================================================
   SHARED PILL RADIUS
   ============================================================= */
.nav-cta,
.btn-primary,
.btn-outline,
.cat-tab,
.pc-btn,
.contact-btn,
.cat-header-link,
.lp-unit,
.hero-badge,
.section-eyebrow,
.pill {
    border-radius: var(--pill-radius);
}


/* =============================================================
   BUTTONS
   ============================================================= */

/* Nav CTA — always visible outside the dropdown */
.nav-cta {
    background: linear-gradient(135deg, var(--blush), #d4619a);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-lift);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--blush-border);
}

/* Shared lift transition */
.btn-primary,
.btn-outline,
.contact-btn {
    transition: var(--transition-lift);
}

.btn-primary {
    background: var(--grad-blush);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242, 168, 192, 0.45);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(232, 200, 122, 0.08);
    transform: translateY(-3px);
}


/* =============================================================
   HERO
   ============================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 4rem;
}

.hero-inner {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeSlideDown 0.8s ease both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeSlideDown 0.8s ease 0.1s both;
}

/* "Serrana" overlaps into "Mona Lisa" and matches its width */
.hero-name span {
    font-family: var(--font-script);
    font-weight: 500;
    color: var(--blush);
    display: block;
    margin-top: -0.20em;
    font-size: 1.2em;
    transform: scaleX(1.2);
    transform-origin: center;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeSlideDown 0.8s ease 0.2s both;
}

.hero-tagline em {
    color: var(--teal-glow);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideDown 0.8s ease 0.3s both;
}

.hero-deco {
    position: absolute;
    pointer-events: none;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeSlideDown 0.8s ease 0.6s both;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--blush), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Hero keyframes */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}


/* =============================================================
   DIVIDER
   ============================================================= */
.divider {
    text-align: center;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    opacity: 0.4;
}


/* =============================================================
   SECTION HEADER
   ============================================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-glow);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
}

.section-title em {
    color: var(--blush);
}

.section-sub {
    margin: 1rem auto 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
    line-height: 1.7;
}


/* =============================================================
   ABOUT
   ============================================================= */
.about {
    padding: 7rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Shared glass card surface */
.about-card,
.product-card,
.testi-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.about-card {
    border-radius: var(--card-radius);
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Shared rotating shimmer overlay */
.about-card::before,
.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: shimmer 6s linear infinite;
}

.about-card::before {
    background: radial-gradient(circle, rgba(37, 176, 156, 0.08) 0%, transparent 60%);
}

.contact-card::before {
    background: radial-gradient(circle, rgba(242, 168, 192, 0.06) 0%, transparent 60%);
    animation-duration: 8s;
}

@keyframes shimmer {
    to {
        transform: rotate(360deg);
    }
}

.about-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: floatAvatar 4s ease-in-out infinite;
}

.about-avatar img {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes floatAvatar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.about-card h3 {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.stat-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--teal-glow);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text h2 em {
    color: var(--blush);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.pill {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.pill-blush {
    background: var(--blush-bg);
    border: 1px solid var(--blush-border);
    color: var(--blush);
}

.pill-teal {
    background: var(--teal-bg);
    border: 1px solid var(--teal-border);
    color: var(--teal-glow);
}

.pill-gold {
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    color: var(--gold);
}


/* =============================================================
   BEAUTY / PRODUCT SECTION
   ============================================================= */
.beauty-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.cat-tab {
    padding: 0.55rem 1.4rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-body);
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all 0.25s;
}

.cat-tab:hover {
    border-color: var(--blush);
    color: var(--blush);
    background: rgba(242, 168, 192, 0.07);
}

.cat-tab.active {
    background: linear-gradient(135deg, rgba(242, 168, 192, 0.25), rgba(242, 168, 192, 0.1));
    border-color: var(--blush);
    color: var(--white);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.cat-header-icon {
    font-size: 1.8rem;
    animation: iconBounce 3s ease-in-out infinite;
}

.cat-header-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.cat-header-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.cat-header-link {
    margin-left: auto;
    text-decoration: none;
    font-size: 0.82rem;
    color: var(--teal-glow);
    border: 1px solid var(--teal-border);
    padding: 0.4rem 1rem;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.cat-header-link:hover {
    background: var(--teal-bg);
    color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.product-card {
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--blush-border);
}

.pc-img {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.pc-img-premium {
    background: linear-gradient(135deg, #1d5e54, #0f3d37);
}

.pc-img-serum {
    background: linear-gradient(135deg, #2a4a7a, #1a3060);
}

.pc-img-soap {
    background: linear-gradient(135deg, #6b2d5e, #421b3a);
}

.pc-img-wellness {
    background: linear-gradient(135deg, #2d5a2e, #1a3a1b);
}

.pc-img-icon {
    position: relative;
    z-index: 1;
    animation: iconBounce 3.5s ease-in-out infinite;
}

.pc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.pc-body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-brand {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-glow);
    margin-bottom: 0.3rem;
}

.pc-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.pc-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.9rem;
    flex: 1;
}

.pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.pc-price {
    font-size: 1rem;
    color: var(--gold);
}

.pc-btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.9rem;
    background: var(--blush-bg);
    color: var(--blush);
    border: 1px solid var(--blush-border);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.pc-btn:hover {
    background: rgba(242, 168, 192, 0.28);
}


/* =============================================================
   REAL ESTATE — LE PONT RESIDENCES
   ============================================================= */
.realestate-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(15, 61, 55, 0.6), transparent);
}

.re-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.lp-building-art {
    border-radius: 18px;
    overflow: hidden;
    background: var(--teal-deep);
    border: 1px solid rgba(37, 176, 156, 0.2);
    aspect-ratio: 34/42;
}

.lp-stats-row {
    display: flex;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(37, 176, 156, 0.2);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    margin-top: 1rem;
}

.lp-stat {
    text-align: center;
}

.lp-stat-n {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--teal-glow);
}

.lp-stat-l {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.lp-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.lp-dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.82rem;
    padding: 0.4rem 1rem;
    border-radius: var(--pill-radius);
    width: fit-content;
}

.lp-address {
    font-size: 0.85rem;
    color: var(--teal-glow);
    letter-spacing: 0.03em;
}

.lp-desc {
    font-size: 1.1em;
    color: var(--text-muted);
    line-height: 1.8;
}

.lp-desc em {
    font-style: italic;
    color: var(--gold);
    font-size: 1.3em;
}

.lp-section-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-glow);
    margin-bottom: 0.8rem;
}

.lp-units {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
}

.lp-unit {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem;
    text-align: center;
    transition: background 0.25s, border-color 0.25s;
}

.lp-unit:hover {
    background: var(--teal-bg);
    border-color: var(--teal-border);
}

.lp-unit-ph {
    border-color: var(--gold-border);
    background: rgba(232, 200, 122, 0.05);
}

.lp-unit-ph:hover {
    background: var(--gold-bg);
}

.lp-unit-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.lp-unit-type {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.lp-unit-size {
    font-size: 0.73rem;
    color: var(--text-muted);
}

.lp-ctas {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.re-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.re-feat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: background 0.3s, transform 0.3s;
}

.re-feat:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.re-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37, 176, 156, 0.22), rgba(37, 176, 156, 0.08));
    border: 1px solid var(--teal-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.re-feat-body h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.re-feat-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.lp-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0.7rem;
    margin-bottom: 2.5rem;
}

.lp-loc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.lp-loc-item span {
    color: var(--white);
}

.lp-broker-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(37, 176, 156, 0.15), rgba(242, 168, 192, 0.1));
    border: 1px solid var(--teal-border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-top: 1rem;
}

.lp-broker-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.lp-broker-sub {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
}


/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testi-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border-color: var(--border-subtle);
    transition: transform 0.3s;
}

.testi-card:hover {
    transform: translateY(-4px);
}

.testi-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--blush);
    opacity: 0.4;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush), var(--teal-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.testi-name {
    font-size: 0.9rem;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.gospel-section {
    padding: 7rem 2rem;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.gospel-card {
    background: linear-gradient(135deg, rgba(37, 176, 156, 0.1), rgba(242, 168, 192, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;

}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact-section {
    padding: 7rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    background: linear-gradient(135deg, rgba(37, 176, 156, 0.1), rgba(242, 168, 192, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    color: var(--white);
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.cb-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.cb-fb {
    background: linear-gradient(135deg, #1877f2, #0b5ed7);
}

.cb-ig {
    background: linear-gradient(135deg, #f56040, #c13584, #833ab4);
}

.cb-em {
    background: var(--grad-blush);
}

.cb-wa:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.cb-fb:hover {
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.cb-ig:hover {
    box-shadow: 0 8px 24px rgba(200, 53, 132, 0.5);
}

.cb-em:hover {
    box-shadow: 0 8px 24px rgba(242, 168, 192, 0.4);
}


/* =============================================================
   FOOTER
   ============================================================= */
footer {
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-muted);
    font-size: 0.82rem;
    position: relative;
    z-index: 1;
}

footer span {
    color: var(--blush);
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

/* Tablet */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-logo {
        font-size: 1.35rem;
    }

    .nav-links {
        gap: 1rem;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

    .hero {
        padding: 100px 1.75rem 3rem;
    }

    .hero-name {
        font-size: clamp(2.5rem, 7vw, 5.2rem);
    }

    .hero-name span {
        margin-top: -0.18em;
    }

    .hero-tagline {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }
}

/* Mobile */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        flex-wrap: nowrap;
        /* logo · burger · CTA stay on one line */
        align-items: center;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    /* Show hamburger */
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Links collapse into dropdown */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 46, 42, 0.96);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0 1.2rem;
        margin: 0;
        z-index: 95;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
    }

    /* CTA stays outside the dropdown at all times */
    .nav-cta {
        display: inline-flex;
        flex-shrink: 0;
    }

    /* Layout stacks */
    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lp-hero-card {
        grid-template-columns: 1fr;
    }

    .lp-broker-banner {
        flex-direction: column;
        text-align: center;
    }

    .lp-ctas {
        justify-content: center;
    }
}

/* Hide desktop CTA on mobile, hide mobile CTA item on desktop */
.nav-cta-item {
    display: none;
    /* hidden on desktop by default */
}

@media (max-width: 768px) {
    .nav-cta-desktop {
        display: none;
        /* hide desktop CTA on mobile */
    }

    .nav-cta-item {
        display: list-item;
        /* show mobile CTA inside burger menu */
    }
}