/* ============================================
   TV REPAIR SERVICE — MASTER STYLESHEET
   Colors: White, Blue (#1a56db), Yellow (#ffc107)
   Fonts: Outfit (headings), Inter (body)
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --blue-primary: #1a56db;
    --blue-dark: #0f3d91;
    --blue-darker: #0a2d6e;
    --blue-light: #3b82f6;
    --blue-lighter: #dbeafe;
    --blue-100: #eff6ff;
    --yellow-primary: #ffc107;
    --yellow-hover: #ffb300;
    --yellow-dark: #e6a800;
    --yellow-light: #fff3cd;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
    --shadow-md: 0 4px 14px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.2);
    --shadow-blue: 0 8px 30px rgba(26,86,219,.3);
    --shadow-yellow: 0 8px 30px rgba(255,193,7,.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
    --transition-slow: all .5s cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for floating bottom bar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: var(--blue-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--blue-dark);
}

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

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

/* ---- Section Styling ---- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--blue-100);
    color: var(--blue-primary);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-500);
    line-height: 1.7;
}

.highlight {
    color: var(--blue-primary);
    position: relative;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,.5);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-highlight {
    color: var(--blue-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.btn-nav-cta {
    background: var(--blue-primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
}

.btn-nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10,45,110,.85) 0%,
        rgba(26,86,219,.65) 50%,
        rgba(15,61,145,.75) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    color: var(--white);
    max-width: 700px;
}

.slide-badge {
    display: inline-block;
    background: rgba(255,193,7,.2);
    border: 1px solid rgba(255,193,7,.4);
    color: var(--yellow-primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    backdrop-filter: blur(10px);
    animation: fadeInUp .8s ease .2s both;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,.3);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
    transition-delay: .1s;
}

.slide-title .highlight {
    color: var(--yellow-primary);
}

.slide-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.9);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
    transition-delay: .2s;
}

.slide-btns {
    display: flex;
    gap: 16px;
    animation: fadeInUp .8s ease .8s both;
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--yellow-primary);
    color: var(--gray-900);
    border-color: var(--yellow-primary);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--yellow-primary);
    transform: scale(1.3);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--yellow-primary);
    color: var(--gray-900);
    border-color: var(--yellow-primary);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

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

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--blue-primary);
    padding: 20px 0;
    overflow: hidden;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
}

.trust-icon {
    font-size: 1.3rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--yellow-primary));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.service-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 14px;
    background: var(--blue-100);
    color: var(--blue-primary);
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10,45,110,.9) 0%,
        rgba(26,86,219,.8) 100%
    );
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.parallax-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.parallax-content .highlight {
    color: var(--yellow-primary);
}

.parallax-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

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

.why-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--blue-lighter);
}

.why-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-lighter);
    margin-bottom: 12px;
    line-height: 1;
}

.why-card:hover .why-number {
    color: var(--yellow-primary);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.why-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--blue-100);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    flex: 1;
    max-width: 300px;
    transition: var(--transition);
}

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

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--blue-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.step-card p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: var(--blue-primary);
}

.connector-arrow {
    color: var(--blue-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--yellow-primary);
    display: inline;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--yellow-primary);
    display: inline;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,.9);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-lighter);
}

.testimonial-stars {
    color: var(--yellow-primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .85rem;
}

.author-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: .9rem;
}

.author-location {
    font-size: .8rem;
    color: var(--gray-400);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.test-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-btn:hover {
    background: var(--blue-primary);
    color: var(--white);
    border-color: var(--blue-primary);
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-100) 100%);
}

.form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

/* Progress Bar */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

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

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.progress-step.active .step-circle {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.progress-step.completed .step-circle {
    background: var(--yellow-primary);
    color: var(--gray-900);
}

.step-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
}

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

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--gray-200);
    margin: 0 8px;
    margin-bottom: 24px;
    border-radius: 2px;
    overflow: hidden;
    max-width: 100px;
}

