/* ============================================
   US GADGET REPAIR - MAIN STYLESHEET
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-900: #0a2540;
    --blue-800: #0f3460;
    --blue-700: #1556a0;
    --blue-600: #1a6dd4;
    --blue-500: #2185f0;
    --blue-400: #4da3ff;
    --blue-300: #7dc0ff;
    --blue-200: #b4daff;
    --blue-100: #e0efff;
    --blue-50:  #f0f7ff;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;

    --white: #ffffff;
    --accent: #ff6b35;
    --accent-light: #ff8f62;
    --success: #22c55e;
    --danger: #ef4444;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.07);
    --shadow-lg: 0 12px 36px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,.12);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: .3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-900);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.text-blue { color: var(--blue-600); }
.text-accent { color: var(--accent); }

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26,109,212,.35);
}
.btn-primary:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26,109,212,.45);
}

.btn-outline {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-600);
}
.btn-outline:hover {
    background: var(--blue-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--blue-700);
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255,107,53,.35);
}
.btn-accent:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,107,53,.45);
}


/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--blue-900);
    color: var(--blue-200);
    font-size: .82rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.top-bar-left i { margin-right: 4px; font-size: .75rem; }
.divider-dot { color: var(--blue-400); margin: 0 6px; }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.top-bar-right a { color: var(--blue-200); }
.top-bar-right a:hover { color: var(--white); }


/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    min-height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--gray-900);
}
.logo-icon {
    position: relative;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
}
.logo-wrench {
    position: absolute;
    bottom: -2px;
    right: -4px;
    font-size: .65rem;
    background: var(--accent);
    padding: 3px;
    border-radius: 50%;
    color: #fff;
}
.logo .highlight {
    color: var(--blue-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links li a {
    display: block;
    padding: 10px 18px;
    font-weight: 500;
    font-size: .92rem;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    position: relative;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: var(--blue-600);
    background: var(--blue-50);
}
.nav-cta {
    background: var(--blue-600) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 3px 12px rgba(26,109,212,.3);
}
.nav-cta:hover {
    background: var(--blue-700) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, #0d1f3c 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(33,133,240,.15), transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,.08), transparent 70%);
    border-radius: 50%;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 60px;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content h1 span {
    color: var(--blue-400);
}
.hero-content p {
    color: var(--blue-200);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.75;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat h3 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 800;
}
.hero-stat p {
    font-size: .82rem;
    color: var(--blue-300);
    margin-bottom: 0;
}

/* Hero visual side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-phone-wrap {
    position: relative;
    width: 300px;
    height: 400px;
}
.hero-phone {
    width: 220px;
    height: 380px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 32px;
    border: 3px solid #2a2a4a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
    margin: 0 auto;
}
.hero-phone-screen {
    position: absolute;
    top: 12px;
    left: 8px;
    right: 8px;
    bottom: 12px;
    background: linear-gradient(180deg, var(--blue-500), var(--blue-700));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}
.hero-phone-screen i {
    font-size: 3rem;
    color: rgba(255,255,255,.9);
}
.hero-phone-screen span {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .9rem;
}

/* Floating cards around phone */
.hero-float {
    position: absolute;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
    animation: floatBounce 3s ease-in-out infinite;
    white-space: nowrap;
}
.hero-float i {
    font-size: 1.1rem;
    color: var(--blue-300);
}
.hero-float:nth-child(2) { top: 20px; right: -40px; animation-delay: .4s; }
.hero-float:nth-child(3) { bottom: 80px; left: -60px; animation-delay: .8s; }
.hero-float:nth-child(4) { bottom: 20px; right: -20px; animation-delay: 1.2s; }

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Decorative dots pattern */
.hero-dots {
    position: absolute;
    top: 40px;
    left: -80px;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 12px;
    opacity: .15;
}
.hero-dots span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}


/* ============================================
   SERVICES GRID (Homepage)
   ============================================ */
.services-section {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
    transform: scaleX(0);
    transition: transform .3s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--blue-600);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--blue-600);
    color: var(--white);
    transform: scale(1.08);
}
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.service-card p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.65;
}
.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    font-size: .88rem;
    color: var(--blue-600);
}
.service-card .learn-more i {
    transition: transform .3s;
}
.service-card:hover .learn-more i {
    transform: translateX(4px);
}


