:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent: #ff6b35;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: #0da271;
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #e55a2b;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.strikethrough {
  text-decoration: line-through;
  color: #777;
}

/* ===== New Header Styles ===== */
.new-header {
  background: linear-gradient(90deg, #1a2a6c 0%, #2c3e50 100%);
  color: white;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.new-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.new-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
}

.new-header .logo i {
  color: #ffd700;
  font-size: 2rem;
  background: rgba(255, 215, 0, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.new-header nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.new-header .nav-item {
  position: relative;
}

.new-header .nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.new-header .nav-link:hover {
  color: #ffd700;
}

.new-header .contact-btn {
  background: #ffd700;
  color: #1a2a6c;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.new-header .contact-btn:hover {
  background: transparent;
  border-color: #ffd700;
  color: white;
}

.new-header .hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Fix for hamburger clickability */
  position: relative;
  z-index: 1001;
}

.new-header .hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Styles */
@media (max-width: 992px) {
  .new-header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #1a2a6c;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .new-header nav.active {
    right: 0;
  }

  .new-header .nav-link {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .new-header .mobile-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    /* Fix for button alignment */
    width: 100%;
    padding: 0 1.5rem;
  }

  .new-header .mobile-cta .contact-btn {
    /* Fix for button alignment */
    width: 100%;
    justify-content: center;
    padding: 14px 0;
    font-size: 1.1rem;
  }

  .new-header .hamburger {
    display: flex;
  }

  .new-header .desktop-cta {
    display: none;
  }
}

@media (min-width: 993px) {
  .new-header .mobile-cta {
    display: none;
  }
}

/* styles.css */
/* ... existing styles ... */

/* ===== DIAGNOSTIC ASSISTANT STYLES ===== */
.diagnostic-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 20%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.diagnostic-step {
    display: none;
    padding: 20px;
}

.diagnostic-step.active {
    display: block;
}

.diagnostic-step h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #334155;
}

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

