/* ============================================
   HB GROUP - Complete Website Styles
   Dark theme with gold accents
   ============================================ */

:root {
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --gold-dark: #B8960C;
    --dark: #0A0A0A;
    --dark-card: #111111;
    --dark-border: #1F1F1F;
    --text: #E5E5E5;
    --text-muted: #888888;
    --white: #FFFFFF;
    --green: #22C55E;
    --red: #EF4444;
    --orange: #F59E0B;
    --blue: #3B82F6;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
}

.logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-login {
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--gold) !important;
}

.nav-register {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--dark) !important;
    font-weight: 600 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}

/* Notice Bar */
.notice-bar {
    margin-top: 64px;
    background: linear-gradient(90deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border-left: 3px solid var(--gold);
    padding: 10px 24px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-label {
    background: var(--gold);
    color: var(--dark);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

/* Hero */
.hero {
    padding: 80px 24px;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   SINGLE ORBIT - Logo + 10 Services on ONE ring
   ============================================ */

.orbit-scene {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

/* Center Logo - STATIONARY */
.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    /* No animation - stays fixed */
}

.orbit-center img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(212,175,55,0.5), 0 0 80px rgba(212,175,55,0.2);
    border: 3px solid rgba(212,175,55,0.4);
}

.orbit-center p {
    color: var(--gold);
    font-weight: 700;
    font-size: 10px;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* Single Orbit Track (visual ring) */
.orbit-track {
    position: absolute;
    top: 50%; left: 50%;
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
    border-radius: 50%;
    border: 1.5px dashed rgba(212,175,55,0.2);
}

/* Rotating container for all dots */
.orbit-spinner {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    animation: spinAll 30s linear infinite;
    z-index: 5;
}

@keyframes spinAll {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Service Dots - positioned on ring + counter-rotate */
.orbit-dot {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--dark-card);
    border: 1.5px solid rgba(212,175,55,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 0 12px rgba(212,175,55,0.2);
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Counter-rotate to stay upright while orbiting */
    animation: dotCounter 30s linear infinite;
}

/* 10 dots at 36deg intervals, radius 150px */
/* Position = center + (cos(angle)*r, sin(angle)*r) - half_dot */
.dot-1  { top: calc(50% - 150px - 22px); left: calc(50% - 22px); }                    /* 0deg top */
.dot-2  { top: calc(50% - 121px - 22px); left: calc(50% + 88px - 22px); }             /* 36deg */
.dot-3  { top: calc(50% - 46px - 22px);  left: calc(50% + 143px - 22px); }             /* 72deg */
.dot-4  { top: calc(50% + 46px - 22px);  left: calc(50% + 143px - 22px); }             /* 108deg */
.dot-5  { top: calc(50% + 121px - 22px); left: calc(50% + 88px - 22px); }              /* 144deg */
.dot-6  { top: calc(50% + 150px - 22px); left: calc(50% - 22px); }                     /* 180deg bottom */
.dot-7  { top: calc(50% + 121px - 22px); left: calc(50% - 88px - 22px); }              /* 216deg */
.dot-8  { top: calc(50% + 46px - 22px);  left: calc(50% - 143px - 22px); }              /* 252deg */
.dot-9  { top: calc(50% - 46px - 22px);  left: calc(50% - 143px - 22px); }              /* 288deg */
.dot-10 { top: calc(50% - 121px - 22px); left: calc(50% - 88px - 22px); }               /* 324deg */

@keyframes dotCounter {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

.orbit-dot:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212,175,55,0.6);
    z-index: 30;
}

/* Label below each dot */
.orbit-dot .dot-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.orbit-dot:hover .dot-label {
    color: var(--gold);
    font-weight: 600;
}

/* Highlight for featured services */
.dot-highlight {
    border-color: var(--gold);
    background: rgba(212,175,55,0.2);
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* Particles */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.p1 { top: 20%; left: 20%; animation-delay: 0s; }
.p2 { top: 30%; right: 15%; animation-delay: 1s; }
.p3 { bottom: 25%; left: 25%; animation-delay: 2s; }
.p4 { bottom: 30%; right: 20%; animation-delay: 1.5s; }
.p5 { top: 50%; left: 10%; animation-delay: 0.5s; }

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

/* ═══════════════════════════════════════════
   SERVICES LIST (Right Side - Text Only)
   ═══════════════════════════════════════════ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.svc-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.svc-list-item:hover {
    background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.15);
}

.svc-list-item .icon {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.08);
    border-radius: 10px;
    flex-shrink: 0;
}

.svc-list-item h3 {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

.svc-list-item p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   VIDEO / ANNOUNCEMENT / PODCAST SECTION
   ═══════════════════════════════════════════ */
.video-section {
    padding: 40px 32px;
    background: var(--dark);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(212,175,55,0.02));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.video-placeholder .play-btn {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.video-placeholder .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(212,175,55,0.5);
}

.video-placeholder h3 {
    color: var(--gold);
    font-size: 18px;
}

.video-placeholder p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS GRID (Small Cards)
   ═══════════════════════════════════════════ */
.cards-section {
    padding: 40px 32px;
    background: var(--dark-card);
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.svc-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.svc-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.svc-card-body {
    padding: 14px 16px 18px;
}

.svc-card-body .card-icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.svc-card-body h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.svc-card-body p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SERVICE DETAIL MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.svc-modal {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--red);
    border-color: var(--red);
}

.svc-modal-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.svc-modal-content {
    padding: 28px 32px;
}

.svc-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.svc-modal-icon {
    font-size: 36px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.2);
}

.svc-modal-header h2 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.svc-modal-header p {
    color: var(--gold);
    font-size: 13px;
}

.svc-modal-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.svc-modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.smf-card {
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 10px;
    padding: 12px 14px;
}

.smf-card h4 {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
}

.smf-card p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.4;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.3); }

.btn-outline {
    border: 1px solid var(--dark-border);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn-sm { padding: 8px 16px; font-size: 12px; }

.btn-danger { background: rgba(239,68,68,0.2); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }

.btn-success { background: rgba(34,197,94,0.2); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }

.btn-warning { background: rgba(245,158,11,0.2); color: var(--orange); border: 1px solid rgba(245,158,11,0.3); }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}

.section-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.section-header p { color: var(--text-muted); font-size: 16px; }

/* Queue Section */
.queue-section { padding: 80px 24px; background: var(--dark-card); }

.queue-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.queue-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.queue-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }

.queue-icon { font-size: 36px; margin-bottom: 16px; }

.queue-card h3 { color: var(--white); font-size: 16px; margin-bottom: 8px; }

.queue-card p { color: var(--text-muted); font-size: 13px; }

.queue-cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* How It Works */
.how-it-works { padding: 80px 24px; }

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.step-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px;
}

