/* ============================================
   AR MOBILES — Clean, Authentic Design
   ============================================ */

:root {
    --red: #e53e3e;
    --red-dark: #c53030;
    --red-light: #feb2b2;
    --red-bg: #fff5f5;
    --orange: #ed8936;
    --green: #38a169;
    --blue: #3182ce;
    --yellow: #ecc94b;

    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #171923;

    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', -apple-system, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --transition: 0.25s ease;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    font-size: 0.8rem;
    padding: 8px 0;
}

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

.top-bar a {
    color: var(--white);
    font-weight: 600;
}

.top-bar strong { color: var(--green); }

/* ============================================
   Header
   ============================================ */
#header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 100;
    transition: var(--transition);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--red);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.logo-mark-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
}

.logo-words { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #25d366;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.wa-btn:hover {
    background: #1fb855;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-solid {
    background: var(--red);
    color: white;
}

.btn-solid:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-wa-big {
    background: #25d366;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-wa-big:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: white;
    color: var(--gray-800);
    border: 2px solid var(--gray-300);
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-call:hover {
    border-color: var(--gray-800);
}

.btn-block { width: 100%; justify-content: center; }

/* ============================================
   Hero
   ============================================ */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff 50%, #f0f7ff 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--gray-200);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-trust .stars { font-size: 0.75rem; letter-spacing: 1px; }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero p strong { color: var(--red); }

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-quick-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 24px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.quick-item { text-align: center; }

.quick-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
}

.quick-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.quick-sep {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    max-height: 500px;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-800);
}

.hero-float-card span:not(.float-emoji) {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.float-emoji { font-size: 1.5rem; }

.card-price {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.card-repair {
    top: 40px;
    right: -20px;
    animation-delay: -1.5s;
}

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

/* ============================================
   Offers Strip
   ============================================ */
.offers-strip {
    background: var(--red);
    padding: 10px 0;
    overflow: hidden;
}

.offers-track { overflow: hidden; white-space: nowrap; }

.offers-scroll {
    display: inline-flex;
    gap: 12px;
    animation: scroll 25s linear infinite;
}

.offers-scroll span {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0 8px;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   Section Styles
   ============================================ */
.section { padding: 70px 0; }
.section-alt { background: var(--gray-50); }

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.section-heading.center { text-align: center; }

.section-sub {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.section-sub.center { text-align: center; }

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-foot {
    text-align: center;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.text-link {
    color: var(--red);
    font-weight: 600;
}

.text-link:hover { text-decoration: underline; }

/* ============================================
   Tab Filters
   ============================================ */
.tab-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tab {
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    background: white;
    transition: var(--transition);
}

.tab:hover { border-color: var(--gray-400); }

.tab.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

/* ============================================
   Phone Grid
   ============================================ */
.phone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.phone-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.phone-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.phone-card-img {
    height: 200px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-card-img img {
    height: 160px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.phone-card:hover .phone-card-img img {
    transform: scale(1.05);
}

.phone-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.badge-hot { background: #fed7d7; color: #c53030; }
.badge-new { background: #c6f6d5; color: #276749; }
.badge-deal { background: #fefcbf; color: #975a16; }

.phone-card-body {
    padding: 16px;
}

.phone-card-brand {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--red);
    margin-bottom: 2px;
}

.phone-card-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.phone-card-specs {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.phone-card-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.phone-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gray-900);
}

.phone-mrp {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.phone-discount {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    background: #c6f6d5;
    padding: 3px 8px;
    border-radius: 50px;
}

.phone-card-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: var(--gray-900);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.phone-card-cta:hover {
    background: var(--red);
}

/* ============================================
   USP Grid
   ============================================ */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.usp-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}

.usp-card:hover {
    border-color: var(--red-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.usp-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.usp-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.usp-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ============================================
   Gadgets Grid
   ============================================ */
.gadgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.gadget-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}

.gadget-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gadget-item:hover img {
    transform: scale(1.08);
}

.gadget-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
}

.gadget-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.gadget-tag {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--red);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.svc-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.svc-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.svc-body {
    padding: 20px;
}

.svc-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.svc-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 12px;
}

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

.svc-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--red);
    font-size: 0.95rem;
}

.svc-time {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   Repair Request Form
   ============================================ */
.repair-form-wrap {
    max-width: 700px;
    margin: 32px auto 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.repair-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.repair-field.full-width {
    grid-column: 1 / -1;
}

.repair-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.repair-field input,
.repair-field select,
.repair-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--gray-800);
    transition: var(--transition);
    outline: none;
    background: var(--gray-50);
}

.repair-field input:focus,
.repair-field select:focus,
.repair-field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
    background: white;
}

.repair-field textarea {
    resize: vertical;
    min-height: 80px;
}

.repair-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 12px;
}

.repair-success {
    text-align: center;
    padding: 32px;
}

.repair-success .success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.repair-success h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.repair-success p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .repair-form-grid {
        grid-template-columns: 1fr;
    }
    .repair-form-wrap {
        padding: 20px;
    }
}

/* ============================================
   Sell Your Device
   ============================================ */
.sell-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 32px auto;
}

.sell-hero-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.sell-hero-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 32px rgba(229, 62, 62, 0.12);
    transform: translateY(-4px);
}

