/* --- PREMIUM VARIABLES --- */
:root {
    --accent-red: #d9534f;
    --accent-glow: rgba(217, 83, 79, 0.4);
    --bg-dark: #07080a;
    /* Deeper, richer black */
    --bg-alt: #0d0f14;
    --card-bg: rgba(255, 255, 255, 0.03);
    /* Glass card effect */
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f8f9fa;
    --text-muted: #9aa0a6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body.high-contrast {
    --accent-red: #ffff7f;
    --accent-glow: rgba(255, 255, 127, 0.55);
    --bg-dark: #000000;
    --bg-alt: #111111;
    --card-bg: rgba(255, 255, 255, 0.12);
    --border-color: rgba(255, 255, 255, 0.35);
    --text-main: #ffffff;
    --text-muted: #e6e6e6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- FROSTED GLASS NAVBAR --- */
.navbar {
    background-color: rgba(7, 8, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: var(--font-heading);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 35px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-btn {
    border: 1px solid var(--accent-red);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-glow);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
}

.nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(7, 8, 10, 0.95);
    padding: 25px;
    gap: 20px;
    border-top: 1px solid var(--border-color);
}

.nav-links.open a {
    margin-left: 0;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--accent-red);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1200;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

/* --- HERO SECTION --- */
.hero {
    padding: 120px 20px 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(7, 8, 10, 0.45) 0%, rgba(7, 8, 10, 0.55) 55%, rgba(7, 8, 10, 0.8) 100%);
    z-index: 1;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.75) brightness(0.55);
}

.hero .hero-content,
.hero .poem-quote,
.hero .premium-badge {
    position: relative;
    z-index: 2;
}

