/* =====================================
   RESET / BASE (LOVEABLE)
===================================== */

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

:before,
:after {
    --tw-content: "";
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: Inter, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Playfair Display, serif;
}

a {
    color: inherit;
    text-decoration: inherit;
}

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

/* =====================================
   CONTAINER (CUSTOM OVERRIDE)
===================================== */

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* =====================================
   GLOBAL HELPERS
===================================== */

.section {
    position: relative;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    border-radius: 8px;
}

/* =====================================
   HEADER / NAVIGATION
===================================== */
.tpl-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(180deg, #0b1220 0%, #0a1324 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tpl-nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.tpl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tpl-logo-text {
    font-family: Playfair Display, serif;
    font-size: 28px;
    font-weight: 600;
    color: #fbbf24;
}

.tpl-logo-sub {
    font-size: 14px;
    color: #9ca3af;
}

/* Desktop Menu */
.tpl-menu {
    gap: 40px;
}

.tpl-menu a {
    font-size: 16px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.tpl-menu a:hover {
    color: #ffffff;
}

/* CTA Button */
.tpl-cta {
    padding: 14px 26px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #000;
    font-weight: 600;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.tpl-hamburger {
    color: #ffffff;
}

/* =========================
   MOBILE MENU
========================= */

.tpl-mobile-menu {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left,
            #1f2937,
            #020617);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
}

.tpl-mobile-menu.active {
    transform: translateX(0);
}

.tpl-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tpl-close {
    color: #ffffff;
}

/* Mobile Links */
.tpl-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.tpl-mobile-links a {
    font-size: 22px;
    color: #ffffff;
}

/* Mobile CTA */
.tpl-mobile-cta {
    margin-top: auto;
    width: 100%;
    padding: 18px;
    font-size: 18px;
}






/* =========================
   GLOBAL INTERACTIONS (ONCE)
========================= */

.btn,
.stat-card {
    transition: all 0.35s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.stat-card:hover {
    transform: translateY(-6px);
}

/* =========================
   HERO SECTION
========================= */






/* .section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;

    background-image: url("https://placehold.co/600x400");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-color: #0f172a;
}

.section-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.75),
            rgba(15, 23, 42, 0.85));
    z-index: 1;
} */






.section-hero {
    padding: clamp(120px, 15vh, 160px) 0 clamp(80px, 12vh, 120px);
    background:
        radial-gradient(circle at center, rgba(251, 191, 36, 0.12), transparent 55%),
        linear-gradient(180deg, #020617, #020617);
    color: #ffffff;
}

.hero-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 32px;
}

/* Title */
.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title .hero_title_highlight {
    color: #fbbf24;
}

/* Description */
.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: #9ca3af;
    max-width: 720px;
    margin: 0 auto 40px;
}

/* Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.35);
}

.btn-outline {
    border: 2px solid #fbbf24;
    color: #fbbf24;
}

.btn-outline:hover {
    background: rgba(251, 191, 36, 0.1);
}

/* Helper */
.hero-helper {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 64px;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.stat-card {
    padding: 20px;
    border-radius: 20px;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.stat-icon {
    color: #fbbf24;
    margin-bottom: 12px;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-value {
    font-size: 26px;
    font-weight: 600;
    color: #fbbf24;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}







/* =========================
   WHY THIS PODCAST MATTERS
========================= */

.section-why {
    position: relative;
    background: #0f1524;
    padding: 90px 0 110px;
    overflow: hidden;
}

/* -------------------------
   BACKGROUND SHAPES
------------------------- */

.why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(251, 191, 36, 0.18),
            rgba(251, 191, 36, 0.04),
            transparent 70%);
    filter: blur(50px);
    animation: floatBlob 18s ease-in-out infinite;
}

/* individual positions */
.blob-1 {
    top: 10%;
    left: -120px;
}

.blob-2 {
    bottom: 15%;
    right: -140px;
    animation-delay: 4s;
}

.blob-3 {
    top: 45%;
    left: 60%;
    width: 220px;
    height: 220px;
    animation-delay: 8s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* -------------------------
   CONTENT LAYER
------------------------- */

.section-why .container {
    position: relative;
    z-index: 1;
}

/* Heading */
.why-head {
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    /* 🔥 FIXED: heading visible */
}

.section-title .why_title_highlight {
    color: #fbbf24;
}

.section-title .highlight {
    color: #fbbf24;
}

.section-desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: #b0b7c3;
    /* slightly brighter */
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Cards */
.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px 30px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.why-card p {
    font-size: 14.5px;
    line-height: 1.55;
    color: #9ca3af;
}

/* Icon */
.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

/* Hover (system-based, subtle) */
.why-card:hover {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 34px;
    }

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



















/* section */
.rendal-how-it-works {
    padding: 120px 0;
    background: #070b14;
    color: #d1d5db;
}

/* heading */
.rendal-title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}

.rendal-title .how_title_highlight {
    color: #f5b63a;
}

.rendal-subtitle {
    margin-top: 12px;
    font-size: 16px;
    color: #9ca3af;
}

/* cards */
.rendal-card {
    position: relative;
    height: 100%;
    padding: 48px 32px;
    border-radius: 20px;
    background: #0b1222;
    transition: transform .35s ease, box-shadow .35s ease;
}

.rendal-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(245, 182, 58, .18);
}

/* step number */
.rendal-step {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 46px;
    font-weight: 700;
    color: rgba(245, 182, 58, .12);
}

/* icon */
.rendal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(245, 182, 58, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5b63a;
}

/* card text */
.rendal-card h5 {
    text-align: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
}

.rendal-card p {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

/* bottom note */
.rendal-note {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #f5b63a;
}

/* background animated line */
.rendal-bg-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(245, 182, 58, .25),
            transparent);
    animation: rendal-line-move 6s infinite linear;
}

@keyframes rendal-line-move {
    0% {
        opacity: .3;
    }

    50% {
        opacity: .8;
    }

    100% {
        opacity: .3;
    }
}

/* leader block wrapper */
.rendal-leader-wrap {
    padding-top: 100px;
}

/* title */
.rendal-leader-title {
    font-size: 46px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
}

.rendal-leader-title .leader_title_highlight {
    color: #f5b63a;
}

/* main card */
.rendal-leader-card {
    max-width: 900px;
    background: linear-gradient(180deg, #0b1222, #070b14);
    border-radius: 22px;
    padding: 48px 44px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

/* subtitle */
.rendal-leader-sub {
    color: #9ca3af;
    margin-bottom: 28px;
}

/* checklist item */
.rendal-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    color: #e5e7eb;
}

/* icon */
.rendal-check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(245, 182, 58, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5b63a;
    flex-shrink: 0;
}

/* bottom text */
.rendal-leader-note {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.rendal-leader-desc {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 26px;
}

/* button */
.rendal-apply-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    color: #070b14;
    font-weight: 600;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.rendal-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 182, 58, .45);
}























/* =========================
   FEATURED EPISODES
========================= */

.section-episodes {
    background: #020617;
    padding: 80px 0 95px;
    /* ⬅ compact viewport */
}

.episodes-head {
    max-width: 620px;
    margin: 0 auto 48px;
}

/* Swiper spacing */
.episodes-swiper {
    padding-bottom: 10px;
}

/* Card */
.episode-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.35);
}

