/* ==========================================================================
   Faradisa HomeStay Landing Page - Premium Slate & Amber Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@1,400;1,600;1,700&display=swap');

:root {
    --primary: #c2410c;
    --primary-hover: #9a3412;
    --primary-light: #ffedd5;
    --brand-amber: #f97316;
    --emerald-green: #10b981;
    --emerald-dark: #059669;
    --dark-slate: #0f172a;
    --dark-slate-hover: #1e293b;
    --gold-soft: #fde047;
    --card-bg: #ffffff;
    --bg-soft: #f8fafc;
    --text-slate-900: #0f172a;
    --text-slate-800: #1e293b;
    --text-slate-600: #475569;
    --text-slate-500: #64748b;
    --text-slate-400: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-slate-800);
    background-color: var(--bg-soft);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

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

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================
   1. STICKY HEADER / NAVBAR
   ========================================== */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.35s ease;
}

.navbar-transparent {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-brand-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar-scrolled .nav-brand-title {
    color: var(--text-slate-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }
}

.nav-item-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-scrolled .nav-item-link {
    color: var(--text-slate-800);
}

.nav-item-link:hover {
    color: var(--brand-amber) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.nav-phone-contact {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar-scrolled .nav-phone-contact {
    color: var(--text-slate-800);
}

@media (max-width: 640px) {
    .nav-phone-contact {
        display: none;
    }
}

.btn-header-wa {
    padding: 0.6rem 1.35rem;
    border-radius: 50px;
    background-color: var(--emerald-green);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-header-wa:hover {
    background-color: var(--emerald-dark);
    transform: translateY(-1px);
}

/* Theme Toggle Dark/Light Button */
.btn-theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--dark-slate);
    color: var(--gold-soft);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.btn-theme-toggle:hover {
    transform: scale(1.08);
    background-color: var(--dark-slate-hover);
    color: #ffffff;
}

.navbar-scrolled .btn-theme-toggle {
    background-color: #f1f5f9;
    color: var(--dark-slate);
    border-color: var(--border-color);
}

.navbar-scrolled .btn-theme-toggle:hover {
    background-color: var(--dark-slate);
    color: var(--gold-soft);
}

/* ==========================================
   DARK MODE OVERRIDES (body.dark-mode)
   ========================================== */
body.dark-mode {
    background-color: #0b1120;
    color: #f1f5f9;
}

body.dark-mode .section-title {
    color: #ffffff;
}

body.dark-mode .section-desc {
    color: #94a3b8;
}

body.dark-mode .feature-card,
body.dark-mode .room-card,
body.dark-mode .testimonial-card,
body.dark-mode .contact-card {
    background-color: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .feature-card-title,
body.dark-mode .room-title,
body.dark-mode .author-name {
    color: #ffffff;
}

body.dark-mode .feature-card-desc,
body.dark-mode .testimonial-text {
    color: #cbd5e1;
}

body.dark-mode .bg-soft-section {
    background-color: #0f172a;
    border-color: #334155;
}

body.dark-mode .qty-box {
    background-color: #0f172a;
    border-color: #334155;
}

body.dark-mode .qty-label {
    color: #cbd5e1;
}

body.dark-mode .qty-num {
    color: #ffffff;
}

body.dark-mode .btn-qty {
    background-color: #334155;
    color: #ffffff;
}

body.dark-mode .pill-item {
    background-color: #334155;
    color: #f1f5f9;
}

body.dark-mode .navbar-scrolled {
    background-color: rgba(15, 23, 42, 0.96);
    border-color: #334155;
}

body.dark-mode .navbar-scrolled .nav-brand-title,
body.dark-mode .navbar-scrolled .nav-item-link,
body.dark-mode .navbar-scrolled .nav-phone-contact {
    color: #ffffff !important;
}

body.dark-mode .hero-info-card {
    background-color: rgba(30, 41, 59, 0.95);
    border-color: #334155;
    color: #ffffff;
}

body.dark-mode .info-title {
    color: #ffffff;
}

body.dark-mode .btn-card-secondary {
    background-color: #334155;
    color: #ffffff;
}

/* Modal & Form Dark Mode Overrides */
body.dark-mode .modal-card-custom {
    background-color: #1e293b;
    border: 1px solid #334155;
    color: #ffffff;
}

body.dark-mode #modal_room_title {
    color: #ffffff !important;
}

body.dark-mode .form-label-landing {
    color: #f1f5f9;
}

body.dark-mode .form-input-landing {
    background-color: #0f172a;
    border-color: #334155;
    color: #ffffff;
    color-scheme: dark;
}

body.dark-mode .extra-facility-box {
    background-color: #0f172a !important;
    border-color: #334155 !important;
}

body.dark-mode .extra-facility-box label {
    color: #f8fafc !important;
}

/* NusaKos Location Section Dark Mode Overrides */
body.dark-mode .nusakos-info-card {
    background-color: #1e293b;
    border-color: #334155;
    color: #ffffff;
}

body.dark-mode .nusakos-info-label {
    color: #ffffff;
}

body.dark-mode .nusakos-info-text {
    color: #cbd5e1;
}

body.dark-mode .nusakos-info-icon {
    background-color: #0f172a;
    color: #f97316;
}

body.dark-mode .nusakos-map-box {
    background-color: #1e293b;
    border-color: #334155;
}

/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero-wrapper {
    position: relative;
    padding-top: 150px;
    padding-bottom: 180px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: var(--dark-slate);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
    transition: background-image 1.2s ease-in-out;
}

.hero-inner {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gold-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before,
.hero-badge::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background-color: rgba(253, 224, 71, 0.5);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-title-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--gold-soft);
    font-weight: 500;
    display: block;
    margin-top: 0.2rem;
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.btn-hero-primary {
    padding: 1rem 2.25rem;
    border-radius: 50px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(194, 65, 12, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(194, 65, 12, 0.5);
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Floating Hero Info Widget */
.hero-info-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: calc(100% - 3rem);
    max-width: 880px;
    z-index: 30;
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    color: var(--text-slate-900);
}

.hero-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.info-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.info-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald-dark);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--emerald-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.info-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-slate-900);
    line-height: 1.2;
}

.info-right-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-card-primary {
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.25);
}