.progress-fill {
    height: 100%;
    background: var(--blue-primary);
    width: 0;
    transition: width .5s ease;
    border-radius: 2px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp .5s ease both;
}

.form-step.active {
    display: block;
}

.form-step-title {
    font-size: 1.3rem;
    margin-bottom: 28px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

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

.form-label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--blue-primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26,86,219,.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

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

.form-error {
    display: none;
    color: #ef4444;
    font-size: .8rem;
    margin-top: 6px;
    font-weight: 500;
}

.form-error.show {
    display: block;
    animation: fadeInUp .3s ease;
}

/* TV Type Grid */
.tv-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tv-type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
}

.tv-type-option:hover {
    border-color: var(--blue-light);
    background: var(--blue-100);
}

.tv-type-option.selected {
    border-color: var(--blue-primary);
    background: var(--blue-100);
    color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}

.tv-type-icon {
    font-size: 1.6rem;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.problem-option {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-50);
}

.problem-option:hover {
    border-color: var(--blue-light);
    background: var(--blue-100);
}

.problem-option.selected {
    border-color: var(--blue-primary);
    background: var(--blue-100);
    box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}

.problem-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.problem-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--gray-800);
}

.problem-desc {
    font-size: .78rem;
    color: var(--gray-500);
}

/* Time Slot Grid */
.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: .85rem;
    color: var(--gray-600);
    background: var(--gray-50);
}

.time-slot:hover {
    border-color: var(--blue-light);
    background: var(--blue-100);
}

.time-slot.selected {
    border-color: var(--blue-primary);
    background: var(--blue-100);
    color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}

.time-icon {
    font-size: 1.4rem;
}

.time-slot small {
    font-size: .72rem;
    font-weight: 400;
    color: var(--gray-400);
}

.time-slot.selected small {
    color: var(--blue-primary);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* Booking Summary */
.booking-summary {
    background: var(--blue-100);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--blue-lighter);
}

.booking-summary h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    color: var(--blue-dark);
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.summary-item {
    display: flex;
    gap: 8px;
    font-size: .88rem;
}

.summary-label {
    font-weight: 600;
    color: var(--gray-600);
}

.summary-value {
    color: var(--gray-800);
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--blue-primary);
}

.form-checkbox a {
    color: var(--blue-primary);
    font-weight: 500;
}

/* Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: successPulse 1s ease;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.form-success h3 {
    font-size: 1.6rem;
    color: var(--blue-primary);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.form-success p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.booking-id-display {
    background: var(--blue-100);
    border: 2px solid var(--blue-lighter);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px auto;
    max-width: 340px;
}

.booking-id-display span {
    display: block;
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.booking-id-display strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: var(--blue-primary);
    letter-spacing: 2px;
}

.success-note {
    background: var(--yellow-light);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    color: var(--gray-700);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--blue-lighter);
}

.faq-item.active {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-800);
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-item.active .faq-question {
    background: var(--blue-100);
    color: var(--blue-primary);
}

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: var(--transition);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.7);
    padding: 80px 0 0;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,.5);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow-primary);
    padding-left: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .88rem;
}

.contact-item a {
    color: rgba(255,255,255,.5);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.4);
    font-size: .82rem;
}

.footer-bottom-links a:hover {
    color: var(--yellow-primary);
}

/* ============================================
   FLOATING BOTTOM BAR
   ============================================ */
.floating-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    gap: 0;
    background: var(--gray-900);
    box-shadow: 0 -4px 30px rgba(0,0,0,.25);
}

.floating-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .3px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.call-bar-btn {
    background: #22c55e;
    color: var(--white);
    animation: barPulse 2.5s infinite;
}

.call-bar-btn:hover {
    background: #16a34a;
    color: var(--white);
}

.book-bar-btn {
    background: var(--blue-primary);
    color: var(--white);
}

