/* =============================================
   MrDweeb Website - Dark Mode Professional
   Primary: #ff6b00 (Orange)
   Theme: Dark, White, Orange
   ============================================= */

/* CSS Variables */
:root {
    --primary: #ff6b00;
    --primary-dark: #e05f00;
    --primary-light: #ff8533;
    --secondary: #ffffff;
    --accent: #ff8533;
    --gradient: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --text-body: #e0e0e0;
    --text-muted: #888888;
    --bg-light: #141414;
    --bg-white: #0a0a0a;
    --bg-dark: #000000;
    --bg-card: #1a1a1a;
    --border: #2a2a2a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.3);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Dark mode specific overrides */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-sm {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 16px;
}

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

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
}

.btn-white {
    background: var(--bg-card);
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-block {
    width: 100%;
}

/* =============================================
   BREAKING NEWS BANNER
   ============================================= */
.breaking-news {
    background: linear-gradient(90deg, #dc2626, #ef4444);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: var(--shadow);
    animation: slideDown 0.5s ease;
}

.breaking-news.hidden {
    display: none;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.breaking-news-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 16px;
}

.breaking-label {
    background: var(--bg-card);
    color: #dc2626;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.breaking-ticker {
    flex: 1;
    overflow: hidden;
}

.breaking-text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.breaking-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.breaking-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

body.has-breaking-news .header {
    top: 52px;
}

body.has-breaking-news .hero {
    margin-top: 132px;
}

/* =============================================
   HEADER - Modern Glassmorphism
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Top Bar */
.top-bar {
    background: var(--bg-dark);
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
}

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

.contact-info a {
    margin-right: 24px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-light);
}

/* Store Status Indicator */
.store-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.closed {
    background: #ef4444;
    animation: none;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.status-text {
    color: #22c55e;
}

.status-text.closed {
    color: #ef4444;
}

/* Main Navigation */
.main-nav {
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .logo-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text .logo-main .mr {
    color: #fff;
}

.logo-text .logo-main .dweeb {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.logo:hover .logo-text .logo-main .mr {
    color: var(--primary-light);
}

.logo:hover .logo-text .logo-sub {
    color: var(--text-light);
}

/* Legacy support for pages still using logo-img */
.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.5));
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-links .nav-btn {
    background: var(--gradient);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-links .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.nav-links .nav-btn::after {
    display: none;
}

/* Mobile Toggle - Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 100000;
    transition: all 0.3s ease;
}

.mobile-toggle:active {
    background: var(--primary);
    border-color: var(--primary);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.mobile-toggle span:nth-child(2) {
    transform: translateY(0);
}

.mobile-toggle span:nth-child(3) {
    transform: translateY(7px);
}

/* Hamburger Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* =============================================
   HERO SECTION - Full Image Background
   ============================================= */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: var(--bg-white);
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero h1 .highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
}

.hero p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.trust-badge:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}

/* =============================================
   NEW HERO SECTION - Clean Centered Layout
   ============================================= */
.hero-new {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background: var(--bg-white);
    padding: 140px 0 100px;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-tech.jpg') center center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.hero-new::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: float 3s ease-in-out infinite;
}

.hero-badge-new i {
    color: var(--primary);
    font-size: 18px;
}

.hero-badge-new span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-new h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-new h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
}

/* Hero Services Row with Images */
.hero-services-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-service-card {
    position: relative;
    width: 140px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid var(--border);
}

.hero-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.hero-service-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.5);
}