.diagnostic-option {
    padding: 15px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.diagnostic-option:hover {
    background: #e2e8f0;
    transform: translateY(-3px);
}

.diagnostic-results {
    text-align: center;
    padding: 20px;
}

.diagnosis-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.diagnosis-icon i {
    background: rgba(37, 99, 235, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.diagnosis-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.diagnostic-step h4,
.diagnostic-step .btn,
.diagnostic-options .btn {
    color: #1e293b !important; /* Dark blue for visibility */
}

.diagnostic-results h5 {
    color: #1e293b !important;
}

.diagnostic-results p {
    color: #334155 !important;
}

/* Service Tracker */
.service-tracker {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    display: none;
}

.tracker-header {
    background: var(--primary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracker-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.tracker-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.tracker-content {
    padding: 20px;
}

.tracker-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.tracker-steps:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.tracker-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #64748b;
}

.tracker-step.active .step-icon {
    background: var(--primary);
    color: white;
}

.tracker-step.completed .step-icon {
    background: var(--success);
    color: white;
}

.tracker-step.completed .step-label {
    color: var(--dark);
    font-weight: 500;
}

.tracker-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.tracker-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.tracker-item:last-child {
    border-bottom: none;
}

.tracker-actions {
    text-align: center;
}

/* Tech Status Indicators */
.tech-status {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 10px;
}

.tech-status i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.tech-status.online {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.tech-status.offline {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.tech-status.busy {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

/* View Map Buttons */
.view-map {
    margin-top: 15px;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Service Tracker Button */
#trackerBtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-tracker {
        width: 90%;
        left: 5%;
        bottom: 20px;
    }
    
    .diagnostic-options {
        grid-template-columns: 1fr;
    }
}

/* Hero Section with Computer Monitor Animation */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                radial-gradient(circle at 80% 20%, #0d1b2a, #1a365d);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Desktop background */
@media (min-width: 769px) {
    .hero {
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                    url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* Mobile button clickability fix */
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.computer-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.monitor {
    position: relative;
    width: 500px;
    height: 400px;
}

.monitor-frame {
    position: absolute;
    width: 100%;
    height: 85%;
    background: #2c3e50;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8),
                0 0 0 8px #1a1a2e,
                0 0 0 12px #333;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.monitor-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.screen-content.active {
    opacity: 1;
    transform: scale(1);
}

.screen-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.screen-content p {
    color: rgba(255,255,255,0.8);
    max-width: 80%;
    text-align: center;
}

.monitor-stand {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 47px;
    background: linear-gradient(to top, #1a1a2e, #2c3e50);
    border-radius: 0 0 5px 5px;
}

.monitor-base {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 15px;
    background: #1a1a2e;
    border-radius: 5px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0,255,255,0.5);
    box-shadow: 0 0 10px rgba(0,255,255,0.8);
    animation: scan 4s linear infinite;
    z-index: 10;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Services Section - UPDATED */
#services .text-center {
    margin-bottom: 60px;
}

#services .section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: none;
    position: relative;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

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

.tech-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    color: #34495e;
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f1f1;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--success);
}

.service-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.service-btn:hover {
    background: var(--primary-dark);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
}

.testimonials .section-title:after {
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    opacity: 0.3;
}

.client {
    display: flex;
    align-items: center;
}

.client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid white;
}

/* Loading Spinner */
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Warranty Details Styling */
.warranty-details {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.warranty-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.warranty-header i {
    font-size: 2rem;
    margin-right: 15px;
}

.warranty-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.warranty-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.warranty-item {
    margin-bottom: 10px;
}

.warranty-label {
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

.warranty-value {
    display: block;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
}

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

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

.warranty-error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.warranty-loading {
    text-align: center;
    padding: 30px;
}

/* Notification styling */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background: var(--success);
}

.notification.error {
    background: var(--danger);
}

@media (max-width: 480px) {
    /* Layout for mobile: stack cards vertically and center them */
    .services-grid {
        display: flex;              /* Use flex instead of grid */
        flex-direction: column;     /* Stack items vertically */
        align-items: center;        /* Center items horizontally */
        padding: 0 10px;            /* Side padding (you can increase if needed) */
        gap: 20px;                  /* Space between cards */
    }

    /* Main service card container */
    .service-card {
        width: 100%;                 /* Card width on mobile (change to 80%, etc.) */
        padding: 25px 20px;         /* Inner space (adjust padding here) */
        border-radius: 10px;        /* Rounded corners (increase/decrease curve) */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
        text-align: center;         /* Center text inside */
    }

    /* Service title inside card */
    .service-card h3 {
        font-size: 1.2rem;          /* Title font size (adjust here) */
        margin-bottom: 10px;        /* Space below title */
    }

    /* Features list container */
    .service-features {
        margin: 15px 0;             /* Vertical spacing (top and bottom) */
    }

    /* Individual feature item */
    .service-features li {
        font-size: 0.85rem;         /* Feature text size (adjust smaller/larger) */
        padding: 6px 0 6px 20px;    /* Top/bottom and left space for icon */
    }

    /* Service button */
    .service-btn {
        padding: 10px;              /* Inner space of the button */
        font-size: 0.9rem;          /* Text size inside button */
        border-radius: 4px;         /* Button corner rounding */
        margin-top: 10px;           /* Space above the button */
    }

    /* Optional: icon size at top of card (if using icons) */
    .tech-icon {
        font-size: 2rem;            /* Icon size (adjust as needed) */
        margin-bottom: 10px;        /* Space below icon */
    }
}


/* Floating elements for background */
.floating {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    z-index: 1;
}

.floating:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
}

.floating:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation: float 18s infinite ease-in-out reverse;
}

.floating:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation: float 12s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 15px) rotate(5deg); }
    50% { transform: translate(0, 20px) rotate(0deg); }
    75% { transform: translate(-10px, 15px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Pricing Calculator Styles */
.pricing-calculator {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator-form .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #334155;
}

.calculator-form .form-control {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.calculator-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

#calculate-btn {
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.calculator-result {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.result-placeholder {
    text-align: center;
    color: #ffffff;
}

.result-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.result-placeholder h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.pricing-result {
    text-align: center;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-details {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}

.price-details p {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #cbd5e1;
    margin: 0;
}

.price-details p:last-child {
    border-bottom: none;
}

.price-details i {
    width: 24px;
    color: #ffffff;
    margin-right: 12px;
    text-align: center;
}

.price-note {
    background: #eef2ff;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-note i {
    color: #2563eb;
}

.price-disclaimer {
    margin-top: 40px;
    padding: 15px;
    background: #f1f5f9;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-disclaimer i {
    color: #2563eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .calculator-result {
        min-height: auto;
        padding: 20px;
    }
    
    .price-display {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-calculator {
        padding: 20px;
    }
    
    .calculator-form .form-control {
        padding: 12px;
    }
    
    #calculate-btn {
        padding: 12px;
    }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo h2 {
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.newsletter-form .form-group {
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .monitor {
        width: 400px;
        height: 320px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        padding-top: 20px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .monitor {
        width: 350px;
        height: 280px;
        margin-top: 40px;
        position: relative;
        transform: scale(0.9);
    }
    
    .monitor-stand {
        bottom: -10px;
    }
    
    .monitor-base {
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Reduced gap between sections */
    #services.section {
        padding-bottom: 30px;
    }
    
    #pricing.section {
        padding-top: 30px;
    }
    
    /* Mobile view for calculator form */
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .calculator-form select {
        width: 100% !important;
    }
    
    .calculator-form .form-group {
        width: 100%;
    }
    
    /* Hero section adjustment for mobile */
    .hero {
        min-height: 85vh;
        padding-bottom: 5vh;
    }
    
    /* KEY ADJUSTMENT: Reduce gap between buttons and computer frame */
    .hero-btns {
        margin-bottom: 20px;
        position: relative;
        z-index: 30;
    }
    
    .computer-animation {
        position: relative;
        z-index: 10;
        margin-top: 20px;
    }
    
    /* Ensure buttons have proper dimensions */
    .hero-btns a.btn {
        min-width: 200px;
        padding: 15px 20px;
    }
    
    /* Full-width for Pricing Calculator on mobile */
    #pricing .pricing-calculator {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-radius: 0;
        padding: 25px 15px;
    }
    
    /* Full-width for Warranty Check on mobile */
    #warranty .warranty-check {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-radius: 0;
        padding: 25px 15px;
    }
    
    /* Adjust padding for calculator result */
    #pricing .calculator-result {
        border-radius: 0;
    }
    
    /* Adjust warranty result */
    #warranty #warranty-result {
        padding: 0 15px;
    }
    
    /* Remove horizontal padding from containers */
    #pricing > .container,
    #warranty > .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .monitor {
        width: 300px;
        height: 240px;
    }
}

/* Additional Features */
.pricing-calculator {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.calculator-result {
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.knowledge-base {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.kb-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.kb-card:hover {
    transform: translateY(-5px);
}

.kb-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.kb-content {
    padding: 20px;
}

.promotions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.promo-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.promo-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), #0da271);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.promo-content {
    padding: 20px;
}

.service-map {
    height: 400px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.map-overlay h3 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
}

.map-overlay p {
    color: var(--dark);
    max-width: 600px;
}

.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.chat-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin: 0;
}

.chat-header h3 a {
    color: white;
    text-decoration: none;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9fafc;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
    margin-left: auto;
}

.message-content {
    padding: 10px 15px;
    border-radius: 18px;
    display: inline-block;
}

.bot .message-content {
    background: #e5e7eb;
    border-bottom-left-radius: 5px;
}

.user .message-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 5px;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.chat-option {
    display: block;
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.chat-option:hover {
    background: var(--primary);
    color: white;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
    background: white;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
}

.chat-input button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Added gap below "Have a computer problem?" text */
#contact .text-center {
    margin-bottom: 30px;
}

/* Phone input styling */
.phone-input-container {
    display: flex;
}

.phone-prefix {
    background: #f1f5f9;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    border-right: none;
    user-select: none;
}

.phone-input {
    border-radius: 0 4px 4px 0;
    flex: 1;
}

/* Modal Buttons - Updated to match demo */
.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.modal-buttons .btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
    box-shadow: none;
}

.modal-buttons .btn:hover {
    transform: none;
}

.modal-buttons .btn-secondary {
    background: #d1d5db;
    color: #374151;
}

.modal-buttons .btn-secondary:hover {
    background: #9ca3af;
}

.modal-buttons .btn-accent {
    background: #3b82f6;
    color: white;
}

.modal-buttons .btn-accent:hover {
    background: #1d4ed8;
}


/* New Features */
/* Service Packages */
.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.package-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--success);
    margin-right: 10px;
}

/* Technician Profiles */
.technicians {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.tech-content {
    padding: 20px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.skills span {
    background: #eef2ff;
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Service Centers */
.centers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.center-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.center-card:hover {
    transform: translateY(-5px);
}

.center-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Warranty Check */
.warranty-check {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-top: 40px;
}

.warranty-check input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 15px 0;
    max-width: 400px;
}

/* AMC Plans */
.amc-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amc-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--primary);
}

.amc-card:hover {
    transform: translateY(-5px);
}

.amc-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.amc-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.amc-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.amc-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.amc-features li:last-child {
    border-bottom: none;
}

.amc-features li i {
    color: var(--success);
    margin-right: 10px;
}

/* Pricing Calculator Result Styles */
.pricing-result {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.price-details {
    background: rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.price-details p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.price-details i {
    margin-right: 10px;
    width: 20px;
}

/* FAQ Section */
#faq .section-title {
    text-align: center;
    display: block;
}

#faq .section-title:after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
}

#faq .container > p {
    text-align: center;
    margin-bottom: 40px;
}

