/* ============================================
   PoyrazTV - Complete Stylesheet
   Trust-inspiring corporate design
   Mobile-first responsive approach
   ============================================ */

/* ------------------------------------------
   1. CSS RESET & CUSTOM PROPERTIES
   ------------------------------------------ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #1B4D7A;
    --primary-dark: #0F3052;
    --primary-light: #2A6BAF;
    --secondary: #E8F4FD;
    --accent: #FF6B35;
    --accent-hover: #E55A28;
    --whatsapp: #25D366;
    --whatsapp-hover: #1DA851;

    /* Neutrals */
    --text: #1A1A2E;
    --text-light: #4A5568;
    --text-muted: #718096;
    --border: #E2E8F0;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-blue-light: #EDF5FC;

    /* Feedback */
    --success: #38A169;
    --success-light: #C6F6D5;
    --error: #E53E3E;
    --error-light: #FED7D7;
    --warning: #D69E2E;
    --warning-light: #FEFCBF;
    --info: #3182CE;
    --info-light: #BEE3F8;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji";
    --font-mono: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Sizes */
    --container-max: 1200px;
    --container-narrow: 800px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 2px 8px rgba(27, 77, 122, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(27, 77, 122, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ------------------------------------------
   2. TYPOGRAPHY
   ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: var(--space-md); color: var(--text-light); }
strong { font-weight: 600; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
    font-size: 1.625rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

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

.section-blue {
    background-color: var(--secondary);
}

.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; align-items: center; }
.flex-col { flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ------------------------------------------
   4. SITE HEADER
   ------------------------------------------ */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo-icon {
    flex-shrink: 0;
    display: block;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-text strong,
.logo-text .logo-tv {
    color: var(--accent);
    font-weight: 800;
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--secondary);
}

.nav-link.active {
    color: var(--primary);
    background-color: var(--secondary);
    font-weight: 600;
}

/* Header Actions (lang switcher + hamburger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.lang-switcher:hover {
    background: var(--primary);
    color: #fff;
}

/* Hamburger Menu Button */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation (shown when hamburger is active) */
.main-nav.active {
    display: flex;
}

/* Mobile: nav drops down below header */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 2px solid var(--primary);
        box-shadow: var(--shadow-md);
        padding: var(--space-md) 0;
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-sm) var(--space-lg);
        border-radius: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--secondary);
    }
}

/* ------------------------------------------
   LEGACY NAVBAR CLASSES (backward compat)
   ------------------------------------------ */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
}

.navbar-menu.active {
    display: flex;
}

.navbar-menu a {
    padding: var(--space-sm) var(--space-md);
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary);
    background-color: var(--secondary);
}

/* ------------------------------------------
   5. HERO SECTION
   ------------------------------------------ */
.hero {
    background: linear-gradient(135deg, rgba(10,22,40,0.65) 0%, rgba(15,48,82,0.50) 50%, rgba(20,60,100,0.45) 100%),
                url('/assets/img/hero-bg.jpg') center top / 100% auto no-repeat;
    background-color: #0a1628;
    color: #fff;
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: var(--space-md);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(4px);
}

/* ------------------------------------------
   6. FEATURE CARDS
   ------------------------------------------ */
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-card);
}

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

.feature-card .icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ------------------------------------------
   7. DEVICE COMPATIBILITY STRIP
   ------------------------------------------ */
.device-strip {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: var(--space-md) 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.device-strip::-webkit-scrollbar { display: none; }

.device-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.device-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.device-item .icon {
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ------------------------------------------
   8. HIGHLIGHT BOX ("No box required" etc.)
   ------------------------------------------ */
.highlight-box {
    background: var(--bg-white);
    border: 2px solid var(--accent);
    border-left-width: 5px;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
}

.highlight-box::before {
    content: attr(data-label);
    position: absolute;
    top: -12px;
    left: var(--space-md);
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-box h3 {
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.highlight-box p {
    margin-bottom: 0;
}

/* ------------------------------------------
   9. HOW-TO STEPS
   ------------------------------------------ */
.steps {
    counter-reset: step;
}

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    counter-increment: step;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-card::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ------------------------------------------
   10. WHY POYRAZTV / TRUST SECTION
   ------------------------------------------ */
.trust-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-card .trust-icon,
.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.trust-card h4 {
    margin-bottom: var(--space-xs);
}

.trust-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ------------------------------------------
   11. FAQ ACCORDION (details/summary)
   ------------------------------------------ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast);
    background: var(--bg-white);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item[open] {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-white);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: "";
}

.faq-question:hover {
    background: var(--bg-light);
}

/* FAQ icon (plus/minus indicator) */
.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: var(--space-md);
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: transform var(--transition-base);
}

.faq-question .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* When details is open, rotate the plus into minus */
.faq-item[open] .faq-question .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Also support JS-based .active class */
.faq-item.active .faq-question .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ------------------------------------------
   12. ORDER FORM
   ------------------------------------------ */
.form-section {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.form-section h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--secondary);
    display: flex;
    align-items: center;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.form-group label .required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(42, 107, 175, 0.12);
}