.hero-service-card:hover .hero-service-img img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.hero-service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-service-info i {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.hero-service-card:hover .hero-service-info i {
    transform: scale(1.2);
}

.hero-service-info span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Buttons Centered */
.hero-buttons-centered {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid var(--border);
}

.btn-outline-light:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-trust span i {
    color: var(--primary);
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero-new {
        padding-top: 160px;
        min-height: auto;
    }

    .hero-icons-row {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 130px 0 60px;
        min-height: auto;
    }

    .hero-badge-new {
        padding: 10px 18px;
        margin-bottom: 24px;
    }

    .hero-badge-new span {
        font-size: 12px;
    }

    .hero-new h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-icons-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 32px;
    }

    .hero-icon-item i {
        width: 56px;
        height: 56px;
        font-size: 22px;
        border-radius: 14px;
    }

    .hero-icon-item span {
        font-size: 11px;
    }

    /* Hero Service Cards - Mobile */
    .hero-services-row {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-service-card {
        width: calc(33.333% - 8px);
        height: 120px;
    }

    .hero-service-info {
        padding: 10px;
        gap: 4px;
    }

    .hero-service-info i {
        font-size: 18px;
    }

    .hero-service-info span {
        font-size: 11px;
    }

    .hero-buttons-centered {
        flex-direction: column;
        padding: 0;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-buttons-centered .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 15px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-trust span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 120px 0 50px;
    }

    .hero-new h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-icons-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-icon-item i {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }

    .hero-icon-item span {
        font-size: 10px;
    }

    /* Hero Service Cards - Small Mobile */
    .hero-services-row {
        gap: 8px;
    }

    .hero-service-card {
        width: calc(50% - 4px);
        height: 100px;
    }

    .hero-service-card:nth-child(5) {
        width: 100%;
        height: 80px;
    }

    .hero-service-info {
        padding: 8px;
    }

    .hero-service-info i {
        font-size: 16px;
    }

    .hero-service-info span {
        font-size: 10px;
    }

    .hero-badge-new {
        padding: 8px 14px;
    }

    .hero-badge-new i {
        font-size: 14px;
    }

    .hero-badge-new span {
        font-size: 11px;
    }
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
section {
    padding: 80px 0;
}

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

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 16px;
    font-weight: 700;
    color: #fff;
}

.section-header p {
    color: #888;
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section {
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 0, 0.2);
}

.news-card.breaking {
    border: 2px solid #dc2626;
}

.news-card.breaking::before {
    content: 'BREAKING';
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 10;
}

.news-image {
    height: 220px;
    background: linear-gradient(135deg, var(--bg-dark), #1a1a1a),
                url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-content {
    padding: 28px;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-content h3 a {
    color: var(--text-dark);
}

.news-content h3 a:hover {
    color: var(--primary);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-readmore {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-readmore:hover {
    gap: 12px;
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

/* =============================================
   SERVICES SECTION - Modern Cards
   ============================================= */
.services {
    background: var(--bg-card);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    border: 1px solid var(--border);
    position: relative;
    text-align: left;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.service-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* =============================================
   ABOUT SECTION - Split Layout with Image
   ============================================= */
.about {
    background: var(--bg-light);
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text .section-label {
    margin-bottom: 16px;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text > p {
    color: var(--text-body);
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    padding: 14px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .check {
    width: 28px;
    height: 28px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: calc(var(--radius-xl) + 3px);
    z-index: -1;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Floating Stats Card */
.about-stats-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--bg-card);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 32px;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Legacy placeholder support */
.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=800&q=80') center/cover;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

/* =============================================
   STATS SECTION - Gradient Background
   ============================================= */
.stats {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats::before {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    color: var(--primary);
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 500;
}

/* =============================================
   PORTFOLIO SECTION - Image Grid
   ============================================= */
.portfolio {
    background: var(--bg-card);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.portfolio-image {
    aspect-ratio: 16/10;
}

.portfolio-img,
.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.placeholder-img {
    background: linear-gradient(135deg, var(--bg-dark), #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    font-weight: 500;
}

/* Portfolio image backgrounds */
.portfolio-item:nth-child(1) .placeholder-img {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85), rgba(26, 26, 26, 0.8)),
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80') center/cover;
}

.portfolio-item:nth-child(2) .placeholder-img {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85), rgba(26, 26, 26, 0.8)),
                url('https://images.unsplash.com/photo-1547658719-da2b51169166?w=800&q=80') center/cover;
}

.portfolio-item:nth-child(3) .placeholder-img {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85), rgba(26, 26, 26, 0.8)),
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=800&q=80') center/cover;
}

.portfolio-item:nth-child(4) .placeholder-img {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85), rgba(26, 26, 26, 0.8)),
                url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=800&q=80') center/cover;
}

.portfolio-item:hover .portfolio-img,
.portfolio-item:hover .placeholder-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, transparent 100%);
    padding: 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    margin-bottom: 8px;
    font-size: 22px;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay h4 {
    transform: translateY(0);
}

.portfolio-overlay p {
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    background: var(--bg-light);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-card .quote {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
    position: relative;
    padding-top: 40px;
}

.testimonial-card .quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-card .author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 16px;
}

.testimonial-card .author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    background: var(--bg-card);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, rgba(255, 133, 51, 0.03) 100%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info-box .section-label {
    margin-bottom: 16px;
}

.contact-info-box h2 {
    margin-bottom: 20px;
}

.contact-info-box > p {
    color: var(--text-body);
    margin-bottom: 48px;
    font-size: 17px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 133, 51, 0.08) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 16px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Contact Form */
.contact-form-box {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #000000;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    min-width: 0;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul a:hover {
    color: #ff6b00;
    padding-left: 5px;
}

.footer-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    flex-wrap: wrap;
}

.footer-trust img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-trust img:hover {
    opacity: 1;
}

.footer-trust-text {
    max-width: 400px;
    text-align: left;
}

.footer-trust-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-trust-text h4 i {
    color: #ff6b00;
}

.footer-trust-text p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.85rem;
}

.trust-badge-item i {
    color: #ff6b00;
}

@media (max-width: 768px) {
    .footer-trust {
        flex-direction: column;
        text-align: center;
    }

    .footer-trust-text {
        text-align: center;
    }

    .footer-trust-badges {
        justify-content: center;
    }
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-section ul a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 48px 0 90px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
/* WhatsApp Button in CTA */
.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* WhatsApp button mobile - above bottom nav */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 140px;
        right: 16px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

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

    .hero-content {
        max-width: 600px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .about-content {
        gap: 60px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .main-nav {
        padding: 12px 0;
    }

    .hero {
        margin-top: 80px;
        min-height: auto;
        padding: 60px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    /* Make logo smaller on mobile */
    .logo-text .logo-main {
        font-size: 18px;
    }

    .logo-text .logo-sub {
        font-size: 8px;
        letter-spacing: 2px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .image-placeholder,
    .about-img {
        height: 350px;
    }

    .about-stats-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 24px;
        justify-content: center;
    }

    .services-grid,
    .news-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact::before {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    body.has-breaking-news .hero {
        margin-top: 76px;
    }

    .breaking-news-inner {
        padding: 10px 16px;
    }

    .breaking-label {
        font-size: 10px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .service-card {
        padding: 36px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-box {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .footer {
        padding-top: 60px;
    }

    .mobile-nav-links a {
        font-size: 24px;
    }
}

/* =============================================
   WHY CHOOSE US / STRENGTHS SECTION
   ============================================= */
.why-choose-us {
    background: var(--bg-card);
    position: relative;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.strength-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
    background: var(--bg-card);
}

.strength-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.strength-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.strength-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   DATA SECURITY SECTION
   ============================================= */
.data-security {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.data-security::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
}

.data-security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.data-security-text .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.data-security-text h2 {
    color: #fff;
}

.data-security-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.security-features {
    list-style: none;
    margin-top: 32px;
}

.security-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.security-features .check {
    width: 28px;
    height: 28px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.data-security-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gdpr-badge {
    max-width: 350px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* =============================================
   VALUES / WE BELIEVE IN SECTION
   ============================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--bg-card);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =============================================
   GOOGLE REVIEWS SECTION
   ============================================= */
.reviews-section {
    background: var(--bg-light);
}

.google-rating {
    text-align: center;
    margin-bottom: 60px;
}

.rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 32px 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.google-logo {
    height: 30px;
    width: auto;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    color: #fbbc04;
    font-size: 28px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.reviewer-info strong {
    display: inline;
    color: var(--text-dark);
    margin-right: 8px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.review-stars {
    color: #fbbc04;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

.review-text {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

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

.reviews-cta {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    background: var(--bg-card);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto 48px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.05);
}

.faq-question h3 {
    font-size: 17px;
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 15px;
}

.faq-cta {
    text-align: center;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.map-section h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.map-container iframe {
    display: block;
}

.directions-text {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
}

.directions-text h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.directions-text p {
    color: var(--text-body);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   SERVICE LINK IN CARDS
   ============================================= */
.service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.service-link::after {
    content: ' →';
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* Hero subtext */
.hero-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* Contact form subtitle */
.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
}

.contact-form-box h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* Contact link styles */
.contact-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* =============================================
   RESPONSIVE - NEW SECTIONS
   ============================================= */
@media (max-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .data-security-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .strengths-grid,
    .values-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .data-security-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .data-security-image {
        order: -1;
    }

    .gdpr-badge {
        max-width: 250px;
    }

    .security-features {
        display: inline-block;
        text-align: left;
    }

    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }

    .map-section {
        margin-top: 48px;
        padding-top: 48px;
    }
}

@media (max-width: 480px) {
    .strength-card,
    .value-card,
    .review-card {
        padding: 28px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .rating-badge {
        padding: 24px 32px;
    }
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-page {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
}

.category-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

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

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-detail-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
}

.service-detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-detail-card > p {
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-detail-card ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-body);
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.warning-note {
    background: #fef3c7;
    color: #92400e;
    padding: 16px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 24px;
}

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

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.cta-contact-options {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-contact-link {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.cta-contact-link:hover {
    color: var(--primary);
}

.cta-contact-link.cta-whatsapp:hover {
    color: #25d366;
}

.cta-divider {
    color: var(--text-muted);
    font-size: 14px;
}

/* =============================================
   FAQ PAGE SPECIFIC
   ============================================= */
.faq-page {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

/* =============================================
   RELATED LINKS
   ============================================= */
.related-links {
    background: var(--bg-light);
    padding: 80px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-decoration: none;
}

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

.related-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.related-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* =============================================
   POLICY / TERMS PAGES
   ============================================= */
.policy-section,
.terms-section {
    padding: 80px 0;
}

.policy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-block,
.terms-block {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.policy-block h2,
.terms-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.policy-block h3,
.terms-block h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.policy-block p,
.terms-block p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-block ul,
.terms-list {
    list-style: none;
    margin: 16px 0;
}

.policy-block ul li,
.terms-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-body);
    line-height: 1.7;
}

.policy-block ul li::before,
.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.policy-block.warning {
    border-color: #fbbf24;
    background: rgba(255, 107, 0, 0.1);
}

.policy-block.info {
    border-color: var(--primary-light);
    background: rgba(255, 107, 0, 0.05);
}

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

.contact-block {
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Warranty Table */
.warranty-table {
    margin-top: 20px;
}

.warranty-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.warranty-row:last-child {
    border-bottom: none;
}

.warranty-row:nth-child(odd) {
    background: var(--bg-light);
    border-radius: var(--radius);
}

.warranty-type {
    font-weight: 500;
    color: var(--text-dark);
}

.warranty-period {
    background: var(--gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

/* =============================================
   CONTACT PAGE SPECIFIC
   ============================================= */
.contact-page-section {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.contact-info-card h2 {
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
}

.contact-info-content a {
    color: var(--text-body);
    transition: color 0.3s;
}

.contact-info-content a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
    margin-bottom: 32px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

/* Map Page Section */
.map-page-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.map-wrapper {
    margin-bottom: 48px;
}

/* Directions Section */
.directions-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.directions-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

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

.directions-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.directions-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Quick Contact CTA */
.quick-contact-cta {
    background: var(--gradient);
    padding: 60px 0;
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.quick-contact-text h2 {
    color: #fff;
    margin-bottom: 8px;
}

.quick-contact-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.quick-contact-buttons {
    display: flex;
    gap: 16px;
}

.quick-contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    font-size: 18px;
}

/* =============================================
   RESPONSIVE - INNER PAGES
   ============================================= */
@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
        margin-top: 76px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .related-grid,
    .directions-section {
        grid-template-columns: 1fr;
    }

    .quick-contact-content {
        text-align: center;
        justify-content: center;
    }

    .quick-contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .quick-contact-buttons .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .policy-block,
    .terms-block,
    .contact-info-card,
    .contact-form-card {
        padding: 28px 20px;
    }

    .service-detail-card {
        padding: 28px 24px;
    }

    .directions-card {
        padding: 24px 20px;
    }
}

/* =============================================
   BOOKING SYSTEM
   ============================================= */
.booking-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Progress Steps */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.progress-step.completed .step-number {
    background: #10b981;
    border-color: transparent;
    color: #fff;
}

.progress-step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 16px;
    margin-bottom: 24px;
}

/* Booking Container */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-step {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-step h2 {
    text-align: center;
    margin-bottom: 8px;
}

.step-description {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* Service Selection Grid */
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.service-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: center;
}

.service-option:hover .service-option-content {
    border-color: var(--primary-light);
    background: rgba(255, 107, 0, 0.02);
}

.service-option input:checked + .service-option-content,
.service-option.selected .service-option-content {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

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

.service-option-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.service-option-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Date & Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Calendar */
.calendar-container {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
}

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

.calendar-header h3 {
    margin: 0;
    font-size: 18px;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-card);
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.calendar-nav:hover:not(:disabled) {
    background: var(--primary);
    color: #fff;
}

.calendar-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: var(--radius);
    cursor: default;
    transition: all 0.2s ease;
}

.calendar-day.empty {
    visibility: hidden;
}

.calendar-day.available {
    background: var(--bg-card);
    cursor: pointer;
    font-weight: 500;
}

.calendar-day.available:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
}

.calendar-day.selected {
    background: var(--gradient) !important;
    color: #fff !important;
}

.calendar-day.disabled {
    color: var(--text-muted);
    opacity: 0.4;
}

/* Time Slots */
.timeslots-container h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.timeslots-hint {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 40px 0;
}

.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.timeslot {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timeslot.available:hover {
    border-color: var(--primary-light);
    background: rgba(255, 107, 0, 0.05);
}

.timeslot.selected {
    border-color: var(--primary);
    background: var(--gradient);
    color: #fff;
}

.timeslot.unavailable {
    background: var(--bg-light);
    color: var(--text-muted);
    cursor: not-allowed;
    text-decoration: line-through;
}

.no-slots {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
}

/* Booking Details Form */
.booking-details-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.booking-details-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.booking-details-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    cursor: pointer;
}

.booking-details-form .checkbox-label input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.booking-details-form .checkbox-label a {
    color: var(--primary);
}

/* Booking Summary */
.booking-summary {
    max-width: 500px;
    margin: 0 auto;
}

.summary-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.summary-card h3 {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.summary-item.full-width {
    flex-direction: column;
    gap: 8px;
}

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

.summary-value {
    font-weight: 500;
    color: var(--text-dark);
}

.summary-item.full-width .summary-value {
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.7;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.summary-notice {
    display: flex;
    gap: 16px;
    background: rgba(255, 107, 0, 0.1);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.summary-notice p {
    margin: 0;
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.7;
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 24px;
}

.booking-success h2 {
    color: #10b981;
}

.success-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    margin: 32px 0;
}

.success-details p {
    margin: 8px 0;
    color: var(--text-body);
}

.success-info {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 32px;
}

.success-info h4 {
    margin-bottom: 16px;
}

.success-info ul {
    list-style: none;
}

.success-info li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-body);
}

.success-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Store Info Section */
.booking-store-info {
    background: var(--bg-card);
    padding: 60px 0;
}

.store-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.store-info-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.store-info-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.store-info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.store-info-card p {
    color: var(--text-muted);
    margin: 0;
}

.store-info-card a {
    color: var(--primary);
    font-weight: 600;
}

/* =============================================
   BOOKING RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .booking-progress {
        flex-wrap: wrap;
        gap: 16px;
    }

    .progress-line {
        display: none;
    }

    .progress-step {
        flex: 0 0 calc(50% - 8px);
    }

    .booking-step {
        padding: 32px 24px;
    }

    .service-selection-grid {
        grid-template-columns: 1fr;
    }

    .datetime-selection {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .booking-details-form .form-row {
        grid-template-columns: 1fr;
    }

    .store-info-grid {
        grid-template-columns: 1fr;
    }

    .step-actions {
        flex-direction: column;
    }

    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .timeslots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-label {
        font-size: 11px;
    }

    .calendar-day {
        font-size: 12px;
    }
}

/* =============================================
   COLLECT.CHAT CHATBOT - MOBILE RESPONSIVE
   ============================================= */

/* Chatbot container - target the iframe */
iframe[src*="collect"],
iframe[title*="chat"],
iframe[title*="Collect"],
div[class*="collect-chat"],
#CollectChatLauncher,
.cc-1xry {
    z-index: 997 !important;
}

/* Desktop chatbot - normal positioning */
@media (min-width: 769px) {
    iframe[src*="collect"],
    #CollectChatLauncher {
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* Mobile chatbot adjustments */
@media (max-width: 768px) {
    /* Chatbot launcher button - make it smaller and reposition */
    iframe[src*="collect"],
    iframe[title*="chat"],
    #CollectChatLauncher,
    div[class*="collect"] iframe {
        bottom: 16px !important;
        right: 16px !important;
        max-width: 60px !important;
        max-height: 60px !important;
        width: 60px !important;
        height: 60px !important;
        transform: scale(1) !important;
        z-index: 997 !important;
    }

    /* When chat window is open - make it responsive */
    iframe[src*="collect"][style*="width: 350px"],
    iframe[src*="collect"][style*="height: 500px"],
    div[class*="collect-chat"] iframe:not([style*="60px"]) {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 85vh !important;
        max-height: 85vh !important;
        border-radius: 20px 20px 0 0 !important;
        z-index: 1003 !important;
    }
}

@media (max-width: 480px) {
    iframe[src*="collect"],
    #CollectChatLauncher {
        bottom: 12px !important;
        right: 12px !important;
        max-width: 56px !important;
        max-height: 56px !important;
        width: 56px !important;
        height: 56px !important;
    }
}

/* =============================================
   MOBILE NAVIGATION - SIMPLE SLIDE-OUT
   ============================================= */

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile nav bottom sheet */
.mobile-nav-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px 24px 0 0;
    padding: 0 20px 30px;
    max-height: 85vh;
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-sheet {
    transform: translateY(0);
}

/* Sheet header */
.mobile-nav-sheet .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: none;
}

.mobile-nav-sheet .mobile-nav-close {
    width: 44px;
    height: 44px;
    background: #2a2a2a;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-nav-sheet .mobile-nav-close:active {
    background: var(--primary);
    transform: scale(0.95);
}

.mobile-nav-sheet .mobile-nav-brand {
    flex: 1;
    text-align: center;
}

.mobile-nav-sheet .brand-text {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.mobile-nav-sheet .brand-text span {
    color: var(--primary);
}

.mobile-nav-sheet .mobile-nav-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* Navigation grid */
.mobile-nav-sheet .mobile-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 0;
}

.mobile-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    background: #242424;
    border: 2px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-card i {
    font-size: 24px;
    color: var(--primary);
}

.mobile-nav-card span {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-align: center;
}

.mobile-nav-card:active {
    transform: scale(0.95);
    background: #2a2a2a;
}

.mobile-nav-card.active {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
}

.mobile-nav-card.active span {
    color: #fff;
}

/* Legacy styles - keep for compatibility */
.mobile-nav-content {
    display: none;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

/* Hide unused elements */
.mobile-nav-handle,
.mobile-nav-quick-actions,
.mobile-nav-services,
.mobile-nav-store-info,
.mobile-nav-social,
.mobile-nav-section-title {
    display: none !important;
}

/* Mobile nav header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
}

.mobile-nav-brand .logo-img {
    height: 50px;
    width: auto;
}

.mobile-nav-brand .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mobile-nav-brand .logo-text .logo-main {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mobile-nav-brand .logo-text .logo-main .mr {
    color: #fff;
}

.mobile-nav-brand .logo-text .logo-main .dweeb {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-nav-brand .logo-text .logo-sub {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mobile-nav-brand .highlight {
    color: var(--primary);
}

/* Close button */
.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-nav-close:active {
    background: rgba(255, 107, 0, 0.3);
}

.mobile-nav-close span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: absolute;
}

.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}

/* Navigation Links */
.mobile-nav-links-section {
    flex: 1;
    padding: 10px 0;
}

.mobile-nav-grid {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.mobile-nav-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-item.active {
    background: rgba(255, 107, 0, 0.1);
    border-left: 3px solid var(--primary);
}

.mobile-nav-item .nav-icon {
    font-size: 18px;
    color: #888;
    width: 24px;
    text-align: center;
}

.mobile-nav-item.active .nav-icon {
    color: var(--primary);
}

.mobile-nav-item .nav-label {
    font-size: 15px;
    font-weight: 500;
    color: #ccc;
}

.mobile-nav-item.active .nav-label {
    color: var(--primary);
}

/* CTA Button */
.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px;
    padding: 16px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
}

.mobile-nav-cta:active {
    background: var(--primary-dark);
}

.mobile-nav-cta i {
    font-size: 16px;
}

/* Contact info at bottom */
.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-nav-footer a {
    display: block;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 8px;
}

.mobile-nav-footer p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Legacy elements - hide */
.mobile-nav-contact-row,
.mobile-nav-contact-item,
.profile-icon,
.mobile-nav-links,
.bottom-nav-item,
.mobile-bottom-nav-inner {
    display: none !important;
}

/* Mobile toggle active state */
.mobile-toggle.active {
    z-index: 10000;
}

.mobile-toggle.active span {
    background: #fff;
}

/* =============================================
   MOBILE NAVIGATION RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .header.scrolled {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .main-nav {
        background: #0a0a0a;
    }

    .nav-content {
        min-height: 60px;
    }

    .mobile-toggle {
        touch-action: manipulation;
    }

    .page-hero {
        margin-top: 76px;
    }
}

/* =============================================
   DEVICE REPAIR SERVICE PAGES
   ============================================= */

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
}

.hero-badge-small {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Quick Navigation */
.service-quick-nav {
    background: #f8f9fa;
    padding: 30px 0;
    position: sticky;
    top: 76px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-nav-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.quick-nav-item:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.quick-nav-icon {
    font-size: 20px;
}

/* Device Repair Section */
.device-repair-section {
    padding: 80px 0;
}

.device-repair-section.alt-bg {
    background: #f8f9fa;
}

.device-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.device-icon {
    font-size: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.device-title h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.models-covered {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Services We Provide */
.services-we-provide h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

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

.service-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.device-repair-section.alt-bg .service-list-item {
    background: var(--bg-card);
}

.service-list-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
    transform: translateX(5px);
}

.service-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.service-list-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

/* Repair Request Form Section */
.repair-request-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.repair-request-section .section-header {
    color: #fff;
}

.repair-request-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.repair-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.repair-request-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

.repair-request-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.repair-request-form input,
.repair-request-form select,
.repair-request-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: #fff;
}

.repair-request-form input:focus,
.repair-request-form select:focus,
.repair-request-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.repair-request-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.repair-request-form .btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
}

.repair-request-form .btn-block:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* Responsive for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-quick-nav {
        top: 60px;
        padding: 20px 0;
    }

    .quick-nav-grid {
        gap: 10px;
    }

    .quick-nav-item {
        padding: 10px 14px;
        font-size: 12px;
    }

    .quick-nav-icon {
        font-size: 16px;
    }

    .device-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .device-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .device-title h2 {
        font-size: 24px;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .repair-request-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .quick-nav-item span:last-child {
        display: none;
    }

    .quick-nav-item {
        padding: 12px;
    }

    .quick-nav-icon {
        font-size: 20px;
    }

    .device-repair-section {
        padding: 60px 0;
    }
}

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.brand-item {
    padding: 12px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.brand-item:hover .brand-name {
    color: #fff;
}

.brand-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* Common Issues Section */
.common-issues-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.issue-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.issue-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.issue-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.issue-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .issue-card {
        padding: 24px;
    }

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

    .brands-grid {
        gap: 10px;
    }

    .brand-item {
        padding: 10px 16px;
    }
}

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

    .common-issues-section {
        padding: 60px 0;
    }
}

/* =============================================
   GAMING REPAIR PAGE STYLES
   ============================================= */

/* Gaming Hero */
.gaming-hero {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 50%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.gaming-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Gaming Stats Section */
.gaming-stats-section {
    background: #111;
    padding: 40px 0;
    border-bottom: 1px solid #222;
}

.gaming-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gaming-stat {
    text-align: center;
    padding: 20px;
}

.gaming-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.gaming-stat-label {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

/* Gaming Icon Accent */
.gaming-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

/* Gaming Service Items */
.service-list-item.gaming-item {
    border-color: #1a1a2e;
}

.service-list-item.gaming-item:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 133, 51, 0.03) 100%);
}

.service-check.gaming-check {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* GPU Section */
.gpu-section {
    padding: 80px 0;
    background: #0f0f1a;
}

.gpu-section .section-header {
    color: #fff;
}

.gpu-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.gpu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.gpu-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252542 100%);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.gpu-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
}

.gpu-brand {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.gpu-models {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gpu-models span {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 13px;
    color: #ccc;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.gpu-models span:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
    color: #fff;
}

/* Gaming Issues Section */
.gaming-issues {
    background: #111;
}

.gaming-issues .section-header {
    color: #fff;
}

.issue-card.gaming-issue {
    background: #1a1a2e;
    border-color: #333;
}

.issue-card.gaming-issue:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.15);
}

.issue-card.gaming-issue h3 {
    color: #fff;
}

.issue-card.gaming-issue p {
    color: #999;
}

/* Gaming Form Section */
.gaming-form-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 100%);
}

.btn-gaming {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.btn-gaming:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4) !important;
}

/* Gaming Page Responsive */
@media (max-width: 768px) {
    .gaming-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gaming-stat-number {
        font-size: 28px;
    }

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

    .gpu-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .gaming-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gaming-stat {
        padding: 16px 8px;
    }

    .gaming-stat-number {
        font-size: 24px;
    }

    .gaming-stat-label {
        font-size: 12px;
    }
}

/* =============================================
   DATA RECOVERY PAGE STYLES
   ============================================= */

/* Data Recovery Hero */
.data-hero {
    background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #1a365d 100%);
}

/* Data Trust Section */
.data-trust-section {
    background: #0a192f;
    padding: 30px 0;
    border-bottom: 1px solid #1e3a5f;
}

.data-trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.data-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-trust-item .trust-icon {
    font-size: 24px;
}

.data-trust-item .trust-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Data Icon Accent */
.data-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

/* Data Service Items */
.service-list-item.data-item:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.service-check.data-check {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Device Types Section */
.device-types-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.device-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.device-type-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.device-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.device-type-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.device-type-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.device-type-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Data Scenarios Section */
.data-scenarios {
    background: var(--bg-card);
}

.issue-card.data-issue:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
}

/* Recovery Process Section */
.recovery-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.recovery-process-section .section-header {
    color: #fff;
}

.recovery-process-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 24px;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 16px;
}

.process-step h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    flex-shrink: 0;
}

/* Notice Section */
.notice-section {
    padding: 40px 0;
    background: rgba(255, 107, 0, 0.1);
}

.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.notice-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #92400e;
}

.notice-content p {
    color: #78716c;
    font-size: 14px;
    line-height: 1.6;
}

/* Data Form Section */
.data-form-section {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.btn-data {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.btn-data:hover {
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4) !important;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Data Recovery Responsive */
@media (max-width: 768px) {
    .data-trust-grid {
        gap: 20px;
    }

    .data-trust-item {
        flex-basis: 45%;
        justify-content: center;
    }

    .device-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .device-type-card {
        padding: 24px;
    }

    .process-steps {
        flex-direction: column;
        gap: 0;
    }

    .process-connector {
        width: 2px;
        height: 30px;
    }

    .notice-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .data-trust-grid {
        flex-direction: column;
        gap: 16px;
    }

    .data-trust-item {
        justify-content: center;
    }

    .device-types-grid {
        grid-template-columns: 1fr;
    }

    .device-type-icon {
        font-size: 36px;
    }
}

/* =============================================
   HOME PAGE REDESIGN - COMPACT SECTIONS
   ============================================= */

/* Services Overview - Compact Grid */
.services-overview {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-compact-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.service-compact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-compact-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.service-compact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-compact-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-price {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    margin: 12px 0;
}

.service-link-text {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.service-compact-card:hover .service-link-text {
    color: var(--primary);
}

/* Why Choose Us - Compact */
.why-choose-compact {
    padding: 80px 0;
    background: var(--bg-card);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.why-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.why-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Google Rating Inline */
.google-rating-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.google-rating-inline .stars {
    color: #fbbf24;
    font-size: 20px;
}

.google-rating-inline span:last-child {
    color: var(--text-muted);
    font-size: 14px;
}

.google-rating-inline .google-icon {
    font-size: 24px;
    background: linear-gradient(135deg, #4285f4 25%, #34a853 25%, #34a853 50%, #fbbc05 50%, #fbbc05 75%, #ea4335 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Outline Dark */
.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
    padding: 14px 28px;
}

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

/* Responsive - Compact Sections */
@media (max-width: 1024px) {
    .services-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-compact-grid {
        grid-template-columns: 1fr;
    }

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

    .services-overview,
    .why-choose-compact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .service-compact-card {
        padding: 24px 20px;
    }

    .why-item {
        padding: 20px;
    }
}

/* =============================================
   SERVICES PAGE REDESIGN - TABBED LAYOUT
   ============================================= */

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab:hover {
    border-color: var(--primary-light);
    background: rgba(255, 107, 0, 0.05);
}

.service-tab.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

.service-tab-icon {
    font-size: 20px;
}

/* Service Tab Content */
.service-tab-content {
    display: none;
}

.service-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Service Cards Grid - Compact */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-compact {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card-compact:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-card-compact .card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-card-compact h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card-compact p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card-compact .repairs-list {
    margin-bottom: 20px;
}

.service-card-compact .repairs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-body);
}

.service-card-compact .repairs-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 10px;
}

@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-tabs {
        gap: 8px;
    }

    .service-tab {
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .service-tab span:last-child {
        display: none;
    }

    .service-tab {
        padding: 14px;
    }

    .service-tab-icon {
        font-size: 24px;
    }
}

/* =============================================
   CHATBOT WIDGET FIX - PREVENT OVERLAP WITH MOBILE NAV
   ============================================= */

/* Move chat widgets up on mobile to avoid bottom nav overlap */
@media (max-width: 768px) {
    /* Collect.chat widget */
    #collectchat,
    .coll-widget,
    [id*="collect"],
    iframe[src*="collect"] {
        bottom: 85px !important;
    }

    /* Generic chat widget selectors - target common patterns */
    div[style*="position: fixed"][style*="bottom: 0"],
    div[style*="position: fixed"][style*="bottom:0"],
    div[style*="position:fixed"][style*="bottom: 0"],
    div[style*="position:fixed"][style*="bottom:0"] {
        bottom: 85px !important;
    }

    /* Tawk.to widget */
    .tawk-min-container,
    #tawk-chat-widget,
    [class*="tawk"] {
        bottom: 85px !important;
    }

    /* Tidio widget */
    #tidio-chat,
    [class*="tidio"] {
        bottom: 85px !important;
    }

    /* Crisp widget */
    .crisp-client,
    [class*="crisp"] {
        bottom: 85px !important;
    }

    /* Intercom widget */
    .intercom-lightweight-app-launcher,
    .intercom-messenger-frame,
    [class*="intercom"] {
        bottom: 85px !important;
    }

    /* Zendesk widget */
    iframe#launcher,
    [class*="zendesk"] {
        bottom: 85px !important;
    }

    /* Facebook Messenger */
    .fb_dialog,
    .fb-customerchat {
        bottom: 85px !important;
    }
}

/* Ensure mobile nav stays on top of everything */
.mobile-bottom-nav {
    z-index: 99999 !important;
}

.mobile-nav-overlay {
    z-index: 100000 !important;
}

/* =============================================
   NOTIFICATION TOAST SYSTEM
   ============================================= */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 450px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    transform: translateX(120%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-left: 4px solid var(--primary);
}

.notification-toast.notification-visible {
    transform: translateX(0);
}

.notification-toast.notification-hiding {
    opacity: 0;
    transform: translateX(120%);
}

.notification-toast.notification-success {
    border-left-color: #22c55e;
}

.notification-toast.notification-error {
    border-left-color: #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.notification-error .notification-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.notification-message {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 12px;
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--text-body);
}

@media (max-width: 480px) {
    .notification-toast {
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* =============================================
   GDPR COOKIE CONSENT BANNER
   ============================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 99998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.cookie-consent-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-body);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-cookie-settings:hover {
    border-color: var(--text-light);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px 12px 20px;
        bottom: 120px; /* Position above mobile bottom nav with search bar */
        border-radius: 16px 16px 0 0;
        left: 8px;
        right: 8px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-consent-text {
        min-width: 0;
        width: 100%;
    }

    .cookie-consent-text h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .cookie-consent-text p {
        font-size: 12px;
        line-height: 1.4;
    }

    .cookie-consent-buttons {
        width: 100%;
        display: flex !important;
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }

    .cookie-consent-buttons .btn {
        flex: 1;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Hide header global search trigger on mobile - use bottom nav search instead */
    .main-nav .global-search-trigger,
    .nav-content .global-search-trigger,
    .header .global-search-trigger,
    button.global-search-trigger:not(.mobile-nav-item) {
        display: none !important;
    }

    /* Style the bottom nav search trigger */
    .mobile-bottom-nav .global-search-trigger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        width: auto;
        height: auto;
        margin: 0;
        border-radius: 0;
        padding: 0;
        color: #888;
        cursor: pointer;
        transition: color 0.2s;
    }

    .mobile-bottom-nav .global-search-trigger:hover,
    .mobile-bottom-nav .global-search-trigger:active {
        color: var(--primary);
    }

    .mobile-bottom-nav .global-search-trigger i {
        font-size: 20px;
    }

    .mobile-bottom-nav .global-search-trigger span {
        font-size: 10px;
        margin-top: 4px;
    }
}

@media (max-width: 400px) {
    .cookie-consent {
        padding: 12px 10px 16px;
        bottom: 115px; /* Position above mobile bottom nav with search bar */
        left: 6px;
        right: 6px;
    }

    .cookie-consent-text h4 {
        font-size: 13px;
    }

    .cookie-consent-text p {
        font-size: 11px;
    }

    .cookie-consent-buttons .btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* =============================================
   APPLE REPAIR PAGE STYLES
   ============================================= */

/* Apple Hero Section */
.apple-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1a 100%);
}

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

.apple-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.6);
}

.apple-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.apple-hero .container {
    position: relative;
    z-index: 2;
}

.apple-hero-content {
    max-width: 700px;
}

.hero-badge-apple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-apple i {
    font-size: 18px;
    color: var(--primary);
}

.hero-badge-apple span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apple-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.apple-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.apple-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.apple-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Apple Devices Navigation */
.apple-devices-nav {
    background: var(--bg-dark);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.device-nav-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: var(--bg-card);
    transition: all 0.3s ease;
    text-decoration: none;
}

.device-nav-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.15);
}

.device-nav-img {
    height: 120px;
    overflow: hidden;
}

.device-nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.7);
}

.device-nav-card:hover .device-nav-img img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.device-nav-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.device-nav-info i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.device-nav-info span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.device-nav-info small {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

/* Apple Device Sections */
.apple-device-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.apple-device-section.alt-bg {
    background: var(--bg-card);
}

.device-section-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.device-section-grid.reverse {
    grid-template-columns: 1fr 400px;
}

.device-section-grid.reverse .device-section-image {
    order: 2;
}

.device-section-grid.reverse .device-section-content {
    order: 1;
}

.device-section-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.device-section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.device-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.device-badge i {
    font-size: 24px;
    color: #fff;
}

.device-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.device-section-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.device-models {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.service-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-item-compact:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

.service-item-compact i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.service-item-compact span {
    font-size: 13px;
    color: var(--text-body);
}

.device-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-from {
    font-size: 16px;
    color: var(--text-light);
}

.price-from strong {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

/* Apple Why Us Section */
.apple-why-us {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 100%);
    padding: 60px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.why-us-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-us-icon i {
    font-size: 28px;
    color: #fff;
}

.why-us-item h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.why-us-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Apple Repair Page - Mobile Responsive */
@media (max-width: 1024px) {
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .device-section-grid,
    .device-section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .device-section-grid.reverse .device-section-image,
    .device-section-grid.reverse .device-section-content {
        order: unset;
    }

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

@media (max-width: 768px) {
    .apple-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .apple-hero h1 {
        font-size: 36px;
    }

    .apple-hero p {
        font-size: 16px;
    }

    .apple-hero-stats {
        gap: 24px;
    }

    .hero-stat .stat-number {
        font-size: 28px;
    }

    .hero-stat .stat-label {
        font-size: 12px;
    }

    .apple-hero-buttons {
        flex-direction: column;
    }

    .apple-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .device-nav-img {
        height: 100px;
    }

    .device-nav-info {
        padding: 12px;
    }

    .device-nav-info i {
        font-size: 20px;
    }

    .device-nav-info span {
        font-size: 14px;
    }

    .apple-device-section {
        padding: 60px 0;
    }

    .device-section-content h2 {
        font-size: 28px;
    }

    .device-section-image img {
        height: 220px;
    }

    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    .device-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .device-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-item {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .apple-hero {
        padding: 110px 0 50px;
    }

    .apple-hero h1 {
        font-size: 28px;
    }

    .hero-badge-apple {
        padding: 8px 14px;
    }

    .hero-badge-apple span {
        font-size: 12px;
    }

    .apple-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat {
        flex: 0 0 calc(50% - 8px);
    }

    .hero-stat .stat-number {
        font-size: 24px;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .device-nav-img {
        height: 80px;
    }

    .device-nav-info {
        padding: 10px;
    }

    .device-nav-info i {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .device-nav-info span {
        font-size: 13px;
    }

    .device-nav-info small {
        font-size: 11px;
    }

    .device-section-image img {
        height: 180px;
    }

    .device-badge {
        width: 44px;
        height: 44px;
        top: 12px;
        right: 12px;
    }

    .device-badge i {
        font-size: 18px;
    }

    .service-item-compact {
        padding: 8px 10px;
    }

    .service-item-compact span {
        font-size: 12px;
    }
}

/* =============================================
   LAPTOP REPAIR PAGE STYLES
   ============================================= */

/* Laptop Hero Section */
.laptop-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1a 100%);
}

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

.laptop-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.5);
}

.laptop-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.laptop-hero .container {
    position: relative;
    z-index: 2;
}

.laptop-hero-content {
    max-width: 650px;
}

.hero-badge-laptop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-laptop i {
    font-size: 18px;
    color: var(--primary);
}

.hero-badge-laptop span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.laptop-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.laptop-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.laptop-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.laptop-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Laptop Brands Navigation */
.laptop-brands-nav {
    background: var(--bg-dark);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.brands-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.brand-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-nav-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.15);
}

.brand-nav-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.brand-nav-card small {
    font-size: 12px;
    color: var(--text-light);
}

/* Laptop Issues Section */
.laptop-issues-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.issues-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.issue-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.issue-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.issue-card-img {
    height: 160px;
    overflow: hidden;
}

.issue-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.7);
}

.issue-card-new:hover .issue-card-img img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.issue-card-content {
    padding: 24px;
}

.issue-icon-small {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.issue-icon-small i {
    font-size: 20px;
    color: #fff;
}

.issue-card-content h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.issue-card-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.issue-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Laptop Brand Sections */
.laptop-brand-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.laptop-brand-section.alt-bg {
    background: var(--bg-card);
}

.brand-section-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.brand-section-grid.reverse {
    grid-template-columns: 1fr 380px;
}

.brand-section-grid.reverse .brand-section-image {
    order: 2;
}

.brand-section-grid.reverse .brand-section-content {
    order: 1;
}

.brand-section-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.brand-section-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.brand-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.brand-models {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* All Services Grid */
.laptop-all-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 100%);
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.all-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.all-service-item:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

.all-service-item i {
    font-size: 20px;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.all-service-item span {
    font-size: 14px;
    color: var(--text-body);
}

/* Laptop Why Us */
.laptop-why-us {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 100%);
    padding: 60px 0;
}

/* Laptop Page - Mobile Responsive */
@media (max-width: 1024px) {
    .brands-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .brand-section-grid,
    .brand-section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-section-grid.reverse .brand-section-image,
    .brand-section-grid.reverse .brand-section-content {
        order: unset;
    }

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

@media (max-width: 768px) {
    .laptop-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .laptop-hero h1 {
        font-size: 36px;
    }

    .laptop-hero p {
        font-size: 16px;
    }

    .laptop-hero-stats {
        gap: 24px;
    }

    .laptop-hero-buttons {
        flex-direction: column;
    }

    .laptop-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .brands-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-nav-card {
        padding: 16px 12px;
    }

    .brand-nav-name {
        font-size: 16px;
    }

    .issues-cards-grid {
        grid-template-columns: 1fr;
    }

    .laptop-issues-section,
    .laptop-brand-section,
    .laptop-all-services {
        padding: 60px 0;
    }

    .brand-section-content h2 {
        font-size: 28px;
    }

    .brand-section-image img {
        height: 220px;
    }

    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .all-service-item {
        padding: 12px 14px;
    }

    .all-service-item i {
        font-size: 18px;
    }

    .all-service-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .laptop-hero {
        padding: 110px 0 50px;
    }

    .laptop-hero h1 {
        font-size: 28px;
    }

    .hero-badge-laptop {
        padding: 8px 14px;
    }

    .hero-badge-laptop span {
        font-size: 12px;
    }

    .laptop-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .brands-nav-grid {
        gap: 10px;
    }

    .brand-nav-card {
        padding: 14px 10px;
    }

    .brand-nav-name {
        font-size: 14px;
    }

    .brand-nav-card small {
        font-size: 10px;
    }

    .issue-card-img {
        height: 140px;
    }

    .issue-card-content {
        padding: 20px;
    }

    .issue-card-content h3 {
        font-size: 18px;
    }

    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .brand-section-image img {
        height: 180px;
    }
}

/* =============================================
   GAMING REPAIR PAGE STYLES
   ============================================= */

/* Gaming Color Variables */
.highlight-gaming {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label-gaming {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.btn-gaming {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #0a0a0a;
    font-weight: 700;
    border: none;
}

.btn-gaming:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ff6b00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

/* Gaming Hero Section */
.gaming-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1a2e 50%, #0f0f1a 100%);
}

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

.gaming-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.6) saturate(1.2);
}

.gaming-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.gaming-hero .container {
    position: relative;
    z-index: 2;
}

.gaming-hero-content {
    max-width: 650px;
}

.hero-badge-gaming {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-gaming i {
    font-size: 18px;
    color: #ff6b00;
}

.hero-badge-gaming span {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gaming-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gaming-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.gaming-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.gaming-stat-item {
    display: flex;
    flex-direction: column;
}

.gaming-stat-item .stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gaming-stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.gaming-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Gaming Services Navigation */
.gaming-services-nav {
    background: var(--bg-dark);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.gaming-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gaming-nav-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: var(--bg-card);
    transition: all 0.3s ease;
    text-decoration: none;
}

.gaming-nav-card:hover {
    transform: translateY(-4px);
    border-color: #ff6b00;
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.2);
}

.gaming-nav-img {
    height: 120px;
    overflow: hidden;
}

.gaming-nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.6) saturate(1.3);
}

.gaming-nav-card:hover .gaming-nav-img img {
    transform: scale(1.1);
    filter: brightness(0.8) saturate(1.3);
}

.gaming-nav-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.gaming-nav-info i {
    font-size: 24px;
    color: #ff6b00;
    margin-bottom: 4px;
}

.gaming-nav-info span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.gaming-nav-info small {
    font-size: 12px;
    color: #ff8533;
    font-weight: 500;
}

/* Gaming Issues Section */
.gaming-issues-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.gaming-issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gaming-issue-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.gaming-issue-card:hover {
    border-color: #ff6b00;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.gaming-issue-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gaming-issue-icon i {
    font-size: 24px;
    color: #ff6b00;
}

.gaming-issue-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.gaming-issue-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.issue-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Gaming GPU Section */
.gaming-gpu-section,
.gaming-cooling-section,
.gaming-builds-section,
.gaming-laptops-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.gaming-cooling-section,
.gaming-laptops-section {
    background: var(--bg-card);
}

.gpu-section-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.gpu-section-grid.reverse {
    grid-template-columns: 1fr 400px;
}

.gpu-section-grid.reverse .gpu-section-image {
    order: 2;
}

.gpu-section-grid.reverse .gpu-section-content {
    order: 1;
}

.gpu-section-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.gpu-section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gpu-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.gpu-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.gpu-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.gpu-brand-card {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.gpu-brand-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 10px;
}

.gpu-models-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gpu-models-list span {
    font-size: 13px;
    color: var(--text-light);
}

.service-item-compact.gaming-service:hover {
    border-color: #ff6b00;
    background: rgba(255, 107, 0, 0.05);
}

.service-item-compact.gaming-service i {
    color: #ff6b00;
}

/* Gaming Why Us */
.gaming-why-us {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1a2e 100%);
    padding: 60px 0;
}

.why-us-item.gaming-why:hover {
    border-color: #ff6b00;
}

.why-us-icon.gaming-icon {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
}

/* Gaming Form Section */
.gaming-form .section-header .section-label-gaming {
    margin-bottom: 16px;
}

/* Gaming Page - Mobile Responsive */
@media (max-width: 1024px) {
    .gaming-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gpu-section-grid,
    .gpu-section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gpu-section-grid.reverse .gpu-section-image,
    .gpu-section-grid.reverse .gpu-section-content {
        order: unset;
    }
}

@media (max-width: 768px) {
    .gaming-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .gaming-hero h1 {
        font-size: 36px;
    }

    .gaming-hero p {
        font-size: 16px;
    }

    .gaming-hero-stats {
        gap: 24px;
    }

    .gaming-stat-item .stat-number {
        font-size: 26px;
    }

    .gaming-hero-buttons {
        flex-direction: column;
    }

    .gaming-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .gaming-nav-grid {
        gap: 12px;
    }

    .gaming-nav-img {
        height: 100px;
    }

    .gaming-nav-info {
        padding: 12px;
    }

    .gaming-nav-info i {
        font-size: 20px;
    }

    .gaming-nav-info span {
        font-size: 14px;
    }

    .gaming-issues-grid {
        grid-template-columns: 1fr;
    }

    .gaming-issues-section,
    .gaming-gpu-section,
    .gaming-cooling-section,
    .gaming-builds-section,
    .gaming-laptops-section {
        padding: 60px 0;
    }

    .gpu-section-content h2 {
        font-size: 28px;
    }

    .gpu-section-image img {
        height: 220px;
    }

    .gpu-brands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gaming-hero {
        padding: 110px 0 50px;
    }

    .gaming-hero h1 {
        font-size: 28px;
    }

    .hero-badge-gaming {
        padding: 8px 14px;
    }

    .hero-badge-gaming span {
        font-size: 12px;
    }

    .gaming-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .gaming-stat-item {
        flex: 0 0 calc(50% - 8px);
    }

    .gaming-nav-grid {
        gap: 10px;
    }

    .gaming-nav-img {
        height: 80px;
    }

    .gaming-nav-info {
        padding: 10px;
    }

    .gaming-nav-info i {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .gaming-nav-info span {
        font-size: 13px;
    }

    .gaming-nav-info small {
        font-size: 10px;
    }

    .gaming-issue-card {
        padding: 20px;
    }

    .gaming-issue-icon {
        width: 48px;
        height: 48px;
    }

    .gaming-issue-icon i {
        font-size: 20px;
    }

    .gpu-section-image img {
        height: 180px;
    }

    .gpu-badge {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* =============================================
   ANDROID REPAIR PAGE STYLES
   ============================================= */

.highlight-android {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label-android {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.btn-android {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #0a0a0a;
    font-weight: 700;
    border: none;
}

.btn-android:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ff6b00 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.android-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a2a1a 50%, #0f0f1a 100%);
}

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

.android-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.5);
}

.android-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.android-hero .container { position: relative; z-index: 2; }
.android-hero-content { max-width: 650px; }

.hero-badge-android {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-android i { font-size: 18px; color: #ff6b00; }
.hero-badge-android span { font-size: 14px; font-weight: 600; color: #ff6b00; text-transform: uppercase; letter-spacing: 1px; }

.android-hero h1 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.android-hero p { font-size: 18px; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; }
.android-hero-stats { display: flex; gap: 40px; margin-bottom: 32px; }
.android-stat-item { display: flex; flex-direction: column; }
.android-stat-item .stat-number { font-size: 32px; font-weight: 700; color: #ff6b00; }
.android-stat-item .stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.android-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.android-brands-nav { background: var(--bg-dark); padding: 30px 0; border-bottom: 1px solid var(--border); }
.android-brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.android-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.android-brand-card:hover { border-color: #ff6b00; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255, 107, 0, 0.15); }
.android-brand-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.android-brand-card small { font-size: 12px; color: var(--text-light); }

.android-brand-section { padding: 80px 0; background: var(--bg-dark); }
.android-brand-section.alt-bg { background: var(--bg-card); }
.android-section-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: center; }
.android-section-grid.reverse { grid-template-columns: 1fr 380px; }
.android-section-grid.reverse .android-section-image { order: 2; }
.android-section-grid.reverse .android-section-content { order: 1; }
.android-section-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3); }
.android-section-image img { width: 100%; height: 280px; object-fit: cover; }
.android-badge { position: absolute; top: 20px; left: 20px; background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%); color: #0a0a0a; font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 50px; box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4); }
.android-models { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.service-item-compact.android-service:hover { border-color: #ff6b00; background: rgba(255, 107, 0, 0.05); }
.service-item-compact.android-service i { color: #ff6b00; }
.android-why-us { background: linear-gradient(135deg, #0a0a0a 0%, #0a2a1a 100%); padding: 60px 0; }
.why-us-item.android-why:hover { border-color: #ff6b00; }
.why-us-icon.android-icon { background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%); }

/* =============================================
   CONSOLE REPAIR PAGE STYLES
   ============================================= */

.highlight-console {
    background: linear-gradient(135deg, #ff6b00 0%, #00439c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label-console {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.btn-console {
    background: linear-gradient(135deg, #ff6b00 0%, #00439c 100%);
    color: #fff;
    font-weight: 700;
    border: none;
}

.btn-console:hover {
    background: linear-gradient(135deg, #00439c 0%, #ff6b00 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.console-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1a2e 50%, #0f0f1a 100%);
}

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

.console-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.5);
}

.console-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.console-hero .container { position: relative; z-index: 2; }
.console-hero-content { max-width: 650px; }

.hero-badge-console {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-console i { font-size: 18px; color: #ff6b00; }
.hero-badge-console span { font-size: 14px; font-weight: 600; color: #ff6b00; text-transform: uppercase; letter-spacing: 1px; }

.console-hero h1 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.console-hero p { font-size: 18px; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; }
.console-hero-stats { display: flex; gap: 40px; margin-bottom: 32px; }
.console-stat-item { display: flex; flex-direction: column; }
.console-stat-item .stat-number { font-size: 32px; font-weight: 700; color: #ff6b00; }
.console-stat-item .stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.console-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.console-nav-section { background: var(--bg-dark); padding: 40px 0; border-bottom: 1px solid var(--border); }
.console-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.console-nav-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: var(--bg-card);
    transition: all 0.3s ease;
    text-decoration: none;
}
.console-nav-card:hover { transform: translateY(-4px); border-color: #ff6b00; box-shadow: 0 12px 32px rgba(255, 107, 0, 0.2); }
.console-nav-img { height: 140px; overflow: hidden; }
.console-nav-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; filter: brightness(0.6); }
.console-nav-card:hover .console-nav-img img { transform: scale(1.1); filter: brightness(0.8); }
.console-nav-info { padding: 16px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.console-nav-info i { font-size: 28px; color: #ff6b00; margin-bottom: 4px; }
.console-nav-info span { font-size: 18px; font-weight: 600; color: #fff; }
.console-nav-info small { font-size: 12px; color: var(--text-light); }

.console-issues-section { padding: 80px 0; background: var(--bg-dark); }
.console-issues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.console-issue-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}
.console-issue-card:hover { border-color: #ff6b00; transform: translateY(-4px); }
.console-issue-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(0, 67, 156, 0.15) 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.console-issue-icon i { font-size: 24px; color: #ff6b00; }
.console-issue-card h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.console-issue-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.console-issue-tag { display: inline-block; background: rgba(255, 107, 0, 0.1); color: #ff6b00; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 20px; }

.console-brand-section { padding: 80px 0; background: var(--bg-dark); }
.console-brand-section.alt-bg { background: var(--bg-card); }
.console-section-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: center; }
.console-section-grid.reverse { grid-template-columns: 1fr 380px; }
.console-section-grid.reverse .console-section-image { order: 2; }
.console-section-grid.reverse .console-section-content { order: 1; }
.console-section-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3); }
.console-section-image img { width: 100%; height: 280px; object-fit: cover; }
.console-badge { position: absolute; top: 20px; left: 20px; background: linear-gradient(135deg, #ff6b00 0%, #00439c 100%); color: #fff; font-weight: 700; font-size: 16px; padding: 10px 20px; border-radius: 50px; box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4); }
.console-badge.playstation { background: linear-gradient(135deg, #003791 0%, #ff6b00 100%); }
.console-badge.xbox { background: linear-gradient(135deg, #ff6b00 0%, #0e6b0e 100%); }
.console-badge.nintendo { background: linear-gradient(135deg, #ff6b00 0%, #c00012 100%); }
.console-models { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.service-item-compact.console-service:hover { border-color: #ff6b00; background: rgba(255, 107, 0, 0.05); }
.service-item-compact.console-service i { color: #ff6b00; }
.console-why-us { background: linear-gradient(135deg, #0a0a0a 0%, #0a1a2e 100%); padding: 60px 0; }
.why-us-item.console-why:hover { border-color: #ff6b00; }
.why-us-icon.console-icon { background: linear-gradient(135deg, #ff6b00 0%, #00439c 100%); }

/* =============================================
   VIRUS/SECURITY PAGE STYLES
   ============================================= */

.highlight-security {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label-security {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.btn-security {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #fff;
    font-weight: 700;
    border: none;
}

.btn-security:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ff6b00 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.btn-outline-security {
    background: transparent;
    border: 2px solid #ff6b00;
    color: #ff6b00;
    font-weight: 600;
}

.btn-outline-security:hover {
    background: rgba(255, 107, 0, 0.1);
}

.security-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0f0f1a 100%);
}

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

.security-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.5);
}

.security-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.security-hero .container { position: relative; z-index: 2; }
.security-hero-content { max-width: 650px; }

.hero-badge-security {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-security i { font-size: 18px; color: #ff6b00; }
.hero-badge-security span { font-size: 14px; font-weight: 600; color: #ff6b00; text-transform: uppercase; letter-spacing: 1px; }

.security-hero h1 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.security-hero p { font-size: 18px; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; }
.security-hero-stats { display: flex; gap: 40px; margin-bottom: 32px; }
.security-stat-item { display: flex; flex-direction: column; }
.security-stat-item .stat-number { font-size: 32px; font-weight: 700; color: #ff6b00; }
.security-stat-item .stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.security-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.security-threats-section { padding: 80px 0; background: var(--bg-dark); }
.security-threats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.security-threat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}
.security-threat-card:hover { border-color: #ff6b00; transform: translateY(-4px); }
.threat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(192, 57, 43, 0.15) 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.threat-icon i { font-size: 24px; color: #ff6b00; }
.security-threat-card h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.security-threat-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

.security-services-section, .security-prevention-section { padding: 80px 0; background: var(--bg-dark); }
.security-prevention-section { background: var(--bg-card); }
.security-section-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: center; }
.security-section-grid.reverse { grid-template-columns: 1fr 380px; }
.security-section-grid.reverse .security-section-image { order: 2; }
.security-section-grid.reverse .security-section-content { order: 1; }
.security-section-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3); }
.security-section-image img { width: 100%; height: 280px; object-fit: cover; }
.security-badge { position: absolute; top: 20px; left: 20px; background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%); color: #fff; font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 50px; box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4); }
.security-description { font-size: 15px; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
.service-item-compact.security-service:hover { border-color: #ff6b00; background: rgba(255, 107, 0, 0.05); }
.service-item-compact.security-service i { color: #ff6b00; }

.security-pricing-section { padding: 80px 0; background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%); }
.pricing-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-8px); border-color: #ff6b00; }
.pricing-card.featured { border-color: #ff6b00; box-shadow: 0 16px 48px rgba(255, 107, 0, 0.2); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 20px; }
.pricing-header { text-align: center; margin-bottom: 24px; }
.pricing-header h3 { font-size: 22px; color: #fff; margin-bottom: 8px; }
.pricing-amount { font-size: 48px; font-weight: 800; color: #ff6b00; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px 0; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-body); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: #ff6b00; }

.security-why-us { background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%); padding: 60px 0; }
.why-us-item.security-why:hover { border-color: #ff6b00; }
.why-us-icon.security-icon { background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%); }

/* Mobile Responsive for New Pages */
@media (max-width: 1024px) {
    .android-brands-grid { grid-template-columns: repeat(2, 1fr); }
    .android-section-grid, .android-section-grid.reverse,
    .console-section-grid, .console-section-grid.reverse,
    .security-section-grid, .security-section-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
    .android-section-grid.reverse .android-section-image,
    .android-section-grid.reverse .android-section-content,
    .console-section-grid.reverse .console-section-image,
    .console-section-grid.reverse .console-section-content,
    .security-section-grid.reverse .security-section-image,
    .security-section-grid.reverse .security-section-content { order: unset; }
    .console-issues-grid, .security-threats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .android-hero, .console-hero, .security-hero { padding: 120px 0 60px; min-height: auto; }
    .android-hero h1, .console-hero h1, .security-hero h1 { font-size: 36px; }
    .android-hero p, .console-hero p, .security-hero p { font-size: 16px; }
    .android-hero-stats, .console-hero-stats, .security-hero-stats { gap: 24px; }
    .android-hero-buttons, .console-hero-buttons, .security-hero-buttons { flex-direction: column; }
    .android-hero-buttons .btn, .console-hero-buttons .btn, .security-hero-buttons .btn { width: 100%; justify-content: center; }
    .android-brands-grid { gap: 12px; }
    .android-brand-card { padding: 16px 12px; }
    .android-brand-name { font-size: 16px; }
    .console-nav-grid { grid-template-columns: 1fr; }
    .console-issues-grid, .security-threats-grid { grid-template-columns: 1fr; }
    .android-brand-section, .console-brand-section, .console-issues-section,
    .security-services-section, .security-prevention-section, .security-threats-section { padding: 60px 0; }
    .android-section-image img, .console-section-image img, .security-section-image img { height: 220px; }
}

@media (max-width: 480px) {
    .android-hero, .console-hero, .security-hero { padding: 110px 0 50px; }
    .android-hero h1, .console-hero h1, .security-hero h1 { font-size: 28px; }
    .hero-badge-android, .hero-badge-console, .hero-badge-security { padding: 8px 14px; }
    .hero-badge-android span, .hero-badge-console span, .hero-badge-security span { font-size: 12px; }
    .android-hero-stats, .console-hero-stats, .security-hero-stats { flex-wrap: wrap; gap: 16px; }
    .android-stat-item .stat-number, .console-stat-item .stat-number, .security-stat-item .stat-number { font-size: 26px; }
    .android-section-image img, .console-section-image img, .security-section-image img { height: 180px; }
    .console-issue-card, .security-threat-card { padding: 20px; }
    .pricing-amount { font-size: 36px; }
}

/* =============================================
   Services Page - New Design
   ============================================= */

/* Services Hero */
.services-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero-content {
    max-width: 700px;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: #ff6b00;
    font-size: 14px;
    font-weight: 500;
}

.services-hero-badge i {
    font-size: 16px;
}

.services-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.services-hero p {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 32px;
}

.services-hero-stats {
    display: flex;
    gap: 48px;
}

.services-hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-hero-stats .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b00;
}

.services-hero-stats .stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Main Section */
.services-main {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.services-main .section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.services-main .section-header p {
    font-size: 18px;
    color: #888;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service Image Card */
.service-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    text-decoration: none;
}

.service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-image-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.service-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.service-card-icon i {
    font-size: 24px;
    color: #fff;
}

/* Icon color variants */
.service-card-icon.icon-android {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.service-card-icon.icon-gaming {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.service-card-icon.icon-console {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.service-card-icon.icon-data {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.service-card-icon.icon-security {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.service-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.service-card-content p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-highlights {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #b0b0b0;
    padding: 6px 0;
}

.service-highlights li i {
    color: #ff6b00;
    font-size: 12px;
}

.service-card-android .service-highlights li i {
    color: #ff6b00;
}

.service-card-gaming .service-highlights li i {
    color: #ff6b00;
}

.service-card-console .service-highlights li i {
    color: #ff6b00;
}

.service-card-data .service-highlights li i {
    color: #ff6b00;
}

.service-card-security .service-highlights li i {
    color: #ff6b00;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b00;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-card-link i {
    transition: transform 0.3s ease;
}

.service-image-card:hover .service-card-link {
    gap: 12px;
}

.service-image-card:hover .service-card-link i {
    transform: translateX(4px);
}

.service-card-android:hover .service-card-link {
    color: #ff6b00;
}

.service-card-gaming:hover .service-card-link {
    color: #ff6b00;
}

.service-card-console:hover .service-card-link {
    color: #ff6b00;
}

.service-card-data:hover .service-card-link {
    color: #ff6b00;
}

.service-card-security:hover .service-card-link {
    color: #ff6b00;
}

/* Why Choose Us Section */
.services-why-choose {
    padding: 80px 0;
    background: #0f0f0f;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-choose-item {
    text-align: center;
    padding: 32px 24px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: #ff6b00;
}

.why-choose-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.why-choose-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .services-hero-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .services-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .services-hero-stats .stat-number {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image {
        height: 180px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-main,
    .services-why-choose {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 110px 0 50px;
    }

    .services-hero h1 {
        font-size: 28px;
    }

    .services-hero-badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .services-hero-stats .stat-number {
        font-size: 24px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
        margin-top: -40px;
    }

    .service-card-icon i {
        font-size: 20px;
    }

    .service-card-content h3 {
        font-size: 18px;
    }

    .why-choose-item {
        padding: 24px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 24px;
    }
}

/* =============================================
   Data Recovery Page Styles
   Theme: Orange (#ff6b00)
   ============================================= */

/* Data Recovery Color Theme */
.highlight-data {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-data {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-data:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-outline-data {
    background: transparent;
    border: 2px solid #ff6b00;
    color: #ff6b00;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-data:hover {
    background: #ff6b00;
    color: #fff;
}

/* Data Hero Section */
.data-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.data-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.data-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.data-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 107, 0, 0.2) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.data-hero .container {
    position: relative;
    z-index: 1;
}

.data-hero-content {
    max-width: 700px;
}

.hero-badge-data {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: #ff6b00;
    font-size: 14px;
    font-weight: 500;
}

.hero-badge-data i {
    font-size: 16px;
}

.data-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.data-hero p {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 32px;
}

.data-hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.data-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.data-stat-item .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b00;
}

.data-stat-item .stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Data Trust Section */
.data-trust-section {
    background: #0f0f0f;
    padding: 32px 0;
    border-bottom: 1px solid #1a1a1a;
}

.data-trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.data-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon-data {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-data i {
    color: #ff6b00;
    font-size: 16px;
}

.trust-text {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
}

/* Data Devices Navigation */
.data-devices-nav {
    padding: 80px 0;
    background: #0a0a0a;
}

.data-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.data-nav-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.4s ease;
    text-decoration: none;
}

.data-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.data-nav-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

.data-nav-card:hover .data-nav-image img {
    transform: scale(1.1);
}

.data-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.data-nav-content {
    padding: 20px;
    text-align: center;
}

.data-nav-content i {
    font-size: 28px;
    color: #ff6b00;
    margin-bottom: 12px;
}

.data-nav-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.data-nav-content span {
    font-size: 13px;
    color: #888;
}

/* Data Device Sections */
.data-device-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.data-section-alt {
    background: #0f0f0f;
}

.data-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.data-section-grid.reverse {
    direction: rtl;
}

.data-section-grid.reverse > * {
    direction: ltr;
}

.data-section-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.data-section-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.data-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    color: #ff6b00;
    font-size: 13px;
    font-weight: 500;
}

.data-section-content h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 16px;
    color: #fff;
}

.data-section-content p {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 24px;
}

.data-features-list {
    margin-bottom: 28px;
}

.data-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
}

.data-feature:last-child {
    border-bottom: none;
}

.data-feature i {
    color: #ff6b00;
    font-size: 14px;
}

.data-feature span {
    font-size: 15px;
    color: #b0b0b0;
}

/* Data Scenarios Section */
.data-scenarios-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.data-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.data-scenario-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.data-scenario-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-4px);
}

.scenario-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scenario-icon i {
    font-size: 24px;
    color: #ff6b00;
}

.data-scenario-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.data-scenario-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Data Process Section */
.data-process-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.data-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.data-process-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 0 20px;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.process-step-content p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.data-process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    margin-top: 30px;
}

/* Data Notice Section */
.data-notice-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.data-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 16px;
    padding: 32px;
}

.notice-icon-data {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon-data i {
    font-size: 24px;
    color: #ff6b00;
}

.notice-content-data h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.notice-content-data p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Data Form Section */
.data-form-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.data-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.data-recovery-form {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #2a2a2a;
}

.data-recovery-form .form-group input:focus,
.data-recovery-form .form-group select:focus,
.data-recovery-form .form-group textarea:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* CTA Data Theme */
.cta-data {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(142, 68, 173, 0.1) 100%);
}

.cta-data .highlight-data {
    color: #ff6b00;
    background: none;
    -webkit-text-fill-color: #ff6b00;
}

/* Data Recovery Page Responsive */
@media (max-width: 1024px) {
    .data-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-section-grid {
        gap: 40px;
    }
    
    .data-scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-hero-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .data-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .data-hero h1 {
        font-size: 36px;
    }
    
    .data-hero p {
        font-size: 16px;
    }
    
    .data-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .data-hero-buttons {
        flex-direction: column;
    }
    
    .data-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .data-trust-grid {
        gap: 24px;
    }
    
    .data-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .data-section-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .data-section-grid.reverse {
        direction: ltr;
    }
    
    .data-section-image img {
        height: 250px;
    }
    
    .data-scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .data-process-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .data-process-step {
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .data-process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .data-notice-box {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon-data {
        margin: 0 auto;
    }
    
    .data-recovery-form {
        padding: 24px;
    }
    
    .data-device-section,
    .data-scenarios-section,
    .data-process-section,
    .data-devices-nav {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .data-hero {
        padding: 110px 0 50px;
    }
    
    .data-hero h1 {
        font-size: 28px;
    }
    
    .hero-badge-data {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .data-stat-item .stat-number {
        font-size: 26px;
    }
    
    .data-nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .data-nav-image {
        height: 100px;
    }
    
    .data-nav-content {
        padding: 12px;
    }
    
    .data-nav-content i {
        font-size: 20px;
    }
    
    .data-nav-content h3 {
        font-size: 14px;
    }
    
    .data-section-image img {
        height: 200px;
    }
    
    .data-scenario-card {
        padding: 24px;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* =============================================
   MOBILE BOTTOM SHEET MENU
   ============================================= */

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        flex-direction: column;
    }
}

/* Mobile Search Bar */
.mobile-nav-search {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: #111;
    border-bottom: 1px solid #2a2a2a;
    gap: 12px;
}

.mobile-nav-search i {
    color: #ff6b00;
    font-size: 16px;
}

.mobile-search-input {
    flex: 1;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-search-input::placeholder {
    color: #666;
}

.mobile-search-input:focus {
    outline: none;
    border-color: #ff6b00;
}

/* Mobile Nav Icons Row */
.mobile-nav-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-item i {
    font-size: 18px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: #ff6b00;
}

.mobile-nav-item.mobile-nav-call {
    color: #25d366;
}

/* Mobile Bottom Sheet */
.mobile-bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-bottom-sheet.active {
    visibility: visible;
    opacity: 1;
}

.bottom-sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.bottom-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-radius: 24px 24px 0 0;
    padding: 0 20px 30px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-bottom-sheet.active .bottom-sheet-content {
    transform: translateY(0);
}

.bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 20px;
}

.bottom-sheet-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.bottom-sheet-close {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.bottom-sheet-close:hover {
    background: #ff6b00;
}

.bottom-sheet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-bottom: 20px;
}

.bottom-sheet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: #242424;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bottom-sheet-item:hover,
.bottom-sheet-item:active {
    background: #2a2a2a;
    transform: scale(0.98);
}

.bottom-sheet-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-sheet-icon i {
    font-size: 22px;
    color: #ff6b00;
}

.bottom-sheet-item span {
    font-size: 12px;
    font-weight: 500;
    color: #b0b0b0;
}

/* =============================================
   FORM STYLES
   ============================================= */

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #b0b0b0;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 0;
    accent-color: #ff6b00;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Data Recovery Form Container */
.data-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.data-recovery-form {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #2a2a2a;
}

/* Form Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .data-recovery-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .data-recovery-form {
        padding: 20px;
        border-radius: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* =============================================
   GLOBAL SEARCH
   ============================================= */

/* Header search trigger - Desktop only */
.nav-content > .global-search-trigger,
.header .global-search-trigger,
button.global-search-trigger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 12px;
    padding: 0;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
}

.global-search-trigger:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Hide header search trigger on mobile - show only in bottom nav */
@media (max-width: 768px) {
    .header .global-search-trigger,
    .main-nav .global-search-trigger,
    .nav-content > .global-search-trigger,
    .nav-content button.global-search-trigger {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Search Modal Overlay */
.global-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.global-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.global-search-container {
    width: 100%;
    max-width: 700px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.global-search-overlay.active .global-search-container {
    transform: translateY(0);
}

.global-search-input-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.global-search-input-wrapper i.fa-search {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
}

.global-search-input {
    width: 100%;
    padding: 20px 60px 20px 60px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 16px;
    color: #fff;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}

.global-search-input:focus {
    border-color: var(--primary);
}

.global-search-input::placeholder {
    color: #666;
}

.global-search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.global-search-close:hover {
    color: #fff;
}

/* Search Results */
.global-search-results {
    background: #1a1a1a;
    border-radius: 16px;
    max-height: 60vh;
    overflow-y: auto;
    border: 1px solid #2a2a2a;
}

.search-results-section {
    padding: 16px 0;
    border-bottom: 1px solid #2a2a2a;
}

.search-results-section:last-child {
    border-bottom: none;
}

.search-results-section-title {
    padding: 0 20px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}

.search-result-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.search-result-link:hover {
    background: rgba(255,107,0,0.1);
}

.search-result-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,0,0.1);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.search-result-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.search-result-badge {
    font-size: 11px;
    padding: 3px 8px;
    background: rgba(255,107,0,0.15);
    color: var(--primary);
    border-radius: 4px;
}

.search-result-price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

/* Search Empty/Loading States */
.global-search-empty,
.global-search-loading {
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

.global-search-empty i,
.global-search-loading i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #444;
}

.global-search-empty h4 {
    color: #888;
    margin-bottom: 8px;
}

/* Search Keyboard Hint */
.global-search-hint {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px;
    color: #666;
    font-size: 13px;
}

.global-search-hint kbd {
    background: #2a2a2a;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: inherit;
    margin: 0 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .global-search-overlay {
        padding: 60px 16px 100px;
        align-items: flex-start;
    }

    .global-search-container {
        max-width: 100%;
    }

    .global-search-input {
        font-size: 16px;
        padding: 16px 50px 16px 50px;
        border-radius: 12px;
    }

    .global-search-input-wrapper i.fa-search {
        left: 18px;
        font-size: 18px;
    }

    .global-search-close {
        right: 16px;
        font-size: 28px;
    }

    .global-search-results {
        max-height: calc(100vh - 200px);
        border-radius: 12px;
    }

    .search-result-link {
        padding: 12px 16px;
    }

    .search-result-icon {
        width: 38px;
        height: 38px;
    }

    .global-search-hint {
        display: none;
    }

    .global-search-empty,
    .global-search-loading {
        padding: 40px 20px;
    }

    .global-search-empty i,
    .global-search-loading i {
        font-size: 36px;
    }
}

/* =============================================
   MOBILE OVERFLOW FIX
   Prevents horizontal scrolling/shaking on mobile
   ============================================= */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
    
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    section,
    header,
    footer,
    nav,
    main,
    .hero,
    .hero-new,
    .breaking-news {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent any element from causing overflow */
    * {
        max-width: 100vw;
    }
}
