/* --- PREMIUM AGENCIES MINIMALIST RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
html {
    scroll-behavior: smooth;
    background-color: #070a12;
}
body { 
    color: #e2e8f0; 
    overflow-x: hidden;
}

/* --- TOP FIXED NAV OVERLAY --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-weight: 700; font-size: 1.1rem; letter-spacing: 1.5px; cursor: pointer; color: #ffffff; }
.main-menu { display: flex; gap: 1.5rem; }
.menu-link { text-decoration: none; color: #94a3b8; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.menu-link:hover { color: #38bdf8; }

/* --- SPATIAL SCROLL CONTENT SECTIONS --- */
.content-section {
    width: 100%;
    padding: 5rem 1.5rem 4rem 1.5rem; 
    display: flex;
    justify-content: center;
    align-items: center;
}
#sec-home { padding-top: 7.5rem; }

.compact-content { width: 100%; max-width: 680px; }
.compact-content.wide-content { max-width: 1050px; }

/* --- COMPACT HEADERS --- */
.section-header { text-align: left; margin-bottom: 2rem; border-left: 2px solid #38bdf8; padding-left: 1rem; }
.section-header h2 { font-size: 1.6rem; color: #ffffff; margin-bottom: 0.25rem; letter-spacing: -0.5px; }
.section-header p { font-size: 0.95rem; color: #64748b; }

.section-subheader-inline { text-align: left; margin: 3rem 0 1rem 0; padding-left: 0.5rem; }
.section-subheader-inline h3 { font-size: 1.1rem; color: #ffffff; font-weight: 600; }
.section-subheader-inline p { font-size: 0.85rem; color: #475569; }

.brand-badge { display: inline-block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: #38bdf8; background: rgba(56, 189, 248, 0.1); padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.5rem; font-weight: 700; }
.about-card-text p { font-size: 1rem; color: #94a3b8; line-height: 1.6; text-align: left; }

/* --- LINE SPLIT SECTION GRADIENTS --- */
.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0) 0%, rgba(56, 189, 248, 0.12) 50%, rgba(56, 189, 248, 0) 100%);
    max-width: 1100px;
    margin: 0 auto;
}

/* --- THE 3-ITEM BLOCK SLIDER ENGINE --- */
.triple-slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.triple-slider-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
}

/* --- COMPACT CLICKABLE LINK GRID CARDS --- */
.video-grid-card {
    background-color: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 240px;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}
.video-grid-card:hover { transform: translateY(-3px); border-color: #38bdf8; }

.video-card-poster {
    height: 135px;
    background-color: #020617;
    position: relative;
}
.video-card-poster img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.2s; }
.video-grid-card:hover .video-card-poster img { opacity: 1; }

.mini-play-indicator {
    position: absolute; bottom: 0.5rem; right: 0.5rem;
    background-color: #38bdf8; color: #070a12; width: 28px; height: 28px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.7rem; padding-left: 2px;
}

.video-card-details { padding: 0.75rem; display: flex; flex-direction: column; justify-content: center; flex-grow: 1; }
.video-card-details span { font-size: 0.65rem; font-weight: 700; color: #64748b; letter-spacing: 1px; margin-bottom: 0.2rem; text-transform: uppercase; }
.video-card-details h4 { font-size: 0.85rem; color: #ffffff; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --- FIXED SYMMETRICAL BLANK COMPONENT SLOTS --- */
.blank-placeholder-slot {
    border: 1px dashed rgba(30, 41, 59, 0.3);
    background-color: rgba(15, 23, 42, 0.05);
    border-radius: 6px;
    height: 240px;
    width: 100%;
}

.slide-arrow { background: #0f172a; border: 1px solid #1e293b; color: #94a3b8; font-size: 1rem; width: 38px; height: 38px; border-radius: 6px; cursor: pointer; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.slide-arrow:hover { background: #1e293b; color: #ffffff; border-color: #334155; }

/* --- TRIGGER ACTION UTILITIES --- */
.center-trigger-row { margin-top: 1.5rem; display: flex; justify-content: center; }
.archive-trigger-btn-large { background-color: #1e293b; border: 1px solid #334155; color: #f1f5f9; padding: 0.6rem 1.5rem; font-size: 0.85rem; font-weight: 600; border-radius: 6px; cursor: pointer; transition: all 0.2s; }
.archive-trigger-btn-large:hover { border-color: #38bdf8; background-color: #0f172a; color: #38bdf8; }

/* --- BOTTOM RATE CARDS WRAPPERS --- */
.compact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.spec-card { background-color: #0f172a; border: 1px solid #1e293b; padding: 1.25rem; border-radius: 6px; text-align: left; }
.spec-card h3 { font-size: 0.95rem; color: #ffffff; margin-bottom: 0.5rem; font-weight: 600; border-bottom: 1px solid #1e293b; padding-bottom: 0.35rem; }
.spec-card p { font-size: 0.85rem; color: #94a3b8; line-height: 1.4; }
.rate-footer-banner { margin-top: 1.5rem; background: rgba(30, 41, 59, 0.3); border: 1px solid #1e293b; padding: 0.85rem; border-radius: 6px; text-align: center; }
.rate-footer-banner p { font-size: 0.85rem; color: #64748b; }

/* --- MODAL INPUT HOOK CONTROLS --- */
.search-control-dashboard { padding: 1.25rem; background-color: #0b0f19; border-bottom: 1px solid #1e293b; display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem; }
.search-box-group { display: flex; flex-direction: column; gap: 0.35rem; position: relative; }
.search-box-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #64748b; font-weight: 700; }
.search-box-group input { background-color: #0f172a; border: 1px solid #1e293b; color: #ffffff; padding: 0.6rem; font-size: 0.9rem; border-radius: 4px; width: 100%; outline: none; }
.search-box-group input:focus { border-color: #38bdf8; }

.custom-combobox { position: relative; width: 100%; }
.combobox-options { position: absolute; top: 105%; left: 0; width: 100%; background-color: #0f172a; border: 1px solid #1e293b; border-radius: 4px; max-height: 160px; overflow-y: auto; z-index: 300; display: none; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.combobox-options.show { display: block; }
.combobox-item { padding: 0.6rem; font-size: 0.85rem; color: #cbd5e1; cursor: pointer; }
.combobox-item:hover { background-color: #1e293b; color: #38bdf8; }
.combobox-item.selected { background-color: #38bdf8; color: #070a12; font-weight: 600; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: rgba(2,6,23,0.85); backdrop-filter: blur(8px); z-index: 200; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-window { background-color: #0f172a; border: 1px solid #1e293b; width: 90%; max-width: 900px; height: 80vh; border-radius: 8px; display: flex; flex-direction: column; overflow: hidden; }
.modal-header { padding: 1.25rem; border-bottom: 1px solid #1e293b; display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 1.1rem; color: #ffffff; }
.modal-header p { font-size: 0.8rem; color: #64748b; }
.close-modal-btn { background: transparent; border: none; color: #64748b; font-size: 1.2rem; cursor: pointer; }

.modal-body-grid { padding: 1.25rem; overflow-y: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; flex-grow: 1; align-content: start; }
.archive-card { background-color: #0b0f19; border: 1px solid #1e293b; border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; height: 160px; text-decoration: none; border: 1px solid #1e293b; transition: border-color 0.2s; }
.archive-card:hover { border-color: #38bdf8; }
.archive-card-thumb { height: 90px; background-color: #020617; }
.archive-card-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.archive-card-text { padding: 0.6rem; }
.archive-card-text span { font-size: 0.6rem; color: #38bdf8; font-weight: 700; text-transform: uppercase; }
.archive-card-text h4 { font-size: 0.8rem; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* MEDIA INTERACTION ADAPTABILITY SWITCHES */
@media (max-width: 900px) {
    .triple-slider-display { grid-template-columns: 1fr; }
    .video-grid-card, .blank-placeholder-slot { height: 190px; }
    .video-card-poster { height: 110px; }
    .compact-grid, .search-control-dashboard { grid-template-columns: 1fr; }
    .modal-body-grid { grid-template-columns: repeat(2, 1fr); }
    .main-menu { display: none; }
}
@media (max-width: 550px) { .modal-body-grid { grid-template-columns: 1fr; } }