.form-control.is-invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-control.is-valid {
    border-color: var(--success);
}

.invalid-feedback {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: var(--space-xs);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Package selection cards */
.package-option {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
    background: var(--bg-white);
}

.package-option:hover {
    border-color: var(--primary-light);
    background: var(--bg-blue-light);
}

.package-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--secondary);
    box-shadow: 0 0 0 1px var(--primary);
}

.package-option.package-main {
    border-color: var(--primary);
    background: var(--secondary);
}

.package-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.package-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-info strong {
    font-size: 1.05rem;
    color: var(--text);
}

.package-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.package-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

select.form-control {
    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='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* Radio label styling for package selection */
.form-group label:has(input[type="radio"]) {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 400;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    margin-bottom: var(--space-sm);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group label:has(input[type="radio"]):hover {
    border-color: var(--primary-light);
    background: var(--bg-blue-light);
}

.form-group label:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: var(--secondary);
}

/* ------------------------------------------
   13. ORDER SUCCESS PAGE
   ------------------------------------------ */
.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2.5rem;
    color: var(--success);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.success-page h1 {
    color: var(--success);
    margin-bottom: var(--space-sm);
}

.success-page p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) auto;
    max-width: 400px;
    text-align: left;
}

.success-details dt {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.success-details dd {
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.success-details dd:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------
   14. PRICING CARDS
   ------------------------------------------ */
.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: "En Populer";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.pricing-price .period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    text-align: left;
    margin: var(--space-lg) 0;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pricing-features li::before {
    content: "\2713";
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

/* ------------------------------------------
   15. CONTACT PAGE
   ------------------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition-base);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-info-card h4 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ------------------------------------------
   16. SITE FOOTER
   ------------------------------------------ */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-2xl) 0 0;
    font-size: 0.88rem;
}

/* Footer top: 4-column layout */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-xl);
    padding-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

/* Footer brand */
.footer-brand { }

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-icon { flex-shrink: 0; }

.footer-logo .logo-text {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-logo .logo-text strong,
.footer-logo .logo-text .logo-tv {
    color: var(--accent);
    font-weight: 800;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer nav columns */
.footer-nav-col { }

.footer-heading {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Footer contact */
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: var(--whatsapp);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: background var(--transition-fast);
}

.footer-wa-btn:hover { background: var(--whatsapp-hover); }

.footer-phone {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.84rem;
    margin-bottom: 4px;
}

.footer-phone:hover { color: #fff; }

.footer-hours {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-sm);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-contact-link svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-contact-link:hover svg {
    opacity: 1;
}

/* Footer hours */
.footer-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: var(--space-sm);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xs);
}

.footer-australia-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* Legacy .footer class (backward compat) */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3xl) 0 0;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.footer p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

/* ------------------------------------------
   17. WHATSAPP FLOATING BUTTON
   ------------------------------------------ */
.wa-float,
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: transform var(--transition-fast), background var(--transition-fast);
    text-decoration: none;
}

.wa-float:hover,
.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--whatsapp-hover);
    color: #fff;
    animation: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Pulse animation for WhatsApp button */
.wa-float.pulse,
.whatsapp-float {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
}

/* ------------------------------------------
   18. BUTTONS
   ------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    text-decoration: none;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    color: #fff;
}

/* WhatsApp button variant for SEO pages */
.btn-wa {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
}

.btn-wa:hover {
    background: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ------------------------------------------
   19. SERVICES PAGE CONTENT
   ------------------------------------------ */
.service-content {
    padding: var(--space-2xl) 0;
}

.service-content h2 {
    margin-bottom: var(--space-md);
}

.service-content ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.service-content ul li {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    margin: var(--space-xl) 0;
}

.service-banner h2,
.service-banner p {
    color: #fff;
}

.service-banner .btn {
    margin-top: var(--space-md);
}

/* ------------------------------------------
   20. DEVICES PAGE CARDS
   ------------------------------------------ */
.device-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.device-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.device-card .device-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-card .device-icon svg {
    width: 48px;
    height: 48px;
}

.device-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.device-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ------------------------------------------
   21. SEO PAGES STYLING
   ------------------------------------------ */
.seo-page {
    background: var(--bg-white);
}

.seo-content {
    padding: var(--space-2xl) 0;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.seo-content h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.seo-content h2 {
    font-size: 1.35rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.seo-content h3 {
    font-size: 1.15rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.seo-content p {
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content a:hover {
    color: var(--primary-light);
}

.seo-content ul,
.seo-content ol {
    list-style: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.seo-content ol {
    list-style: decimal;
}

.seo-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    line-height: 1.7;
}

/* SEO CTA block */
.seo-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.breadcrumb .container {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    color: var(--text-muted);
    margin-left: var(--space-xs);
}

.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

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

/* ------------------------------------------
   22. 404 & ERROR PAGES
   ------------------------------------------ */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
}

.error-page .error-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    opacity: 0.15;
    margin-bottom: var(--space-md);
}

.error-page h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.error-page p {
    max-width: 420px;
    margin: 0 auto var(--space-xl);
}

.blocked-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-light);
}

.blocked-page .blocked-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: var(--error);
}