.step-number {
    font-size: 40px;
    font-weight: 900;
    color: rgba(212,175,55,0.15);
    display: block;
    margin-bottom: 12px;
}

.step-card h3 { color: var(--white); font-size: 16px; margin-bottom: 8px; }

.step-card p { color: var(--text-muted); font-size: 13px; }

/* Services */
.services-section { padding: 80px 24px; background: var(--dark-card); }

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover { border-color: rgba(212,175,55,0.3); }

.service-highlight { border-color: var(--gold); background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent); }

.service-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.service-icon { font-size: 32px; margin-bottom: 12px; }

.service-card h3 { color: var(--white); font-size: 15px; margin-bottom: 8px; }

.service-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }

.service-card a { color: var(--gold); font-size: 13px; text-decoration: none; font-weight: 600; }

/* Pricing */
.pricing-section { padding: 80px 24px; }

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.pricing-card.popular { border-color: var(--gold); }

.popular-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-card h3 { color: var(--white); font-size: 18px; margin-bottom: 12px; }

.price { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 20px; }

.price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }

.pricing-card ul { list-style: none; margin-bottom: 24px; }

.pricing-card li { color: var(--text-muted); font-size: 13px; padding: 6px 0; padding-left: 20px; position: relative; }

.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }

.pricing-card .btn { width: 100%; }

/* Categories */
.categories-section { padding: 80px 24px; background: var(--dark-card); }

.categories-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.cat-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    font-size: 13px;
    color: var(--text);
    transition: all 0.3s;
}

.cat-card:hover { border-color: var(--gold); }

.cat-card span { font-size: 24px; display: block; margin-bottom: 6px; }

/* Contact */
.contact-section { padding: 80px 24px; }

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

.contact-content h2 { font-size: 32px; color: var(--white); margin-bottom: 8px; }

.contact-content p { color: var(--text-muted); margin-bottom: 32px; }

.contact-content form { display: flex; flex-direction: column; gap: 12px; }

