/* Virtual PC Assistance - Main Stylesheet */

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --primary-gray: #4a4a4a;
    --secondary-gray: #6b6b6b;
    --accent-orange: #f97316;
    --accent-teal: #38b2ac;
    --dark: #0d0d0d;
    --light-gray: #f5f5f5;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    /* Legacy aliases for compatibility */
    --primary-blue: #1a1a1a;
    --secondary-blue: #4a4a4a;
    --teal: #f97316;
    /* Services page variables */
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

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

/* ========================================
   NAVIGATION
   ======================================== */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-cta {
    background: var(--accent-orange);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #3d3d3d 50%, #5a5a5a 100%);
    color: var(--white);
    padding: 10rem 2rem 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

#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.05'%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");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
#services {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.15rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link::after {
    content: '→';
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
#why-us {
    padding: 6rem 2rem;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-item {
    text-align: center;
    padding: 1.5rem;
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-blue);
}

.why-us-item h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.why-us-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
#testimonials {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary-blue);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========================================
   CTA BANNER
   ======================================== */
#cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

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

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .stats-bar {
        gap: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .footer-brand {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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


/* ========================================
   QUOTE CALCULATOR CARDS
   ======================================== */
#quote-calculators {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.calculator-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calculator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.calc-card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.calculator-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.calculator-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.calc-card-cta {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.calculator-card:hover .calc-card-cta {
    color: var(--accent-orange);
}

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


/* ========================================
   PAGE HERO SECTIONS
======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #3d3d3d 100%);
}

.cctv-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #3d3d3d 100%);
}

/* ========================================
   STICKY PRICE DISPLAY
======================================== */
.price-sticky {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 20px;
}

.price-display-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
}

.price-details {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-details strong {
    color: var(--dark);
}

.btn-sm {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}

/* ========================================
   CALCULATOR SECTIONS
======================================== */
.calculator-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.calc-step-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.calc-step-section:last-child {
    border-bottom: none;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-header h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.step-header p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   PLAN CARDS
======================================== */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.plan-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.plan-card.selected {
    border-color: var(--teal);
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    box-shadow: 0 8px 30px rgba(56, 178, 172, 0.2);
}

.plan-card.featured {
    border-color: var(--accent-orange);
}

.plan-badge {
    display: inline-block;
    background: #e2e8f0;
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.plan-badge.popular {
    background: var(--accent-orange);
    color: white;
}

.plan-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 20px;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
}

.plan-price .period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plan-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark);
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li.not-included {
    color: #a0aec0;
    text-decoration: line-through;
}

.plan-sla {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background: white;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: var(--teal);
    color: white;
}

.plan-card.selected .btn-select {
    background: var(--teal);
    color: white;
}

/* ========================================
   DEVICE COUNTERS
======================================== */
.device-counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.device-counter {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.device-icon {
    font-size: 2.5rem;
}

.device-info {
    flex: 1;
    min-width: 150px;
}

.device-info h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.device-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.counter-controls input {
    width: 60px;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.counter-controls input:focus {
    outline: none;
    border-color: var(--teal);
}

.device-subtotal {
    font-weight: 700;
    color: var(--teal);
    min-width: 80px;
    text-align: right;
}

/* ========================================
   OPTION CARDS (Building type, NVR, etc)
======================================== */
.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.option-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: var(--teal);
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
}

.option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teal);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.option-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.option-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.option-price {
    display: inline-block;
    background: #e6fffa;
    color: var(--teal);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   PRODUCT CARDS & GRID
======================================== */
.product-group-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.product-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: #cbd5e0;
}

.product-img {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.product-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.product-price {
    font-weight: 700;
    color: var(--teal);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.qty-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.quantity-control input {
    width: 45px;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 5px;
    font-weight: 600;
}

/* ========================================
   ADDONS GRID
======================================== */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.addon-card {
    display: block;
    cursor: pointer;
}

.addon-card input {
    display: none;
}

.addon-content {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.addon-card:hover .addon-content {
    border-color: #cbd5e0;
}

.addon-card input:checked + .addon-content {
    border-color: var(--teal);
    background: #f0fff4;
}

.addon-icon {
    font-size: 2rem;
}

.addon-info {
    flex: 1;
}

.addon-info h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.addon-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.addon-price {
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
}

/* ========================================
   SUMMARY & QUOTE FORM
======================================== */
.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.summary-card, .quote-form-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
}

.summary-card h3, .quote-form-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.summary-breakdown {
    min-height: 100px;
}

.summary-breakdown p {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.summary-breakdown .empty-state {
    color: var(--text-light);
    text-align: center;
    padding: 30px 0;
    border: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #e2e8f0;
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal);
}

.summary-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
}

.quote-form-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.trust-items {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
}

.trust-check {
    background: var(--teal);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
}

.contact-item a {
    color: var(--teal);
    text-decoration: none;
}

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

.contact-item .highlight {
    display: block;
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 3px;
}

.emergency-card {
    background: linear-gradient(135deg, #fed7d7 0%, #fff5f5 100%);
    border-color: #fc8181;
}

.btn-emergency {
    display: block;
    text-align: center;
    background: #e53e3e;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-emergency:hover {
    background: #c53030;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}

.quick-links a:hover {
    text-decoration: underline;
}

/* ========================================
   FORMS (Shared)
======================================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.btn-full {
    width: 100%;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 900px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .price-sticky {
        position: relative;
        top: 0;
    }
    
    .price-display-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .price-details {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .plan-cards {
        grid-template-columns: 1fr;
    }
    
    .device-counter {
        flex-direction: column;
        text-align: center;
    }
    
    .device-subtotal {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .option-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .option-cards {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   SERVICE PAGE CONTENT
======================================== */
.service-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.content-wrapper > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--teal);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark) 100%);
    color: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-primary {
    display: inline-block;
}

@media (max-width: 768px) {
    .service-content {
        padding: 40px 15px;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
}
