/* ============================================
   THE PHONE SHOP COMBER - Stylesheet
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

img, picture, svg {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* CSS Variables */
:root {
    /* Brand colors */
    --navy: #0a1d3a;
    --navy-deep: #061429;
    --navy-light: #142a4d;
    --white: #ffffff;
    --cyan: #00d9ff;
    --cyan-glow: rgba(0, 217, 255, 0.4);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    /* Neutrals */
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-mid: #f1f5f9;
    --border: #e2e8f0;
    
    /* Typography */
    --font-display: 'Archivo Black', 'Impact', sans-serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --container: 1200px;
    --section-pad: clamp(4rem, 8vw, 7rem);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 29, 58, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 29, 58, 0.1);
    --shadow-lg: 0 20px 50px rgba(10, 29, 58, 0.15);
    --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.25);
}

/* Base */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { font-size: clamp(1rem, 1.2vw, 1.1rem); }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cyan);
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.eyebrow.dark { color: var(--navy); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn-call {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-call:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   HEADER
   =========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
}

.logo-text span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--navy);
}

.nav-desktop a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cta .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav-mobile {
    display: none;
}

@media (max-width: 968px) {
    .nav-desktop, .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-mobile {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%;
        max-width: 360px;
        background: var(--navy);
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 100;
        overflow-y: auto;
    }
    
    .nav-mobile.open {
        transform: translateX(0);
    }
    
    .nav-mobile a {
        font-family: var(--font-display);
        font-size: 1.4rem;
        color: var(--white);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        text-transform: uppercase;
    }
    
    .nav-mobile .btn {
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .nav-mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 99;
    }
    
    .nav-mobile-overlay.open {
        opacity: 1;
        pointer-events: all;
    }
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.18), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(0, 217, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.hero-eyebrow {
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 0.95;
}

.hero h1 .accent {
    color: var(--cyan);
    text-shadow: 0 0 30px var(--cyan-glow);
}

.hero-sub {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

@media (max-width: 968px) {
    .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .hero-ctas { justify-content: center; }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid rgba(0, 217, 255, 0.25);
    background: var(--navy-deep);
}

.hero-video-wrap video,
.hero-video-wrap img.poster-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 20, 41, 0.5) 100%);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    background: var(--cyan);
    color: var(--navy);
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-md);
    animation: float 3.5s ease-in-out infinite;
    z-index: 3;
    line-height: 1;
}

.hero-badge small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    margin-top: 4px;
    opacity: 0.7;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.hero-badge-1 {
    top: 7%;
    left: -8%;
    animation-delay: 0s;
}

.hero-badge-2 {
    bottom: 8%;
    right: -6%;
    background: var(--white);
    color: var(--navy);
    animation-delay: 1.7s;
}

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

@media (max-width: 600px) {
    .hero-badge-1 { left: 0; top: 4%; }
    .hero-badge-2 { right: 0; bottom: 4%; }
    .hero-video-wrap { max-width: 100%; aspect-ratio: 4 / 3; }
}

/* ===========================================
   TRUST STRIP
   =========================================== */
.trust-strip {
    background: var(--navy-deep);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--white);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
}

.trust-icon svg {
    width: 20px;
    height: 20px;
}

.trust-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.trust-text small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyan);
    margin-top: 2px;
    letter-spacing: 0.1em;
}

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

/* ===========================================
   SECTION DEFAULTS
   =========================================== */
.section {
    padding: var(--section-pad) 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--white);
}

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

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-header p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.75);
}

/* ===========================================
   SERVICES SECTION WITH IMAGE
   =========================================== */
.services-with-image {
    position: relative;
}

.services-image-banner {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
}

.services-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-image-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 29, 58, 0.85) 0%, rgba(10, 29, 58, 0.3) 100%);
}

.services-image-banner-content {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 50%;
    z-index: 2;
}

@media (max-width: 768px) {
    .services-image-banner-content {
        max-width: 80%;
        left: 1.5rem;
    }
    .services-image-banner {
        height: 220px;
    }
}

.services-image-banner-content .eyebrow {
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.services-image-banner-content h3 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.1;
}

/* ===========================================
   SERVICE CARDS
   =========================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--cyan);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    gap: 0.75rem;
    color: var(--cyan);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===========================================
   DEVICES / BRANDS STRIP
   =========================================== */
.devices-strip {
    background: var(--bg-mid);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.devices-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.devices-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
}

.device-item {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.55;
    transition: opacity 0.2s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.device-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Brand logo grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem 1rem;
    }
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
    padding: 0.5rem;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.3s ease;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
}

.brand-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .brand-item {
        height: 50px;
    }
}

/* ===========================================
   USP HERO (We Come To You - Main Selling Point)
   =========================================== */
.usp-hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 0;
    overflow: hidden;
    margin: 0;
}

.usp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

@media (max-width: 968px) {
    .usp-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.usp-hero-image {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
}

.usp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.usp-hero:hover .usp-hero-image img {
    transform: scale(1.03);
}

.usp-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 29, 58, 0.4) 0%, rgba(10, 29, 58, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 968px) {
    .usp-hero-image {
        min-height: 320px;
    }
}