.premium-badge {
    display: inline-block;
    background-color: rgba(217, 83, 79, 0.1);
    color: var(--accent-red);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(217, 83, 79, 0.3);
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4.5rem;
    margin: 0 0 30px 0;
    line-height: 1.1;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.top-version-badge {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 8px 14px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* --- TOP INTERSTITIAL BANNER --- */
.top-interstitial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(12, 12, 12, 0.95));
    color: #fff;
    padding: 12px 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-interstitial.hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.top-interstitial-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.interstitial-text {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.interstitial-actions button {
    min-width: 100px;
    padding: 8px 14px;
    font-weight: 700;
}

.top-interstitial .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

@media (max-width: 768px) {
    .top-interstitial-inner {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .interstitial-actions {
        display: flex;
        gap: 8px;
        justify-content: center;
    }
}

.poem-quote {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-red);
    padding: 35px 40px;
    margin: 40px auto;
    max-width: 650px;
    text-align: left;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.poem-author {
    display: block;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}

.site-update-note {
    margin: 18px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--accent-red);
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 83, 79, 0.3);
}

.btn-primary:hover {
    background-color: #e5605c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.block-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 16px;
}

/* --- SECTIONS & TYPOGRAPHY --- */
.section-layout {
    padding: 100px 0;
}

.about-section {
    position: relative;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('thepoet.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    filter: brightness(1.12) saturate(1.15);
    -webkit-filter: brightness(1.12) saturate(1.15);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section .section-header h2,
.about-section .accent-text,
.about-section .text-column {
    color: #f1f1f1;
}

.about-section .text-column {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    color: #f3f3f3;
}

@media (max-width: 900px) {
    .about-section .text-column {
        background: rgba(0, 0, 0, 0.24);
    }
}

/* Improve text contrast without hiding the background image */
.about-section .section-header h2 {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.about-section .text-column p,
.about-section .accent-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.bg-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.accent-text {
    color: var(--accent-red);
    font-weight: 600;
    letter-spacing: 1px;
}

.text-muted {
    color: var(--text-muted);
}

.text-column {
    column-count: 2;
    column-gap: 40px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.text-column p {
    margin-bottom: 20px;
    break-inside: avoid;
}

/* --- BOOK VISUALS --- */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.book-mockup {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 6px;
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s ease;
}

.book-mockup:hover {
    transform: scale(1.02) rotate(-1deg);
}

.split-layout .hero-content {
    flex: 1;
    text-align: left;
}

.split-layout .hero-title {
    font-size: 3.5rem;
    margin-top: 15px;
}

/* --- PHOTOGRAPHY GALLERY SLIDER --- */
.gallery-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 860px;
}

.gallery-slide {
    display: none;
    width: 100%;
    max-width: 860px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background-color: #000;
}

.gallery-caption {
    padding: 24px 30px;
    color: #f3f3f3;
    font-size: 1.15rem;
    line-height: 2;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.45);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.gallery-btn {
    border: none;
    padding: 18px 32px;
    min-width: 140px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.gallery-btn:hover,
.gallery-btn:focus {
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.gallery-slider:focus-visible {
    outline: 3px solid rgba(217, 83, 79, 0.75);
    outline-offset: 10px;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.gallery-status {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
}

.contrast-toggle {
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 22px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contrast-toggle:hover,
.contrast-toggle:focus {
    transform: translateY(-1px);
    background-color: rgba(255, 255, 255, 0.16);
    outline: none;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.gallery-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.gallery-indicator.active,
.gallery-indicator:hover,
.gallery-indicator:focus {
    border-color: var(--accent-red);
    background-color: rgba(217, 83, 79, 0.3);
    outline: none;
}

.gallery-indicator:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.video-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 860px;
}

.video-slide {
    display: none;
    width: 100%;
    max-width: 860px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.video-slide.active {
    display: block;
}

.video-preview {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, rgba(217, 83, 79, 0.2), rgba(7, 8, 10, 0.4));
    overflow: hidden;
}

.video-preview video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 25px 30px;
}

.video-info h3 {
    margin-bottom: 14px;
    font-size: 1.7rem;
    color: var(--text-main);
}

.video-info p {
    color: var(--text-muted);
    line-height: 1.8;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    min-height: 220px;
    background-color: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        gap: 14px;
    }

    .gallery-item {
        min-height: 200px;
    }
}

.video-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 83, 79, 0.3);
}

.video-card.placeholder-card {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.18);
    opacity: 0.95;
}

.video-card.placeholder-card .video-preview {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(7, 8, 10, 0.18));
}

.video-preview {
    position: relative;
    padding-top: 56.25%;
    background: linear-gradient(135deg, rgba(217, 83, 79, 0.2), rgba(7, 8, 10, 0.4));
}

.video-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    opacity: 0.9;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.video-info p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- PREMIUM CARDS GRID --- */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.book-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.highlight-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 24px;
    color: var(--text-muted);
}

.highlight-card h4 {
    color: var(--text-main);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.highlight-card p {
    line-height: 1.7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 35px;
    min-height: 220px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.reviewer {
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.site-footer {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 30px 35px;
    margin-bottom: 40px;
}

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

.site-footer h4 {
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
    color: var(--text-muted);
    line-height: 1.8;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.premium-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 83, 79, 0.5);
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--accent-red);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-card:hover .card-glow {
    opacity: 0.15;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.premium-card p {
    color: var(--text-muted);
}

.card-link {
    color: var(--accent-red);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
}

/* --- REVIEWS --- */
.review-card {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(217, 83, 79, 0.15);
    line-height: 1;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.reviewer {
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* --- FORMS & CONTACT --- */
.form-container {
    max-width: 700px;
}

.social-redirects {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-social {
    flex: 1 1 calc(33.333% - 15px);
    min-width: 180px;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.email {
    background-color: #333333;
}

.premium-form {
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.payment-panel,
.collab-panel {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.payment-panel h3,
.collab-panel h3,
.order-process h3,
.faq-panel h3 {
    font-size: 1.9rem;
    margin-bottom: 18px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.payment-text {
    margin-bottom: 20px;
    line-height: 1.8;
}

.order-process {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent-red);
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
}

.step-card h4 {
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.faq-panel {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 1rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.8;
}

.payment-list {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.payment-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.payment-list a {
    color: var(--accent-red);
    text-decoration: none;
}

.payment-list a:hover {
    text-decoration: underline;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group textarea {
    height: 160px;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

/* --- ADMIN PORTAL --- */
.admin-portal {
    text-align: center;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.admin-portal h4 {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.btn-admin {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-admin:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- SCROLL ANIMATIONS (JAVASCRIPT TRIGGERED) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .text-column {
        column-count: 1;
    }

    .split-layout {
        flex-direction: column;
        text-align: center;
    }

    .split-layout .hero-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        margin-left: 0;
    }

    .navbar {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    body {
        padding-top: 88px;
    }

    .nav-container {
        position: relative;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-section {
        background-position: center 30%;
    }

    .about-section::before {
        background-image: url('thepoet.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: brightness(1.12) saturate(1.15);
        -webkit-filter: brightness(1.12) saturate(1.15);
    }

    .about-section::after {
        display: none;
    }

    .about-section .text-column {
        background: rgba(7, 8, 10, 0.58);
        padding: 28px 22px;
    }

    .about-section .section-header,
    .about-section .section-header h2,
    .about-section .accent-text,
    .about-section .text-column p {
        color: #ffffff;
    }

    .btn-social {
        width: 100%;
        flex: 1 1 100%;
    }

    .premium-form {
        padding: 30px 20px;
    }
}

/* --- DOsystems.co.ke SIGNATURE --- */
.do-signature {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.do-signature .page-version {
    margin-top: 8px;
    display: block;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    opacity: 0.85;
}