/* =============================================
   TECHNO ZONE – Main Stylesheet
   Light, Modern Theme | Poppins + DM Sans
   Brand: Navy #1a3896 → Cyan #2eb5e8
   ============================================= */

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

:root {
    --primary: #1a3896;
    --primary-dark: #112770;
    --primary-light: #eef3ff;
    --cyan: #2eb5e8;
    --cyan-light: #7dd8f5;
    --gradient: linear-gradient(135deg, #1a3896 0%, #2eb5e8 100%);
    --gradient-rev: linear-gradient(135deg, #2eb5e8 0%, #1a3896 100%);
    --whatsapp: #25D366;
    --whatsapp-dark: #1ebe5d;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f6f9ff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 90px 0; }
.mt-1 { margin-top: 12px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all .25s ease;
    white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 16px; }

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}
.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
}
.btn-primary:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,56,150,.3);
    color: #fff;
}

.pulse { animation: pulse 2.5s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
    background: var(--gradient);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left span, .topbar-right a {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,.9);
    transition: color .2s;
}
.topbar-right a:hover { color: #fff; }
.topbar i { font-size: 11px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
}
.logo-accent { color: var(--primary); }

/* --- Nav Menu --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-link .fa-chevron-down { font-size: 11px; transition: transform .25s; }

.nav-cta { margin-left: 8px; }

/* --- Dropdown --- */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all .25s ease;
    z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.nav-dropdown:hover .fa-chevron-down,
.nav-dropdown.open .fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all .2s;
}
.dropdown-menu li a i {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all .2s;
}
.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.dropdown-menu li a:hover i {
    background: var(--gradient);
    color: #fff;
}
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, #eef3ff 0%, #f6faff 50%, #e8f7ff 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .12;
}
.shape-1 {
    width: 520px; height: 520px;
    background: var(--primary);
    top: -120px; right: -80px;
}
.shape-2 {
    width: 380px; height: 380px;
    background: var(--cyan);
    bottom: -100px; left: 5%;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--cyan);
    top: 30%; right: 35%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.hero-badge i { color: #f59e0b; }

.hero-content h1 {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.15;
}
.text-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: fit-content;
}
.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Image */
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.hero-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: block;
}
.hero-photo-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    text-align: center;
    padding: 24px;
}
.hero-photo-placeholder i { font-size: 52px; color: rgba(255,255,255,.35); }
.hero-photo-placeholder code {
    background: rgba(255,255,255,.15);
    padding: 6px 14px;
    border-radius: 8px;
    color: rgba(255,255,255,.85);
    font-family: monospace;
    font-size: 13px;
}

.repair-badge {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow);
    white-space: nowrap;
}
.repair-badge i { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.repair-badge-1 { top: -16px; left: -20px; }
.repair-badge-2 { bottom: 60px; right: -24px; }
.repair-badge-3 { bottom: -16px; left: 20px; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--gradient);
    padding: 20px 0;
}
.trust-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 500;
}
.trust-item i { font-size: 18px; color: #fff; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* =============================================
   SERVICES  (6-col grid: 3 top, 2 centered bottom)
   ============================================= */
.services { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.service-card { grid-column: span 2; }
/* Center the last 2 cards */
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient);
    opacity: 0;
    transition: opacity .35s;
    z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,56,150,.18);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-list li,
.service-card:hover .service-list li i { color: rgba(255,255,255,.9) !important; }
.service-card:hover .service-icon { background: rgba(255,255,255,.15) !important; }
.service-card:hover .service-icon i { color: #fff !important; }
.service-card:hover .service-list li i { color: rgba(255,255,255,.8) !important; }
.service-card:hover .service-cta {
    background: #fff;
    color: var(--whatsapp-dark);
}
.service-card:hover .service-cta i { color: var(--whatsapp); }

/* Popular badge */
.service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}
.service-card:hover .service-badge { background: rgba(255,255,255,.25); }