.usp-hero-image-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--cyan);
    color: var(--navy);
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.usp-hero-content {
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.1), transparent 60%),
        var(--navy);
}

.usp-hero-eyebrow {
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.usp-hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.usp-hero-content h2 {
    color: var(--white);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.usp-hero-content h2 .accent {
    color: var(--cyan);
    text-shadow: 0 0 25px var(--cyan-glow);
    display: block;
}

.usp-hero-content > p {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.6;
}

.usp-points {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.usp-point {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

.usp-point-tick {
    width: 24px;
    height: 24px;
    background: var(--cyan);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-point-tick svg {
    width: 14px;
    height: 14px;
}

.usp-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===========================================
   BEFORE / AFTER SHOWCASE
   =========================================== */
.proof-section {
    background: var(--bg-light);
    padding: var(--section-pad) 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 868px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.proof-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
}

.proof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proof-content h2 {
    margin-bottom: 1.25rem;
}

.proof-content p {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.proof-content .btn {
    margin-top: 1rem;
}

/* ===========================================
   LEGACY USP CALLOUT (kept for other pages)
   =========================================== */
.usp-callout {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    border-radius: 20px;
    padding: clamp(3rem, 6vw, 5rem);
    overflow: hidden;
    margin: var(--section-pad) 0;
}

.usp-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.usp-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 968px) {
    .usp-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.usp-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.usp-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.usp-features {
    display: grid;
    gap: 1rem;
}

.usp-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
}

.usp-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--cyan);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-feature-icon svg {
    width: 18px;
    height: 18px;
}

.usp-feature-text strong {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.usp-feature-text span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===========================================
   ACCESSORIES TILES
   =========================================== */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

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

.accessory-tile {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accessory-tile:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.accessory-tile-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.accessory-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.accessory-tile:hover .accessory-tile-image img {
    transform: scale(1.05);
}

.accessory-tile-body {
    padding: 1.5rem;
}

.accessory-tile h4 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.accessory-tile p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Legacy icon-only accessory tile (used on homepage teaser only) */
.accessory-tile-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--bg-mid);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
}

.accessory-tile:hover .accessory-tile-icon {
    background: var(--navy);
    color: var(--cyan);
}

.accessory-tile-icon svg {
    width: 32px;
    height: 32px;
}

.accessory-tile-legacy {
    padding: 2rem;
}

/* ===========================================
   WHY CHOOSE US
   =========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

.why-card {
    text-align: left;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--cyan);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.why-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 600;
}

.why-card h4 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===========================================
   LOCATION SECTION
   =========================================== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

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

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2 {
    margin-bottom: 1.5rem;
}

.info-block {
    margin-bottom: 1.75rem;
}

.info-block-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-block-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

.info-block-value a {
    color: var(--text-dark);
    transition: color 0.2s;
}

.info-block-value a:hover {
    color: var(--navy);
}

.hours-list {
    font-family: var(--font-body);
    font-weight: 500;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.hours-list div:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text-dark);
    font-weight: 600;
}

.hours-time {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.12), transparent 60%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 868px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand img {
    height: 60px;
    width: auto;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-contact div {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--cyan);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s;
}

.footer-socials a:hover {
    background: var(--cyan);
    color: var(--navy);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--cyan); }

/* ===========================================
   FLOATING WHATSAPP
   =========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 90;
    transition: transform 0.25s ease;
    animation: pulse-ring 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===========================================
   PAGE HEADER (for inner pages)
   =========================================== */
.page-header {
    background: var(--navy);
    color: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 75% 30%, rgba(0, 217, 255, 0.12), transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-header-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
}

.breadcrumbs {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs a {
    color: var(--cyan);
    transition: opacity 0.2s;
}

.breadcrumbs a:hover { opacity: 0.8; }

.breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.4;
}

/* ===========================================
   SERVICES PAGE
   =========================================== */
.services-section + .services-section {
    border-top: 1px solid var(--border);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .services-detail-grid { grid-template-columns: 1fr; }
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.service-detail-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-detail-card .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-detail-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-detail-content .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-body);
}

.about-content p:first-of-type {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
}

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

.stat-card {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyan);
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4rem);
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.25s ease;
}

.contact-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-content {
    flex: 1;
}

.contact-card-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-card-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    text-transform: none;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}

.contact-card-value a {
    color: var(--text-dark);
}

.contact-card-value a:hover {
    color: var(--navy);
}

.contact-card-action {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.contact-card-action:hover {
    text-decoration: underline;
}

/* ===========================================
   404 PAGE
   =========================================== */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    padding: 4rem 1.5rem;
}

.error-page-inner h1 {
    font-size: clamp(6rem, 15vw, 10rem);
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px var(--cyan-glow);
}

.error-page-inner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.error-page-inner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   ANIMATIONS - SCROLL REVEAL
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================================
   UTILITIES
   =========================================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

@media print {
    .header, .footer, .whatsapp-float { display: none; }
}