.book-bar-btn:hover {
    background: var(--blue-dark);
}

@keyframes barPulse {
    0%, 100% { background: #22c55e; }
    50% { background: #16a34a; }
}

.floating-bar-icon {
    font-size: 1.3rem;
}

.floating-bar-label {
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ============================================
   BOOKING MODAL POPUP
   ============================================ */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
    opacity: 0;
    transition: opacity .35s ease;
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-modal-overlay.fade-in {
    opacity: 1;
}

.booking-modal {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px;
    box-shadow: 0 25px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
    transform: translateY(40px) scale(.96);
    transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .35s ease;
    opacity: 0;
}

.booking-modal-overlay.fade-in .booking-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.booking-modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
    transform: rotate(90deg);
}

.booking-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.booking-modal-header .section-tag {
    margin-bottom: 8px;
}

.booking-modal-header .section-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.booking-modal-header .section-desc {
    font-size: .9rem;
    color: var(--gray-500);
}

/* Custom scrollbar inside modal */
.booking-modal::-webkit-scrollbar {
    width: 6px;
}

.booking-modal::-webkit-scrollbar-track {
    background: transparent;
}

.booking-modal::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.booking-modal::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.services-grid .service-card:nth-child(1) { transition-delay: .1s; }
.services-grid .service-card:nth-child(2) { transition-delay: .2s; }
.services-grid .service-card:nth-child(3) { transition-delay: .3s; }
.services-grid .service-card:nth-child(4) { transition-delay: .4s; }
.services-grid .service-card:nth-child(5) { transition-delay: .5s; }
.services-grid .service-card:nth-child(6) { transition-delay: .6s; }

.why-us-grid .why-card:nth-child(1) { transition-delay: .1s; }
.why-us-grid .why-card:nth-child(2) { transition-delay: .2s; }
.why-us-grid .why-card:nth-child(3) { transition-delay: .3s; }
.why-us-grid .why-card:nth-child(4) { transition-delay: .4s; }
.why-us-grid .why-card:nth-child(5) { transition-delay: .5s; }
.why-us-grid .why-card:nth-child(6) { transition-delay: .6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .steps-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        min-width: 200px;
    }

    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
    }

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

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .btn-nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        min-height: 500px;
    }

    .slide-btns {
        flex-direction: column;
        gap: 12px;
    }

    .slide-btns .btn {
        width: 100%;
    }

    .trust-bar-inner {
        justify-content: center;
        gap: 12px;
    }

    .trust-item {
        font-size: .78rem;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

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

    .tv-type-grid {
        grid-template-columns: 1fr;
    }

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

    .time-slot-grid {
        grid-template-columns: 1fr;
    }

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

    .form-progress {
        flex-wrap: wrap;
        gap: 8px;
    }

    .progress-line {
        max-width: 50px;
    }

    .step-label {
        font-size: .7rem;
    }

    .testimonial-card {
        min-width: 100%;
    }

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

    .steps-container {
        flex-direction: column;
        gap: 16px;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

        /* stays full-width on mobile, just adjust text */

    .floating-bar-btn {
        padding: 14px 12px;
        font-size: .85rem;
    }

    .parallax-section {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .slider-controls {
        bottom: 20px;
    }

    /* Modal responsive adjustments */
    .booking-modal {
        padding: 28px 20px;
        max-height: 85vh;
        border-radius: var(--radius-lg);
    }

    .booking-modal-header .section-title {
        font-size: 1.3rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .tv-type-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .tv-type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .tv-type-option {
        padding: 14px 8px;
        font-size: .8rem;
    }

    .hero {
        min-height: 450px;
    }



    .stat-number {
        font-size: 2rem;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* Print */
@media print {
    .navbar,
    .floating-bottom-bar,
    .slider-controls,
    .booking-modal-overlay {
        display: none;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}

/* Ultra-wide Screens */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .slide-content {
        padding-top: 220px;
    }
}