/* Thumbnail */
.episode-thumb {
    position: relative;
    height: 200px;
    /* ⬅ smaller height */
    background: linear-gradient(135deg, #374151, #111827);
}

.play-btn {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    background: #fbbf24;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Content */
.episode-body {
    padding: 18px 20px 20px;
}

.episode-body h3 {
    font-size: 15.5px;
    margin-bottom: 8px;
    color: #ffffff;
}

.episode-name {
    font-size: 13.5px;
    color: #fbbf24;
}

.episode-role {
    font-size: 12.8px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.episode-meta {
    display: flex;
    gap: 14px;
    font-size: 12.5px;
    color: #9ca3af;
}

/* CTA */
.episodes-cta {
    margin-top: 44px;
}

/* =========================
   EPISODES NAV BUTTONS
========================= */

.episodes-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.episodes-prev,
.episodes-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.episodes-prev svg,
.episodes-next svg {
    width: 18px;
    height: 18px;
}

/* Hover */
.episodes-prev:hover,
.episodes-next:hover {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

/* Hide on small screens (swipe UX) */
@media (max-width: 640px) {
    .episodes-nav {
        display: none;
    }
}




















/* =========================
   TESTIMONIALS FINAL
========================= */

.section-testimonials {
    position: relative;
    background: #020617;
    padding: 90px 0 110px;
    overflow: hidden;
}

/* BG DOT */
.testi-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-dot {
    position: absolute;
    width: 240px;
    height: 240px;
    top: 22%;
    right: -120px;
    fill: rgba(251, 191, 36, 0.25);
    filter: blur(60px);
    animation: pulseDot 8s ease-in-out infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.15);
        opacity: .9;
    }

    100% {
        transform: scale(1);
        opacity: .6;
    }
}

/* Swiper */
.testi-swiper {
    max-width: 56rem;
    margin: 0 auto;
    padding-top: 16px;
    overflow: visible;
}

.swiper-wrapper {
    align-items: stretch;
    /* 🔥 SAME HEIGHT */
}

/* Card */
.testi-card {
    height: 100%;
    min-height: 260px;
    /* 🔥 LOCKED HEIGHT */
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 34px 32px;
    transition: transform .3s ease, border-color .3s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.35);
}

/* Quote */
.quote-icon {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    color: rgba(251, 191, 36, 0.3);
    margin-bottom: 16px;
}

/* Text */
.testi-text {
    flex-grow: 1;
    font-size: 15.5px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 26px;
}

/* User */
.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #374151, #111827);
}