/* FAQ Desktop Layout */
.faq-desktop {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.faq-column-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-question {
    padding: 18px 25px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #e2e8f0;
}

.faq-question:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    border-left-color: #94a3b8;
}

.faq-question.active {
    background: #dbeafe;
    border-color: #3b82f6;
    border-left-color: #3b82f6;
    color: #1d4ed8;
    font-weight: 600;
}

.faq-column-right {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.faq-answer {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-answer.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer h3 {
    color: #1d4ed8;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.faq-answer p {
    line-height: 1.7;
    color: #334155;
    margin-bottom: 20px;
}

/* Mobile FAQ - Show by default */
.faq-mobile {
    display: block;
    max-width: 800px;
    margin: 40px auto 0;
}

/* Hide desktop FAQ on mobile */
@media (max-width: 991px) {
    .faq-desktop {
        display: none;
    }
}

/* Show desktop FAQ on desktop */
@media (min-width: 992px) {
    .faq-mobile {
        display: none;
    }
    
    .faq-desktop {
        display: grid;
    }
}

/* Mobile FAQ Styling */
@media (max-width: 991px) {
    .faq-mobile {
        display: block;
        margin-top: 30px;
    }
    
    .faq-mobile .faq-item {
        margin-bottom: 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }
    
    .faq-mobile details {
        border-radius: 8px;
    }
    
    .faq-mobile summary {
        padding: 18px;
        background: #f8fafc;
        font-weight: 500;
        color: #1e293b;
        cursor: pointer;
        position: relative;
        list-style: none;
        padding-right: 40px;
        transition: background-color 0.3s;
    }
    
    .faq-mobile summary:hover {
        background: #f1f5f9;
    }
    
    .faq-mobile summary::-webkit-details-marker {
        display: none;
    }
    
    .faq-mobile summary:after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #64748b;
        transition: transform 0.3s;
    }
    
    .faq-mobile details[open] summary:after {
        content: '-';
        transform: translateY(-50%) rotate(0deg);
    }
    
    .faq-mobile details[open] summary {
        background: #dbeafe;
        color: #1d4ed8;
        border-bottom: 1px solid #dbeafe;
    }
    
    .faq-mobile .faq-content {
        padding: 20px;
        background: white;
        color: #334155;
        line-height: 1.7;
    }
    
    .faq-mobile .faq-content p {
        margin-bottom: 15px;
    }
    
    .faq-mobile .faq-content a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }
    
    .faq-mobile .faq-content a:hover {
        text-decoration: underline;
    }
}

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

.footer-logo h2 {
    margin: 0;
    white-space: nowrap;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

#serviceContent {
    padding: 20px;
}

#serviceContent .tech-icon {
    font-size: 3rem;
}

#serviceContent h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

#serviceContent p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.service-details-grid h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details-grid li {
    color: #7f8c8d;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-details-grid li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Appointment Modal Styles */
.appointment-modal {
    max-width: 800px;
}

.appointment-form {
    padding: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.form-buttons .btn {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Add to the existing CSS */
#trackerBtn {
    display: none;
}

/* NEW FEATURE: Exit-Intent Popup Styles */
.exit-intent-modal .modal-content {
    max-width: 500px;
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-top: 5px solid var(--accent);
}
.exit-intent-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
}
.exit-intent-content i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.exit-intent-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.exit-intent-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}
#exitIntentForm {
    max-width: 350px;
    margin: 0 auto;
}
#exitIntentForm .btn {
    width: 100%;
    padding: 15px;
}
.exit-intent-decline {
    display: block;
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.9rem;
    text-decoration: none;
}
.exit-intent-decline:hover {
    text-decoration: underline;
}
/* END Exit-Intent Popup Styles */