/* Form Elements */
input, select, textarea {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus { border-color: var(--gold); }

input::placeholder, textarea::placeholder { color: #555; }

select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

select option { background: var(--dark-card); color: var(--text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

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

.form-group label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-item:hover { border-color: var(--gold); }

.checkbox-item.active { border-color: var(--gold); background: rgba(212,175,55,0.1); color: var(--gold); }

.checkbox-item input { width: auto; margin: 0; }

/* ═══════════════════════════════════════════
   MAIN LAYOUT: Left Logo + Right Services
   ═══════════════════════════════════════════ */
.main-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    min-height: calc(100vh - 64px);
    padding-top: 64px;
}

.left-panel {
    background: var(--dark);
    border-right: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow: hidden;
}

.tagline-below {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-top: 20px;
    text-align: center;
}

.right-panel {
    padding: 40px 32px;
    overflow-y: auto;
    max-height: calc(100vh - 64px);
    background: var(--dark-card);
}

/* Horizontal Service Cards */
.services-horizontal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-h-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    transition: all 0.3s;
}

.service-h-card:hover { border-color: rgba(212,175,55,0.3); transform: translateX(4px); }

.service-h-card.gold { border-color: rgba(212,175,55,0.3); background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent); }

.service-h-icon { font-size: 28px; flex-shrink: 0; width: 48px; text-align: center; }

.service-h-info { flex: 1; min-width: 0; }

.service-h-info h4 { color: var(--white); font-size: 14px; margin: 0 0 4px; }

.service-h-info p { color: var(--text-muted); font-size: 12px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ═══════════════════════════════════════════
   VERTICAL LAYOUT: Cards + Ad Box
   ═══════════════════════════════════════════ */
.vertical-layout {
    padding: 60px 32px;
    background: var(--dark);
}

.vertical-header {
    text-align: center;
    margin-bottom: 40px;
}

.vertical-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Vertical Service Cards */
.vertical-services { display: flex; flex-direction: column; gap: 16px; }

.v-service-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: all 0.3s;
    align-items: start;
}

.v-service-card:hover { border-color: rgba(212,175,55,0.2); }

.v-service-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.02));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v-service-placeholder { font-size: 48px; }

.v-service-content { position: relative; }

.v-num {
    position: absolute;
    top: -4px;
    right: 0;
    font-size: 28px;
    font-weight: 900;
    color: rgba(212,175,55,0.1);
}

.v-service-content h3 { color: var(--white); font-size: 16px; margin: 0 0 6px; }

.v-service-content > p { color: var(--gold); font-size: 12px; margin: 0 0 8px; }

.v-service-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.v-service-card.expanded .v-service-desc { max-height: 200px; margin-bottom: 12px; }

.v-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.read-more {
    color: var(--gold);
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.read-more:hover { text-decoration: underline; }

/* Ad Box */
.ad-box { position: sticky; top: 80px; height: fit-content; }

.ad-content {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.ad-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ad-placeholder {
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent);
    border: 2px dashed rgba(212,175,55,0.15);
    border-radius: 12px;
}

.contact-mini {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
}

/* ═══════════════════════════════════════════
   EXPERTS STRIP
   ═══════════════════════════════════════════ */
.experts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.expert-card {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--dark-border);
    transition: all 0.3s;
}

.expert-card:last-child { border-right: none; }

.expert-card:hover { background: rgba(212,175,55,0.03); }

.expert-icon { font-size: 40px; margin-bottom: 16px; }

.expert-card h3 { color: var(--white); font-size: 16px; margin-bottom: 8px; }

.expert-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }

/* ═══════════════════════════════════════════
   SOCIAL MEDIA SECTION
   ═══════════════════════════════════════════ */
.social-section { padding: 60px 24px; background: var(--dark); }

.social-header { text-align: center; margin-bottom: 40px; }

.social-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.social-icon { font-size: 36px; margin-bottom: 12px; }

.social-card h4 { color: var(--white); font-size: 14px; margin-bottom: 4px; }

.social-card p { color: var(--text-muted); font-size: 12px; margin: 0; }

.coming-soon {
    position: absolute;
    top: 12px;
    right: -28px;
    background: var(--gold);
    color: var(--dark);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 30px;
    transform: rotate(45deg);
}

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 32px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-header h3 { color: var(--gold); font-size: 16px; margin: 0; }

/* ═══════════════════════════════════════════
   SERVICE FULL SECTION (Horizontal Detail)
   ═══════════════════════════════════════════ */