/* Nav Buttons */
.testi-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.testi-prev,
.testi-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fbbf24;
    font-size: 20px;
    transition: all .3s ease;
}

.testi-prev:hover,
.testi-next:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .testi-nav {
        display: none;
    }

    .testi-card {
        min-height: auto;
    }
}





















/* =========================
   CTA SECTION (ZOOMED)
========================= */

.section-cta {
    position: relative;
    background: #020617;
    padding: 130px 0 150px;
    /* ⬅ more zoom */
    overflow: hidden;
}

/* Background Glow */
.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    /* ⬅ bigger glow */
    height: 520px;
    background: radial-gradient(circle,
            rgba(251, 191, 36, 0.24),
            rgba(251, 191, 36, 0.1),
            transparent 70%);
    filter: blur(90px);
    animation: glowPulse 7s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: .7;
    }

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

    100% {
        transform: translateX(-50%) scale(1);
        opacity: .7;
    }
}

/* Content */
.section-cta .container {
    position: relative;
    z-index: 1;
}

/* Heading */
.cta-head {
    max-width: 720px;
    /* ⬅ wider */
    margin: 0 auto 64px;
}

.cta-head .section-title {
    font-size: 44px;
    /* ⬅ zoomed */
}

.cta-head .section-desc {
    font-size: 16px;
}

/* Card */
.cta-card {
    max-width: 480px;
    /* ⬅ bigger card */
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 42px 38px 44px;
    /* ⬅ more breathing */
    backdrop-filter: blur(6px);
}

/* Form */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    font-size: 14px;
    /* ⬅ zoom */
    color: #e5e7eb;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    height: 52px;
    /* ⬅ taller input */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 16px;
    color: #ffffff;
    font-size: 15px;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.55);
    background: rgba(255, 255, 255, 0.07);
}

/* Button */
.cta-btn {
    width: 100%;
    height: 54px;
    /* ⬅ bigger CTA */
    margin-top: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(251, 191, 36, 0.38);
}

/* Note */
.cta-note {
    margin-top: 18px;
    font-size: 13.5px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 640px) {
    .section-cta {
        padding: 100px 0 110px;
    }

    .cta-head .section-title {
        font-size: 34px;
    }

    .cta-card {
        padding: 32px 26px 34px;
    }
}












/* =========================
   FAQ SECTION
========================= */

.section-faq {
    background: #020617;
    padding: 0 0 140px;
}

.faq-head {
    max-width: 720px;
    margin: 0 auto 64px;
}

/* FAQ Wrapper */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Item */
.faq-item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.35);
}

/* Question */
.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question:focus {
    outline: none;
}

/* Icon */
.faq-icon {
    font-size: 18px;
    color: #fbbf24;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 26px 22px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #9ca3af;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Responsive */
@media (max-width: 640px) {
    .section-faq {
        padding: 90px 0 110px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 22px;
    }
}






/* =========================
   FOOTER
========================= */

.site-footer {
    background: linear-gradient(180deg, #020617, #01040d);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0 42px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Left */
.footer-left {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo .tpl {
    font-family: Playfair Display, serif;
    font-size: 22px;
    font-weight: 600;
    color: #fbbf24;
}

.footer-logo .brand {
    font-size: 16px;
    color: #e5e7eb;
}

.footer-copy {
    font-size: 13.5px;
    color: #9ca3af;
}

/* Center Links */
.footer-links {
    display: flex;
    gap: 26px;
}

.footer-links a {
    font-size: 14px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}








































/* =========================
   FLOATING ACTION BUTTONS
========================= */

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

/* WhatsApp */
.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

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

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

/* Language Switch */
.lang-switch {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.lang-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fbbf24;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(251, 191, 36, 0.18);
    transform: translateY(-2px);
}

/* Dropdown */
.lang-menu {
    position: absolute;
    right: 0;
    bottom: 56px;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    min-width: 140px;
    display: none;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.lang-menu button {
    background: transparent;
    border: none;
    color: #e5e7eb;
    font-size: 14px;
    padding: 10px 12px;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lang-menu button:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

/* Active */
.lang-menu.active {
    display: flex;
}

/* Mobile tweak */
@media (max-width: 640px) {
    .floating-actions {
        right: 16px;
        bottom: 16px;
    }
}