/* Icon */
.service-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all .3s;
    position: relative;
    flex-shrink: 0;
}
/* Each icon gets the gradient by default, overridden by color classes */
.service-icon-mobile  { background: linear-gradient(135deg, #1a3896, #2eb5e8); }
.service-icon-laptop  { background: linear-gradient(135deg, #2eb5e8, #1a3896); }
.service-icon-computer { background: linear-gradient(135deg, #0f2060, #2eb5e8); }
.service-icon-gaming  { background: linear-gradient(135deg, #1a3896, #5bc8f5); }
.service-icon-data    { background: linear-gradient(135deg, #112770, #2eb5e8); }
.service-icon i { color: #fff; }

.service-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--text); }
.service-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; line-height: 1.65; }

.service-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
    display: flex; align-items: center; gap: 9px;
    font-size: 14px; color: var(--text-muted);
}
.service-list li i { color: var(--cyan); font-size: 12px; flex-shrink: 0; }

.service-cta { font-size: 14px; padding: 10px 20px; transition: all .25s; }

/* =============================================
   HOW IT WORKS (grid, no connector lines)
   ============================================= */
.how-it-works { background: var(--bg-alt); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 1.5px solid var(--border);
    transition: all .3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50px;
    padding: 3px 12px;
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.step-icon {
    width: 68px; height: 68px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(26,56,150,.25);
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 14px; color: var(--text-muted); }

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

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us { background: #fff; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all .3s;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: #fff;
    border-color: var(--primary-light);
}
.why-icon {
    width: 56px; height: 56px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(26,56,150,.2);
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 14px; color: var(--text-muted); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--bg-alt); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.testimonial-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars i { color: #f59e0b; font-size: 14px; }

.testimonial-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-family: 'Poppins', sans-serif; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

.rating-summary {
    text-align: center;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
}
.score-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.rating-score { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.rating-score .stars { gap: 4px; }
.rating-score .stars i { font-size: 20px; }
.rating-score span { color: var(--text-muted); font-size: 14px; }

/* =============================================
   FAQ
   ============================================= */
.faq { background: #fff; }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}
.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--cyan); }

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: background .2s;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary); }

.faq-icon { font-size: 14px; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

.faq-cta { text-align: center; }
.faq-cta p { color: var(--text-muted); margin-bottom: 14px; font-size: 16px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: var(--gradient);
    padding: 70px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(26px, 4vw, 38px); color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.8); font-size: 17px; }
.cta-banner .btn-whatsapp {
    background: #fff;
    color: var(--whatsapp-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.cta-banner .btn-whatsapp:hover {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 12px 36px rgba(37,211,102,.4);
}
.cta-banner .btn-whatsapp i { color: var(--whatsapp); }
.cta-banner .btn-whatsapp:hover i { color: #fff; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0c1a4a; color: rgba(255,255,255,.7); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 64px 24px 48px;
}

.footer .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer .logo-text { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,.7);
    transition: all .2s;
}
.footer-social a:hover { background: var(--whatsapp); color: #fff; transform: translateY(-2px); }

.footer-links h4, .footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links ul li a:hover { color: var(--cyan-light); }

.footer-contact ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact ul li i { color: var(--cyan); margin-top: 3px; flex-shrink: 0; }
.footer-contact ul li a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-contact ul li a:hover { color: var(--cyan-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px; height: 58px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    z-index: 999;
    transition: all .3s;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.floating-tooltip {
    position: absolute;
    right: 68px;
    background: #fff;
    color: var(--text);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #fff;
}
.floating-whatsapp:hover .floating-tooltip { opacity: 1; }

/* =============================================
   SERVICE PAGE STYLES
   ============================================= */
.service-hero {
    background: var(--gradient);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.service-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.service-hero .section-badge {
    background: rgba(255,255,255,.2);
    color: #fff;
}
.service-hero h1 { font-size: clamp(32px, 5vw, 52px); color: #fff; margin-bottom: 18px; }
.service-hero p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 620px; }

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    transition: all .2s;
}
.feature-item:hover { border-color: var(--primary-light); background: #fff; box-shadow: var(--shadow-sm); }
.feature-item-icon {
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.feature-item-text strong { display: block; font-family: 'Poppins', sans-serif; font-size: 15px; margin-bottom: 3px; }
.feature-item-text span { font-size: 13px; color: var(--text-muted); }

.brands-section { background: var(--bg-alt); }
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.brand-chip {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all .2s;
}
.brand-chip:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }

.related-services { background: var(--bg-alt); }
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.related-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all .3s;
}
.related-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.related-card i {
    font-size: 28px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}
.related-card span { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); }

/* =============================================
   AOS
   ============================================= */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { grid-column: span 1 !important; }
    .service-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

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

    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        display: none;
        gap: 4px;
    }
    .nav-menu.open { display: flex; }
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: all;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--bg-alt);
        border-radius: var(--radius);
        margin-top: 4px;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-link { width: 100%; padding: 10px 16px; }
    .nav-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; }

    .hero { padding: 60px 0 50px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }

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

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

    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }

    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .floating-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 24px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { justify-content: center; }
    .trust-bar-inner { gap: 14px; }
    .trust-item { font-size: 12px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}