.btn-card-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-card-secondary {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background-color: #f1f5f9;
    color: var(--text-slate-800);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-card-secondary:hover {
    background-color: #e2e8f0;
}

.hero-card-footer-strip {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-slate-500);
    font-weight: 500;
}

/* ==========================================
   3. GENERAL SECTION STYLING
   ========================================== */
.section-wrapper {
    padding-top: 130px;
    padding-bottom: 90px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
}

.badge-soft {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-slate-900);
    letter-spacing: -0.025em;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-slate-600);
    margin-top: 0.75rem;
}

/* ==========================================
   4. FEATURES GRID
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #fdba74;
}

.feature-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background-color: var(--primary);
    color: #ffffff;
}

.feature-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-slate-900);
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    font-size: 0.875rem;
    color: var(--text-slate-600);
    line-height: 1.6;
}

/* ==========================================
   5. ROOM CARDS GRID
   ========================================== */
.bg-soft-section {
    background-color: rgba(241, 245, 249, 0.7);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.room-card {
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #fdba74;
}

.room-img-container {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

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

.badge-code {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: monospace;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e11d48;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.4);
}

.room-body {
    padding: 1.75rem;
}

.room-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-slate-900);
    margin-bottom: 0.35rem;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-slate-500);
    margin-bottom: 1.25rem;
}

.stars {
    color: #eab308;
    font-weight: 700;
}

.qty-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8fafc;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.qty-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-slate-600);
}

.qty-counter {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-qty {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #e2e8f0;
    color: #1e293b;
    border: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-qty:hover {
    background-color: #cbd5e1;
    color: #0f172a;
}

.qty-num {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-slate-900);
    min-width: 22px;
    text-align: center;
}

.pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.pill-item {
    background-color: #f1f5f9;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pill-item i {
    color: var(--primary);
    font-size: 0.65rem;
}

.room-footer {
    padding: 1.75rem;
    padding-top: 0;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.price-box {
    margin-bottom: 1.25rem;
}

.price-strike {
    font-size: 0.8rem;
    color: var(--text-slate-400);
    text-decoration: line-through;
}

.price-final {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-hover);
}

.price-unit {
    font-size: 0.8rem;
    color: var(--text-slate-500);
    font-weight: 600;
}

.btn-book-wa,
.btn-book-now {
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
    transition: all 0.25s ease;
}

.btn-book-wa:hover,
.btn-book-now:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 8px 20px rgba(194, 65, 12, 0.4);
}

.btn-book-now i {
    transition: transform 0.25s ease;
}

.btn-book-now:hover i {
    transform: translateX(4px);
}

/* ==========================================
   6. EXTRA SERVICES
   ========================================== */
.bg-amber-dark {
    background-color: var(--primary-hover);
    color: #ffffff;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.extra-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.75rem;
    border-radius: 20px;
}

.extra-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.extra-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold-soft);
    margin-bottom: 0.5rem;
}

/* ==========================================
   7. TESTIMONIALS & STATS
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.25rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-slate-600);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-slate-900);
}

.author-city {
    font-size: 0.75rem;
    color: var(--text-slate-500);
}

.stats-card {
    background-color: var(--dark-slate);
    color: #ffffff;
    border-radius: 30px;
    padding: 3.5rem 2rem;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--gold-soft);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-slate-400);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ==========================================
   NUSAKOS STACKED LOCATION & CONTACT SECTION (SS2)
   ========================================== */
.nusakos-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .nusakos-location-grid {
        grid-template-columns: 1fr;
    }
}

.nusakos-map-box {
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.nusakos-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.nusakos-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.nusakos-info-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 1.35rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.nusakos-info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: #fdba74;
}

.nusakos-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.nusakos-info-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-slate-900);
    margin-bottom: 0.15rem;
}

.nusakos-info-text {
    font-size: 0.85rem;
    color: var(--text-slate-600);
    line-height: 1.5;
}

/* ==========================================
   9. FOOTER & FLOATING WA BUTTON
   ========================================== */
.landing-footer {
    background-color: var(--dark-slate);
    color: var(--text-slate-400);
    padding: 3.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.floating-wa-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--emerald-green);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 99;
    transition: all 0.3s ease;
}

.floating-wa-btn:hover {
    transform: scale(1.06) translateY(-2px);
    background-color: var(--emerald-dark);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
    color: #ffffff;
}

/* ==========================================
   10. MODALS
   ========================================== */
.modal-backdrop-custom {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-card-custom {
    background-color: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: scale(0.92);
    transition: transform 0.3s ease;
    padding: 2rem;
}

.modal-backdrop-custom.active .modal-card-custom {
    transform: scale(1);
}

.form-group-landing {
    margin-bottom: 1.25rem;
}

.form-label-landing {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-slate-900);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.form-input-landing {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    background-color: #ffffff;
}

.form-input-landing:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.15);
}