/* ------------------------------------------
   23. ADMIN PANEL
   ------------------------------------------ */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: var(--primary-dark);
    padding: var(--space-lg) 0;
    flex-shrink: 0;
}

.admin-sidebar .brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 var(--space-lg) var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-main {
    flex: 1;
    padding: var(--space-xl);
    background: var(--bg-light);
    overflow-x: auto;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.admin-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.admin-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.admin-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.admin-stat {
    text-align: center;
    padding: var(--space-lg);
}

.admin-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.admin-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.admin-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.admin-table tr:hover td {
    background: var(--bg-blue-light);
}

.admin-table td {
    color: var(--text-light);
}

/* ------------------------------------------
   24. BADGE STYLES
   ------------------------------------------ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

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

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

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

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

.badge-neutral {
    background: var(--bg-light);
    color: var(--text-muted);
}

/* ------------------------------------------
   25. ALERTS
   ------------------------------------------ */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.alert-success { background: var(--success-light); color: #276749; border: 1px solid #9AE6B4; }
.alert-error { background: var(--error-light); color: #9B2C2C; border: 1px solid #FEB2B2; }
.alert-warning { background: var(--warning-light); color: #975A16; border: 1px solid #FAF089; }
.alert-info { background: var(--info-light); color: #2A4365; border: 1px solid #90CDF4; }

/* ------------------------------------------
   26. UTILITY CLASSES
   ------------------------------------------ */
.divider {
    height: 1px;
    background: var(--border);
    margin: var(--space-xl) 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hidden { display: none !important; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ------------------------------------------
   27. RESPONSIVE BREAKPOINTS
   ------------------------------------------ */

/* Tablet - 640px */
@media (min-width: 640px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .section-title { font-size: 1.75rem; }

    .hero { padding: 5rem 0; min-height: 500px; display: flex; align-items: center; }
    .hero > .container { width: 100%; }
    .hero h1 { font-size: 2.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: repeat(2, 1fr); }

    /* footer-grid no longer used, using footer-top */
}

/* Desktop - 1024px */
@media (min-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section { padding: var(--space-3xl) 0; }
    .section-title { font-size: 2rem; }

    .container { padding: 0 var(--space-xl); }

    /* Desktop navigation */
    .hamburger { display: none; }

    .main-nav {
        display: flex;
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-xs);
    }

    .nav-link {
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--secondary);
    }

    /* Legacy navbar desktop */
    .navbar-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: var(--space-xs);
    }

    .navbar-menu a {
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-sm);
    }

    .navbar-menu a:hover,
    .navbar-menu a.active {
        background: var(--secondary);
    }

    /* Hero */
    .hero {
        padding: 80px 0;
    }

    .hero { padding: 6rem 0; min-height: 550px; }
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.25rem;
        text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    }

    /* Grids */
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    .contact-grid { grid-template-columns: 1fr 1fr; }

    /* footer uses footer-top grid now */

    /* SEO content */
    .seo-content h1 { font-size: 2rem; }
    .seo-content h2 { font-size: 1.5rem; }
}

/* Wide - 1280px */
@media (min-width: 1280px) {
    .hero h1 {
        font-size: 3.25rem;
    }

    .container {
        padding: 0 var(--space-2xl);
    }
}

/* Admin responsive */
@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: var(--space-md);
        gap: var(--space-xs);
    }

    .admin-sidebar .brand {
        width: 100%;
        padding: 0 0 var(--space-sm);
        margin-bottom: var(--space-sm);
    }

    .admin-sidebar a {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.8rem;
    }

    .admin-main {
        padding: var(--space-md);
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .admin-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ------------------------------------------
   28. PRINT STYLES
   ------------------------------------------ */
@media print {
    .site-header,
    .navbar,
    .site-footer,
    .footer,
    .wa-float,
    .whatsapp-float,
    .hamburger,
    .header-actions {
        display: none;
    }

    body { font-size: 12pt; color: #000; }
    .hero { background: #eee; color: #000; }
    .hero h1, .hero p { color: #000; }
    .container { max-width: 100%; }
    .section { padding: 1rem 0; }
    a { color: #000; text-decoration: underline; }
}

/* ------------------------------------------
   29. ACCESSIBILITY ENHANCEMENTS
   ------------------------------------------ */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .wa-float.pulse,
    .whatsapp-float {
        animation: none;
    }
}

/* ------------------------------------------
   30. SELECTION & SCROLLBAR
   ------------------------------------------ */
::selection {
    background: var(--primary);
    color: #fff;
}

::-moz-selection {
    background: var(--primary);
    color: #fff;
}

/* Custom scrollbar (webkit) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