.sell-hero-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.sell-hero-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.sell-hero-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

.sell-perks {
    list-style: none;
    text-align: left;
    max-width: 260px;
    margin: 0 auto 16px;
}

.sell-perks li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 4px 0;
}

.sell-cta {
    display: inline-block;
    padding: 8px 24px;
    background: var(--red);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.sell-hero-card:hover .sell-cta {
    background: #c53030;
}

@media (max-width: 600px) {
    .sell-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Reviews
   ============================================ */
.reviews-wrap {
    max-width: 680px;
    margin: 36px auto 0;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.45s ease;
}

.review-slide {
    min-width: 100%;
    padding: 0 8px;
}

.review-inner {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.review-rating {
    color: #f6ad55;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-inner blockquote {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
}

.review-meta strong {
    display: block;
    font-size: 0.9rem;
}

.review-meta span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.reviews-controls button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: white;
    font-size: 1.2rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.reviews-controls button:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.review-dots {
    display: flex;
    gap: 6px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.review-dot.active {
    background: var(--red);
    width: 22px;
    border-radius: 50px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 60px 0;
    background: var(--gray-900);
    color: white;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cta-text p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   Contact
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 36px;
}

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

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

.ci-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.contact-item a {
    color: var(--red);
    font-weight: 500;
}

.contact-item a:hover { text-decoration: underline; }

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    background: white;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

/* Contact Form */
.contact-form-box {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.contact-form-box h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: var(--gray-800);
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--gray-50);
    margin-bottom: 12px;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
    background: white;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: var(--gray-400);
}

.contact-form-box select {
    color: var(--gray-400);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}

.contact-form-box select:valid { color: var(--gray-800); }

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 50px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    font-size: 0.88rem;
    margin-top: 14px;
    line-height: 1.6;
}

.footer-brand .logo-name { color: white; }
.footer-brand .logo-tagline { color: var(--gray-500); }
.footer-brand .logo-mark { background: var(--red); }

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    padding: 4px 0;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    font-size: 0.8rem;
    text-align: center;
}

/* ============================================
   WhatsApp FAB
   ============================================ */
.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.5);
}

.wa-fab.visible {
    opacity: 1;
    transform: scale(1);
}

.wa-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Scroll Animation
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Modal & Products List
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: white;
    border-radius: 14px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: modalIn 0.3s ease;
    box-shadow: var(--shadow-xl);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.modal-close {
    font-size: 1.5rem;
    color: var(--gray-500);
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    transition: var(--transition);
}

.product-list-item:hover {
    border-color: var(--blue);
    background: var(--gray-50);
}

.product-list-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.product-list-info p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.product-list-price {
    font-weight: 700;
    color: var(--blue);
    font-size: 1.1rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .top-bar-inner { font-size: 0.72rem; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        gap: 0;
    }

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

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
    }

    .main-nav a:last-child { border-bottom: none; }

    .menu-toggle { display: flex; }

    .wa-btn span { display: none; }

    .hero { padding: 36px 0 24px; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-visual { order: -1; }
    .hero-img-wrap { max-height: 320px; }

    .hero-float-card { display: none; }

    .hero h1 { font-size: 1.85rem; }

    .hero-quick-info { width: 100%; justify-content: space-around; }

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

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

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

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

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

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

    .phone-card-img { height: 150px; }
    .phone-card-img img { height: 120px; }

    .phone-card-body { padding: 10px; }
    .phone-card-name { font-size: 0.88rem; }
    .phone-price { font-size: 1rem; }
    .phone-mrp { display: none; }

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

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

    .tab-filters { gap: 4px; }
    .tab { padding: 6px 12px; font-size: 0.78rem; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

/* ============================================
   Deals Popup
   ============================================ */
.deals-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeInPopup 0.3s ease;
}

.deals-popup {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: slideUpPopup 0.4s ease;
}

.deals-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.deals-close:hover { color: var(--red); }

.deals-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.deals-popup h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.deals-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deal-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.deal-item:hover {
    border-color: var(--red-light);
    background: var(--red-bg);
}

@keyframes fadeInPopup {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Gift Badge on Phone Cards */
.gift-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(5,150,105,0.3);
    animation: pulseGift 2s ease-in-out infinite;
}

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