.service-full-section {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-full-section:hover { border-color: rgba(212,175,55,0.15); }

.service-highlight-box {
    border-color: rgba(212,175,55,0.3);
    background: linear-gradient(135deg, rgba(212,175,55,0.04), var(--dark-card));
}

.service-full-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.service-num {
    font-size: 32px;
    font-weight: 900;
    color: rgba(212,175,55,0.2);
    line-height: 1;
    flex-shrink: 0;
}

.service-full-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.sf-icon { font-size: 36px; }

.service-full-title h2 { color: var(--white); font-size: 18px; margin: 0 0 4px; }

.service-full-title p { color: var(--text-muted); font-size: 12px; margin: 0; }

.service-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 52px;
}

/* Features Mini Grid */
.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 52px;
}

.fm-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: all 0.3s;
}

.fm-card:hover { border-color: rgba(212,175,55,0.2); }

.fm-card span { font-size: 24px; display: block; margin-bottom: 6px; }

.fm-card h4 { color: var(--white); font-size: 12px; margin: 0 0 4px; }

.fm-card p { color: var(--text-muted); font-size: 10px; margin: 0; }

/* How Steps Inline */
.how-steps-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(212,175,55,0.03);
    border-radius: 14px;
    overflow-x: auto;
    padding-left: 52px;
}

.hs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.hs-num {
    width: 28px;
    height: 28px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.hs-step p { color: var(--text-muted); font-size: 9px; margin: 0; white-space: nowrap; }

.hs-arrow { color: rgba(212,175,55,0.3); font-size: 16px; flex-shrink: 0; }

/* Special Form Box (Queue Registration) */
.special-form-box {
    background: var(--dark);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    padding-left: 52px;
}

.special-form-box h3 { color: var(--gold); font-size: 16px; margin-bottom: 4px; }

/* Enquiry Box */
.enquiry-box {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    padding: 20px;
    margin-top: 16px;
    padding-left: 52px;
}

.enquiry-box h4 { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }

/* Form Row 3 */
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

/* Page Layout (for inner pages) */
.page-container {
    max-width: 800px;
    margin: 100px auto 40px;
    padding: 0 24px;
}

.page-container-wide {
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 0 24px;
}

.card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
}

.card h2 { font-size: 20px; color: var(--white); margin-bottom: 8px; }

.card p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-card h4 { font-size: 28px; color: var(--gold); font-weight: 800; }

.stat-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* Table */
.table-container { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; font-size: 13px; }

thead { background: var(--dark); }

th { text-align: left; padding: 12px 16px; color: var(--text-muted); font-weight: 600; font-size: 12px; border-bottom: 1px solid var(--dark-border); }

td { padding: 12px 16px; border-bottom: 1px solid var(--dark-border); color: var(--text); }

tr:hover td { background: rgba(212,175,55,0.03); }

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }

.badge-yellow { background: rgba(245,158,11,0.15); color: var(--orange); }

.badge-red { background: rgba(239,68,68,0.15); color: var(--red); }

.badge-blue { background: rgba(59,130,246,0.15); color: var(--blue); }

.badge-purple { background: rgba(168,85,247,0.15); color: #A855F7; }

/* Token Display */
.token-display {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.02));
    border-radius: 20px;
    border: 2px dashed rgba(212,175,55,0.3);
    margin: 20px 0;
}

.token-number {
    font-size: 80px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.token-label { color: var(--text-muted); font-size: 14px; margin-top: 8px; }

/* Queue List */
.queue-list { display: flex; flex-direction: column; gap: 8px; }

.queue-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
}

.queue-item.serving { border-color: var(--green); background: rgba(34,197,94,0.05); }

.queue-item.called { border-color: var(--blue); background: rgba(59,130,246,0.05); }

.queue-item.skipped { border-color: var(--orange); opacity: 0.7; }

.queue-token {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--dark);
    font-size: 16px;
    flex-shrink: 0;
}

.queue-info { flex: 1; }

.queue-info h4 { color: var(--white); font-size: 14px; margin: 0; }

.queue-info p { color: var(--text-muted); font-size: 12px; margin: 2px 0 0; }

.queue-actions { display: flex; gap: 6px; }

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 60px 24px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 { color: var(--gold); font-size: 20px; margin: 12px 0 8px; }

.footer-brand p { color: var(--text-muted); font-size: 13px; }

.footer-links h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; }

.footer-links a, .footer-links p { display: block; color: var(--text-muted); text-decoration: none; font-size: 13px; margin-bottom: 8px; }

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

/* Alert */
.alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 16px;
}

.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: var(--green); }