/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.why-card {
    text-align: center;
    padding: 32px 20px;
}
.why-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
}
.why-card:nth-child(1) .icon-wrap { background: #ebf5ff; color: var(--blue-600); }
.why-card:nth-child(2) .icon-wrap { background: #fff3eb; color: var(--accent); }
.why-card:nth-child(3) .icon-wrap { background: #ecfdf5; color: var(--success); }
.why-card:nth-child(4) .icon-wrap { background: #fef2f2; color: var(--danger); }

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.why-card p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.6;
}


/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-section {
    background: var(--blue-50);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: var(--blue-200);
    z-index: 1;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--blue-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 18px;
    border: 4px solid var(--blue-100);
}
.process-step h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}
.process-step p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6;
}


/* ============================================
   REPAIR TYPES (Common Issues)
   ============================================ */
.repair-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.repair-type-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.repair-type-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-md);
}
.repair-type-card .rt-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.repair-type-card h4 {
    font-size: .95rem;
    margin-bottom: 4px;
}
.repair-type-card p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.55;
}


/* ============================================
   REPAIR SHOWCASE (Before / After style)
   ============================================ */
.repair-showcase {
    background: var(--white);
}
.repair-showcase.showcase-alt {
    background: var(--gray-50);
}
.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.showcase-row.reverse {
    direction: rtl;
}
.showcase-row.reverse > * {
    direction: ltr;
}

/* Scene */
.showcase-scene {
    background: linear-gradient(145deg, var(--blue-50), var(--blue-100));
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.showcase-alt .showcase-scene {
    background: linear-gradient(145deg, #fff, var(--blue-50));
}
.showcase-device {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}
.showcase-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26,109,212,.3);
    animation: pulseArrow 2s ease-in-out infinite;
}
@keyframes pulseArrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Device Bodies */
.device-body {
    position: relative;
}
.phone-body {
    width: 90px;
    height: 160px;
}
.tablet-body {
    width: 130px;
    height: 170px;
}
.laptop-body {
    width: 150px;
    height: 110px;
}
.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid #475569;
    overflow: hidden;
}
.phone-body .device-screen {
    border-radius: 18px;
}
.tablet-body .device-screen {
    border-radius: 14px;
}
.laptop-body .device-screen {
    border-radius: 10px 10px 0 0;
    height: calc(100% - 14px);
}
.laptop-base {
    width: 115%;
    height: 14px;
    background: linear-gradient(180deg, #64748b, #475569);
    border-radius: 0 0 6px 6px;
    margin: 0 auto;
    margin-left: -7.5%;
}
.device-screen i {
    font-size: 2.2rem;
    color: rgba(255,255,255,.25);
}
.tablet-body .device-screen i,
.laptop-body .device-screen i {
    font-size: 2.8rem;
}

/* Cracked state */
.device-screen.cracked {
    background: linear-gradient(180deg, #3b1a1a 0%, #4a2020 100%);
    border-color: #7f4444;
}
.device-screen.cracked i {
    color: rgba(255,255,255,.15);
}
.crack-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.crack-lines span {
    position: absolute;
    background: rgba(255,255,255,.2);
    transform-origin: center;
}
.crack-lines span:nth-child(1) {
    width: 2px;
    height: 100%;
    left: 35%;
    transform: rotate(12deg);
}
.crack-lines span:nth-child(2) {
    width: 2px;
    height: 80%;
    right: 30%;
    top: 10%;
    transform: rotate(-8deg);
}
.crack-lines span:nth-child(3) {
    width: 70%;
    height: 2px;
    top: 45%;
    left: 15%;
    transform: rotate(5deg);
}

/* Fixed state */
.device-body.fixed .device-screen {
    background: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-700) 100%);
    border-color: var(--blue-500);
    box-shadow: 0 0 20px rgba(33,133,240,.25);
}
.device-body.fixed .device-screen i {
    color: rgba(255,255,255,.6);
}
.fixed-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .7rem;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(34,197,94,.4);
}

/* Tools row */
.showcase-tools {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.showcase-tools i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--blue-600);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

/* Text side */
.showcase-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}
.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.sf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-700);
}
.sf-item i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}
@media (max-width: 768px) {
    .showcase-device {
        gap: 14px;
    }
    .phone-body { width: 70px; height: 130px; }
    .tablet-body { width: 100px; height: 140px; }
    .laptop-body { width: 120px; height: 90px; }
    .showcase-scene { padding: 32px 20px; }
}


/* ============================================
   BRANDS MARQUEE
   ============================================ */
