/* ==========================================
   Two Sis Room - Modern Minimal Boutique Theme (Upgraded)
   ========================================== */

:root {
    --bg-main: #FAF9F6;
    --bg-light: #F2F0EB;
    --bg-card: #FFFFFF;
    --dark-surface: #1E242B;
    --dark-card: #28303A;

    --text-dark: #1E242B;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    --accent-warm: #D4A373;
    --accent-warm-hover: #C59363;
    --accent-gold: #C5A880;
    --accent-green: #2E7D32;

    --border-color: #E2E8F0;
    --border-soft: #EFECE6;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    padding-bottom: 70px;
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   🔒 Failsafe Fade-in System
   ========================================== */
.js .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .fade-in.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.no-js .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-surface);
    color: #E2E8F0;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a, .top-bar-contact a {
    color: var(--accent-warm);
    text-decoration: none;
    font-weight: 500;
}

.top-bar-contact .divider, .divider {
    margin: 0 8px;
    color: #475569;
}

@media (max-width: 640px) {
    .top-bar-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* Header & Nav */
header, #header {
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.logo-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-warm);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-warm);
}

.btn-header-cta {
    background-color: var(--text-dark);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-header-cta:hover {
    background-color: var(--accent-warm);
    transform: translateY(-2px);
}

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

/* ==========================================
   Hero Section (Upgraded with Slideshow)
   ========================================== */
.hero {
    position: relative;
    padding: 120px 0 90px;
    color: white;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(30, 36, 43, 0.82), rgba(30, 36, 43, 0.7));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ADE80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #E2E8F0;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    background-color: var(--accent-warm);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-warm-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 28px;
    flex-wrap: wrap;
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #CBD5E1;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    width: 2px;
    height: 30px;
    background: white;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

@media (max-width: 768px) {
    .hero { padding: 80px 0 60px; min-height: 500px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 32px; }
    .hero-highlights { gap: 16px; flex-direction: column; }
    .hero-scroll { display: none; }
}

/* Global Section Layout */
.section {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-warm);
    display: block;
    margin-bottom: 8px;
}

.section-tag.gold { color: var(--accent-gold); }

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.f-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Room Cards Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.room-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
}

.room-card.featured {
    border: 2px solid var(--accent-warm);
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--dark-surface);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 2;
}

.room-badge.highlight {
    background: var(--accent-warm);
}

.room-image-wrap {
    height: 240px;
    overflow: hidden;
}

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

.room-card:hover .room-image-wrap img {
    transform: scale(1.05);
}

.room-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.room-price {
    margin-bottom: 16px;
}

.price-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-warm);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.room-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.room-specs {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.room-specs li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.btn-room {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.2s;
}

.btn-room:hover { background-color: var(--border-color); }
.btn-room.primary { background-color: var(--accent-warm); color: white; }
.btn-room.primary:hover { background-color: var(--accent-warm-hover); }

@media (max-width: 640px) {
    .rooms-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Gallery Section (Upgraded with Filters + Masonry)
   ========================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

.filter-btn.active {
    background-color: var(--accent-warm);
    border-color: var(--accent-warm);
    color: white;
}

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

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    margin: 0;
}

.gallery-card.hidden {
    display: none;
}

/* Masonry variations */
.gallery-card.g-wide {
    grid-column: span 2;
}

.gallery-card.g-tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 36, 43, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 16px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover img { transform: scale(1.08); }
.gallery-card:hover .gallery-overlay { opacity: 1; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-card.g-wide {
        grid-column: span 2;
    }
    .gallery-card.g-tall {
        grid-row: span 1;
        aspect-ratio: 1;
    }
    .gallery-overlay {
        font-size: 0.8rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card.g-wide {
        grid-column: span 1;
    }
}

/* ==========================================
   Modal Lightbox (Upgraded with Navigation + Counter)
   ========================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

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

.modal-caption {
    color: white;
    margin-top: 20px;
    font-size: 1.05rem;
    text-align: center;
    max-width: 800px;
}

.modal-counter {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-size: 0.9rem;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    z-index: 10;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 24px;
}

.modal-next {
    right: 24px;
}

@media (max-width: 768px) {
    .modal-close {
        top: 16px;
        right: 16px;
        font-size: 2rem;
    }
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .modal-prev {
        left: 8px;
    }
    .modal-next {
        right: 8px;
    }
}

/* Calculator Section */
.calc-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background-color: var(--bg-main);
    color: var(--text-dark);
    outline: none;
}

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

.input-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--accent-warm);
    margin-top: 6px;
}

.calc-summary {
    background-color: var(--bg-main);
    padding: 28px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-warm);
    margin: 8px 0;
}

.summary-breakdown {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.summary-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-calc-submit {
    display: block;
    text-align: center;
    background-color: var(--dark-surface);
    color: white;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.btn-calc-submit:hover {
    background-color: var(--accent-warm);
}

@media (max-width: 768px) {
    .calc-wrapper { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-warm);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background-color: var(--bg-main);
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 16px 24px;
}

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

/* Location Section */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

.location-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.location-address {
    color: var(--accent-warm);
    font-weight: 500;
    margin-bottom: 20px;
}

.location-list {
    list-style: none;
    margin-bottom: 28px;
}

.location-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.btn-map-direct {
    display: inline-block;
    background-color: var(--text-dark);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-map-direct:hover {
    background-color: var(--accent-warm);
}

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

/* Contact Dark Section */
.dark-section {
    background-color: var(--dark-surface);
    color: white;
}

.text-white { color: white !important; }
.text-muted { color: var(--text-light) !important; }

.contact-cards-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-box {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 36px;
    min-width: 280px;
    flex: 1;
    max-width: 400px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-box:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
}

.c-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.c-label {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.c-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.c-btn {
    font-size: 0.85rem;
    background: rgba(212, 163, 115, 0.2);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Floating LINE Button */
.floating-line {
    position: fixed;
    bottom: 85px;
    right: 24px;
    background-color: #06C755;
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.floating-line:hover {
    transform: scale(1.05);
}

/* Mobile Bottom Fixed Bar */
.mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.m-btn {
    flex: 1;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.m-btn-main {
    background-color: var(--dark-surface);
    color: white;
}

.m-btn-sub {
    background-color: var(--accent-warm);
    color: white;
}

@media (min-width: 769px) {
    .mobile-bottom-bar { display: none; }
    .floating-line { bottom: 32px; }
}

/* Footer */
.footer {
    background-color: #12161A;
    color: var(--text-light);
    text-align: center;
    padding: 24px;
    font-size: 0.88rem;
}

/* ==========================================
   SEO Text Section
   ========================================== */
.seo-text-section {
    padding: 60px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-soft);
}

.seo-text-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.seo-text-content h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.seo-text-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}