.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: var(--red); }

.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: var(--orange); }

/* Tabs */
.tabs { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 1px solid var(--dark-border); overflow-x: auto; }

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-family: inherit;
}

.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-content { display: none; }

.tab-content.active { display: block; }

/* TV Display */
.tv-body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.tv-header {
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tv-header h1 { font-size: 24px; color: var(--gold); }

.tv-time { font-size: 32px; font-weight: 700; font-family: monospace; }

.tv-main {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 40px;
    gap: 40px;
}

.tv-current {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--dark-border);
}

.tv-current-label { font-size: 18px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 20px; }

.tv-current-number {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    font-weight: 900;
    color: var(--dark);
    box-shadow: 0 20px 60px rgba(212,175,55,0.3);
}

.tv-current-name { font-size: 28px; margin-top: 20px; color: var(--white); }

.tv-upcoming h3 { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; }

.tv-upcoming-list { display: flex; flex-direction: column; gap: 12px; }

.tv-up-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--dark-card);
    border-radius: 12px;
}

.tv-up-token {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.tv-footer {
    background: linear-gradient(90deg, #2a2a2a, #1a1a1a);
    padding: 16px 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .main-layout { grid-template-columns: 300px 1fr; }
    .vertical-grid { grid-template-columns: 1fr 260px; }
}

@media (max-width: 768px) {
    .main-layout { grid-template-columns: 1fr; }
    .left-panel { position: relative; height: auto; min-height: 400px; border-right: none; border-bottom: 1px solid var(--dark-border); }
    .right-panel { max-height: none; padding: 24px 16px; }
    .hero h1 { font-size: 32px; }
    .orbit-scene { width: 300px; height: 300px; }
    .vertical-grid { grid-template-columns: 1fr; }
    .ad-box { position: relative; top: 0; order: -1; }
    .v-service-card { grid-template-columns: 70px 1fr; }
    .v-service-img { width: 70px; height: 70px; }
    .v-service-placeholder { font-size: 32px; }
    .experts-strip { grid-template-columns: repeat(2, 1fr); }
    .expert-card { border-right: none; border-bottom: 1px solid var(--dark-border); }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--dark-border); z-index: 1000; }
    .nav-links.show { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero-buttons { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .queue-cta { flex-direction: column; align-items: center; }
    .tv-main { grid-template-columns: 1fr; }
    .tv-current { border-right: none; border-bottom: 1px solid var(--dark-border); padding-bottom: 30px; }
    .page-container, .page-container-wide { margin-top: 80px; }
    /* Service detail responsive */
    .features-mini-grid { grid-template-columns: repeat(2, 1fr); padding-left: 0; }
    .service-desc { padding-left: 0; }
    .special-form-box { padding-left: 16px; }
    .enquiry-box { padding-left: 16px; }
    .how-steps-inline { padding-left: 16px; }
    .form-row-3 { grid-template-columns: 1fr; }
    .service-full-header { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .features-mini-grid { grid-template-columns: 1fr; }
    .service-h-card { flex-wrap: wrap; }
    .service-h-info { min-width: 100%; order: 3; margin-top: 8px; }
    .social-grid { grid-template-columns: 1fr; }
    .how-steps-inline { flex-direction: column; gap: 8px; }
    .hs-arrow { display: none; }
}

@media (max-width: 480px) {
    .service-h-card { flex-wrap: wrap; }
    .service-h-info { min-width: 100%; order: 3; margin-top: 8px; }
    .social-grid { grid-template-columns: 1fr; }
}

/* Loading */
.loading { display: inline-block; width: 20px; height: 20px; border: 2px solid var(--dark-border); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Success page */
.success-page { text-align: center; padding: 60px 20px; }

.success-page h2 { font-size: 28px; color: var(--green); margin-bottom: 8px; }

.success-page p { color: var(--text-muted); margin-bottom: 32px; }

.success-details {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    margin: 0 auto 24px;
    text-align: left;
}

.success-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--dark-border); }

.success-row:last-child { border: none; }

.success-row span:first-child { color: var(--text-muted); font-size: 13px; }

.success-row span:last-child { color: var(--gold); font-weight: 600; font-size: 13px; }

/* Steps indicator */
.steps-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    color: var(--text-muted);
}

.step-dot.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.step-dot.completed { background: var(--green); color: var(--white); border-color: var(--green); }

/* QR placeholder */
.qr-placeholder {
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.qr-placeholder span { font-size: 80px; }