.brands-section {
    background: var(--gray-50);
    overflow: hidden;
}
.brands-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}
.brands-track:hover {
    animation-play-state: paused;
}
.brand-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-400);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .3s ease;
    user-select: none;
}
.brand-item:hover {
    color: var(--blue-600);
}
.brand-item i {
    font-size: 1.5rem;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.testimonial-stars {
    color: #fbbf24;
    font-size: .9rem;
    margin-bottom: 14px;
}
.testimonial-card blockquote {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
}
.testimonial-name strong {
    display: block;
    font-size: .9rem;
    color: var(--gray-800);
}
.testimonial-name span {
    font-size: .78rem;
    color: var(--gray-400);
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: rgba(255,107,53,.06);
    border-radius: 50%;
}
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 20px;
}
.cta-inner h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    margin-bottom: 14px;
}
.cta-inner p {
    color: var(--blue-200);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-inner .btn-white {
    margin: 0 8px;
}


/* ============================================
   MAP BAND
   ============================================ */
.map-band {
    position: relative;
}
.map-band iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
    filter: grayscale(.2);
}
.map-overlay-card {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    max-width: 340px;
    z-index: 5;
}
.map-overlay-card h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
}
.map-overlay-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .9rem;
    color: var(--gray-600);
}
.map-overlay-card ul li i {
    color: var(--blue-600);
    margin-top: 3px;
    font-size: .85rem;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.03'%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");
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
    position: relative;
}
.page-hero p {
    color: var(--blue-200);
    font-size: 1.05rem;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: .85rem;
    color: var(--blue-300);
    position: relative;
}
.breadcrumb a {
    color: var(--blue-300);
}
.breadcrumb a:hover {
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-img-box {
    background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-img-box i {
    font-size: 6rem;
    color: var(--blue-300);
}
.about-img-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--blue-200);
    border-radius: 50%;
    opacity: .3;
}
.about-experience-badge {
    position: absolute;
    bottom: -16px;
    right: 30px;
    background: var(--blue-600);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-experience-badge h3 {
    color: var(--white);
    font-size: 1.8rem;
}
.about-experience-badge p {
    font-size: .78rem;
    color: var(--blue-200);
}

.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}
.about-text > p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.75;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-700);
}
.about-feature i {
    color: var(--success);
    font-size: .85rem;
}

/* Values Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-300);
}
.value-card .v-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.value-card p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.6;
}


/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    padding: 70px 0;
}
.service-detail:nth-child(even) {
    background: var(--gray-50);
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}
.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-img {
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    border-radius: var(--radius-xl);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-detail-img i {
    font-size: 5rem;
    color: var(--blue-400);
}
.service-detail-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 14px;
}
.service-detail-text > p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.75;
}
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--gray-700);
}
.service-list li i {
    color: var(--blue-600);
    font-size: .75rem;
}

/* Pricing hint cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card.featured {
    border-color: var(--blue-600);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-600);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card .p-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}
.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-600);
    margin-bottom: 6px;
}
.pricing-card .price span {
    font-size: .82rem;
    color: var(--gray-400);
    font-weight: 400;
}
.pricing-card p.desc {
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 18px;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.contact-info-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-sm);
}
.contact-info-card .ci-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.contact-info-card h4 {
    font-size: .95rem;
    margin-bottom: 4px;
}
.contact-info-card p, .contact-info-card a {
    font-size: .9rem;
    color: var(--gray-500);
}
.contact-info-card a:hover {
    color: var(--blue-600);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.contact-form-wrap > p {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(33,133,240,.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form success/error messages */
.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: .9rem;
    font-weight: 500;
}
.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}


/* ============================================
   FOOTER
   ============================================ */
.footer-wave {
    margin-top: -2px;
    line-height: 0;
}
.footer-wave svg {
    width: 100%;
    height: 80px;
}
.footer-main {
    background: #0f1b2d;
    padding: 50px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-about p {
    font-size: .88rem;
    color: #8896a8;
    line-height: 1.7;
    margin: 16px 0 20px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
}
.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}
.footer-logo .highlight {
    color: var(--blue-400);
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #8896a8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--blue-600);
    color: #fff;
}

.footer-col h4 {
    font-size: .95rem;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue-600);
    display: inline-block;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: .88rem;
    color: #8896a8;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--blue-400);
    padding-left: 4px;
}
.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #8896a8;
    font-size: .88rem;
}
.contact-list li i {
    color: var(--blue-400);
    margin-top: 4px;
    font-size: .82rem;
}
.contact-list li a {
    color: #8896a8;
}
.contact-list li a:hover {
    color: var(--blue-400);
}

.footer-bottom {
    background: #0a1424;
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    font-size: .82rem;
    color: #5a6b80;
}


/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue-600);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(26,109,212,.35);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--blue-700);
    transform: translateY(-3px);
}


/* ============================================
   ANIMATIONS (on scroll)
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }
.fade-up.d5 { transition-delay: .5s; }
.fade-up.d6 { transition-delay: .6s; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
}

@media (max-width: 768px) {
    .top-bar-inner { justify-content: center; font-size: .75rem; }
    .top-bar-left .divider-dot, .top-bar-left span:nth-child(3) { display: none; }
    .top-bar-right { display: none; }

    .mobile-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 12px 16px; }

    .hero { min-height: auto; }
    .hero-grid { padding: 50px 0 40px; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }

    .why-us-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .map-overlay-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-top: 3px solid var(--blue-600);
    }

    .pricing-cards { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section-padding { padding: 60px 0; }
    .hero-content h1 { font-size: 1.6rem; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}
