/* Main Color Scheme */
:root {
  --color-red: #FF0000;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --accent-red: #FF3333;
  --gradient-primary: linear-gradient(135deg, var(--color-red) 0%, var(--color-black) 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideInDown 0.8s ease-out 0.1s forwards;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--text-dark);
    text-decoration: none;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-red);
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-white) 60%, var(--color-red) 60%, var(--color-red) 100%);
}

.hero-content {
    width: 50%;
    padding: 0 4rem;
    color: var(--text-dark);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-device {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 600px;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.8s forwards;
}

.device-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.device-placeholder .device-icon {
  font-size: 6rem;
  margin-bottom: 1rem;
  display: block;
}

.device-placeholder p {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* Buttons */
.btn-primary {
  background: var(--primary-red);
  color: var(--text-light);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Brand Logos Section */
.brand-logos {
  padding: 4rem 0;
  background: var(--primary-white);
}

.brand-logos .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 1rem;
}

.brand-item:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.brand-icon {
  font-size: 2.5rem;
  display: block;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Brand Images */
.brand-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-image {
    filter: brightness(1);
    transform: scale(1.1);
}

/* Hero Device Image */
.hero-device-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Device Selection Brand Images */
.device-brand-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.device-card:hover .device-brand-image {
    transform: scale(1.1);
}

.device-card.selected .device-brand-image {
    filter: brightness(1.2) saturate(1.2);
}

/* Brand Items */
/* Brand logos removed - using emoji-based brand items */

/* Responsive Design */
@media (max-width: 992px) {
  .hero::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .hero-content {
    width: 100%;
    text-align: center;
    padding: 2rem;
  }
  
  .hero-device {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 80%;
    margin: 2rem auto;
    display: block;
  }
  
  .device-placeholder {
    padding: 2rem 1rem;
  }
  
  .device-placeholder .device-icon {
    font-size: 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .brand-logos .container {
    gap: 1rem;
  }
  
  .brand-item {
    padding: 0.5rem;
  }
  
  .brand-icon {
    font-size: 2rem;
  }
  
  .brand-name {
    font-size: 0.8rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .device-placeholder .device-icon {
    font-size: 3rem;
  }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--color-black) 0%, #333 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-red);
}

.footer-brand p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    color: white;
    font-weight: 600;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
    color: white;
}

.instagram-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.instagram-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.instagram-link:hover .instagram-icon {
    transform: scale(1.2) rotate(5deg);
}

.instagram-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-link:hover .instagram-logo {
    filter: brightness(0) invert(1);
    transform: scale(1.1) rotate(5deg);
}

.instagram-fallback {
    font-size: 1.2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-red);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-red);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .instagram-logo {
        width: 20px;
        height: 20px;
    }
}

/* Enhanced Navigation Styles */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Enhanced Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 48px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons a:not(.btn-primary) {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-buttons a:not(.btn-primary):hover {
    opacity: 1;
}

.hero-buttons .mx-2 {
    color: var(--text-light);
    opacity: 0.4;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-links .btn-primary {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-device {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-black) 0%, #333 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Grid Layouts */
.services-grid,
.devices-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Cards */
.service-card,
.device-card,
.process-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.device-card:hover,
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3,
.device-card h3,
.process-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

/* Location Page */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

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

.location-info h3 {
    margin: 2rem 0 1rem;
}

.location-info ul {
    list-style: none;
    padding: 0;
}

.location-info li {
    margin-bottom: 0.5rem;
}

.map-placeholder {
    background: #f5f5f5;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Quote Form */
.quote-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 5rem 1rem 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .quote-form {
        margin: 2rem auto;
        padding: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-black);
    font-size: 2.5rem;
    font-weight: 700;
}

.services-section .service-card a.btn-primary {
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--primary-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }
}

/* Service Icons */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

/* Footer Enhancements */
.footer-brand .contact-info {
    margin: 1rem 0;
}

.footer-brand .contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.social-icon {
    font-size: 1.2rem;
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--color-black) 0%, #333 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, var(--color-red) 0%, #cc0000 100%);
    padding: 2rem 0;
}

.emergency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.emergency-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.emergency-content .btn-primary {
    background: white;
    color: var(--color-red);
    border: none;
    font-weight: 600;
}

.emergency-content .btn-primary:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* Contact Methods */
.contact-methods {
    padding: 4rem 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.contact-card.primary {
    border-color: var(--color-red);
}

.contact-card.secondary {
    border-color: var(--color-black);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.response-time {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    font-style: italic;
}

/* Business Info */
.business-info {
    position: sticky;
    top: 2rem;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-black);
}

.info-content p {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--color-black);
}

.info-content span {
    font-size: 0.9rem;
    color: #666;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hour-item span:first-child {
    font-weight: 500;
    color: var(--color-black);
}

.hour-item span:last-child {
    color: #666;
}

.emergency-notice {
    background: linear-gradient(135deg, var(--color-red) 0%, #cc0000 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.notice-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

/* Email Categories */
.email-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.email-categories h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.email-categories p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.email-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.email-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.email-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.email-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.email-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.email-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.email-link {
    display: inline-block;
    color: var(--color-red);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-red);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: var(--color-red);
    color: white;
    transform: translateY(-2px);
}

/* Response Times */
.response-times {
    padding: 4rem 0;
    background: var(--color-white);
}

.response-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.response-card h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.response-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.response-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.response-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.response-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.response-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Back Section */
.back-section {
    padding: 2rem 0;
    background: #f8f9fa;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .email-grid {
        grid-template-columns: 1fr;
    }
    
    .response-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-info {
        position: static;
    }
}

@media (max-width: 480px) {
    .response-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-card {
        padding: 1.5rem;
    }
    
    .contact-card,
    .info-card,
    .response-card {
        padding: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.animate-slide-in-down {
    animation: slideInDown 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Hero Section Animations */
.hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-device {
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.8s forwards;
}

.device-placeholder {
    animation: float 3s ease-in-out infinite 1s;
}

/* Brand Logos Animation */
.brand-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.brand-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Service Cards Animation */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Contact Section Animation */
.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Button Hover Animations */
.btn-primary, .btn-secondary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Form Animation */
.form-group {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.form-group.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-group select, .form-group input {
    transition: all 0.3s ease;
}

.form-group select:focus, .form-group input:focus {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
}

/* Navbar Animation */
.navbar {
    opacity: 0;
    animation: slideInDown 0.8s ease-out 0.1s forwards;
}

.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--color-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive Animation Adjustments */
@media (max-width: 768px) {
    .animate-fade-in-up,
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-scale-in {
        animation-duration: 0.6s;
    }
    
    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-scale {
        transition-duration: 0.6s;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .hero-device {
        animation-duration: 0.8s;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-pulse,
    .animate-float,
    .device-placeholder {
        animation: none !important;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-links .btn-primary {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-device {
        width: 100%;
        max-width: 300px;
    }
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.location-section p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

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

.location-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.location-header i {
    font-size: 1.5rem;
    color: var(--color-red);
}

.location-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-item strong {
    color: var(--text-dark);
    min-width: 80px;
}

.detail-item p {
    margin: 0;
    color: #6c757d;
}

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

.detail-item a:hover {
    color: var(--accent-red);
}

.detail-item i {
    color: var(--color-red);
    width: 20px;
    text-align: center;
}

.service-hours {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.service-hours h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hours-column {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-column strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.hours-time {
    color: var(--color-red);
    font-weight: 600;
    font-size: 1rem;
}

.mobile-service-notice {
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    border-left: 4px solid #2196f3;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notice-content i {
    font-size: 1.5rem;
    color: #2196f3;
}

.notice-content strong {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.notice-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-actions .btn-primary {
    background: var(--color-red);
    border: 2px solid var(--color-red);
    color: white;
}

.location-actions .btn-primary:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.location-actions .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--color-red);
    color: var(--color-red);
}

.location-actions .btn-outline-primary:hover {
    background: var(--color-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

.service-area-map {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-info i {
    font-size: 1.5rem;
    color: var(--color-red);
}

.map-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.map-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .location-section {
        padding: 3rem 0;
    }
    
    .location-section h2 {
        font-size: 2rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        text-align: center;
    }
    
    .service-area-map {
        height: 300px;
    }
    
    .map-overlay {
        padding: 1.5rem 1rem 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .status-indicator {
        align-self: flex-end;
    }
}

/* ZIP Code Checker Section */
.zip-checker-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.zip-checker-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.zip-checker-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.zip-checker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.zip-form-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.zip-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.zip-form-header i {
    font-size: 1.5rem;
    color: var(--color-red);
}

.zip-form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.zip-form {
    margin-bottom: 2rem;
}

.zip-form .form-group {
    margin-bottom: 1.5rem;
}

.zip-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.zip-form .input-group {
    display: flex;
    gap: 0;
}

.zip-form .form-control {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.zip-form .form-control:focus {
    border-color: var(--color-red);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.1);
}

.zip-form .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    border: 2px solid var(--color-red);
    background: var(--color-red);
    color: white;
    transition: all 0.3s ease;
}

.zip-form .btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-1px);
}

.zip-result {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.zip-result.alert-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.zip-result.alert-warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.zip-result.alert-info {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

.zip-result.alert-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.zip-result .result-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-info {
    margin-bottom: 2rem;
}

.service-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.service-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.service-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-actions .btn-primary {
    background: var(--color-red);
    border: 2px solid var(--color-red);
    color: white;
}

.contact-actions .btn-primary:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.contact-actions .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--color-red);
    color: var(--color-red);
}

.contact-actions .btn-outline-primary:hover {
    background: var(--color-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.zip-checker-map .map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

.zip-checker-map .service-area-map {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.zip-checker-map .map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.coverage-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.full-coverage {
    background: #28a745;
}

.legend-dot.partial-coverage {
    background: #ffc107;
}

.service-area-info {
    margin-top: 3rem;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.info-icon {
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 2rem;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: #6c757d;
    margin: 0;
}

/* Mobile Responsive for ZIP Checker */
@media (max-width: 768px) {
    .zip-checker-section {
        padding: 3rem 0;
    }
    
    .zip-checker-title {
        font-size: 2rem;
    }
    
    .zip-checker-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zip-form-card {
        padding: 1.5rem;
    }
    
    .zip-form .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .zip-form .form-control {
        border-radius: 8px;
    }
    
    .zip-form .btn {
        border-radius: 8px;
        width: 100%;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-actions .btn {
        text-align: center;
        width: 100%;
    }
    
    .zip-checker-map .service-area-map {
        height: 300px;
    }
    
    .zip-checker-map .map-overlay {
        padding: 1.5rem 1rem 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .coverage-legend {
        align-self: flex-end;
        flex-direction: row;
        gap: 1rem;
    }
}

/* Admin Brand Icons */
.admin-brand-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
}

.nav-link .admin-brand-icon {
    filter: brightness(0.7);
}

.nav-link.active .admin-brand-icon {
    filter: brightness(1);
}

/* Buy Page Specific Styles */
.buy-hero {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-white) 60%, var(--color-red) 60%, var(--color-red) 100%);
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    margin-bottom: 1.5rem;
}

.category-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-range {
    display: block;
    color: var(--color-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Devices Section */
.devices-section {
    padding: 4rem 0;
}

.devices-section.alt-bg {
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 3rem;
}

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

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.device-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.device-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.device-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.device-badge.new {
    background: #28a745;
}

.device-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

.device-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.device-specs {
    margin-bottom: 2rem;
}

.device-specs p {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.95rem;
}

.device-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.price-main {
    display: block;
    color: var(--color-red);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-old {
    color: #999;
    font-size: 1.2rem;
    text-decoration: line-through;
    margin-right: 1rem;
}

.savings {
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
    background: #e8f5e8;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

.device-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.device-actions .btn-primary {
    flex: 1;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

.device-actions .btn-secondary {
    background: transparent;
    color: var(--color-red);
    border: 2px solid var(--color-red);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.device-actions .btn-secondary:hover {
    background: var(--color-red);
    color: white;
}

/* Accessories Section */
.accessories-section {
    padding: 4rem 0;
}

.accessory-filter {
    text-align: center;
    margin: 2rem 0 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
    padding: 0.7rem 1.5rem;
    margin: 0 0.5rem 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
    color: white;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.accessory-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.accessory-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-red);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.accessory-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

.accessory-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.accessory-details {
    margin-bottom: 1.5rem;
}

.accessory-details p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    padding-left: 0.5rem;
}

.accessory-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.accessory-pricing .price-main {
    color: var(--color-red);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.price-note,
.accessory-pricing .price-range {
    color: #999;
    font-size: 0.85rem;
}

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

.accessory-actions .btn-primary {
    padding: 0.7rem 2rem;
    font-weight: 600;
    width: 100%;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.guarantee-section h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guarantee-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--color-red);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-actions .btn-primary:hover {
    background: #f8f9fa;
}

.cta-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--color-red);
}

.business-hours {
    opacity: 0.8;
    margin-top: 1.5rem;
}

.business-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Quick View Modal */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-grid,
    .devices-grid,
    .accessories-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .device-card,
    .accessory-card {
        padding: 1.5rem;
    }
    
    .device-actions {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .device-pricing {
        padding: 1rem;
    }
    
    .price-main {
        font-size: 1.8rem;
    }
    
    .filter-btn {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .categories-section,
    .devices-section,
    .accessories-section,
    .guarantee-section {
        padding: 2rem 0;
    }
    
    .device-card,
    .accessory-card,
    .category-card {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Animation Enhancements for Buy Page */
.category-card.animate,
.device-card.animate,
.accessory-card.animate,
.guarantee-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section Accessories */
.accessory-hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

/* Category Emoji Icons */
.category-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Accessory Emoji Icons */
.accessory-emoji-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #ff3333);
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.accessory-card:hover .accessory-emoji-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

/* Accessory Cards */
.accessory-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.accessory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff3333);
}

.accessory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.accessory-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0000;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.accessory-badge.new {
    background: #28a745;
}

.accessory-details {
    margin: 1.5rem 0;
    text-align: left;
}

.accessory-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.accessory-pricing {
    margin: 1.5rem 0;
}

.accessory-pricing .price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0000;
}

.accessory-pricing .price-range {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.accessory-pricing .price-note {
    display: block;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 0.25rem;
}

.accessory-actions {
    margin-top: 1.5rem;
}

.accessory-actions .btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.accessory-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    color: white;
}

/* Accessory Filter */
.accessory-filter {
    text-align: center;
    margin: 3rem 0;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem 0.5rem 0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* Accessories Grid */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .accessories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .accessory-emoji-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .accessory-hero-icon {
        font-size: 3rem;
    }
    
    .category-emoji {
        font-size: 2.5rem;
    }
}

/* Animation for filtered items */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.accessory-card.animate {
    animation: fadeInScale 0.3s ease;
}

/* Repair Page Styles */
.repair-hero {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-white) 60%, var(--color-red) 60%, var(--color-red) 100%);
    color: var(--text-dark);
}

.repair-hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    color: #ff0000;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #ff0000;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.service-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card ul li {
    color: #666;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: white;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    gap: 1rem;
}

.tab-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.pricing-table {
    display: none;
    margin-top: 2rem;
}

.pricing-table.active {
    display: block;
}

.table-header {
    text-align: center;
    margin-bottom: 2rem;
}

.table-header h3 {
    color: #000;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.table-header p {
    color: #666;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.repair-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.repair-table thead {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.repair-table th {
    padding: 1rem 0.75rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #cc0000;
    white-space: nowrap;
}

.repair-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.repair-table tbody tr:hover {
    background: #f8f9fa;
}

.repair-table tbody tr:nth-child(even) {
    background: #fdfdfd;
}

.repair-table tbody tr:nth-child(even):hover {
    background: #f1f3f4;
}

.model-name {
    font-weight: 600;
    color: #000;
    text-align: left !important;
    background: #f8f9fa !important;
    border-right: 2px solid #e9ecef;
}

.refurb-row .model-name {
    background: #fff3cd !important;
    color: #856404;
}

.refurb-row {
    background: #fff3cd;
}

.refurb-row:hover {
    background: #ffeaa7 !important;
}

/* Legend Section */
.legend-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.legend-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff0000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.legend-item strong {
    color: #ff0000;
    font-weight: 700;
}

/* Warranty Section */
.warranty-section {
    padding: 4rem 0;
    background: #000;
    color: white;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.warranty-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.warranty-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.warranty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.warranty-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warranty-card p {
    color: #ccc;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: white;
    color: #ff0000;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary:hover {
    background: #000;
    color: white;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .repair-table {
        font-size: 0.8rem;
    }
    
    .repair-table th,
    .repair-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .warranty-grid {
        grid-template-columns: 1fr;
    }
    
    .legend-grid {
        grid-template-columns: 1fr;
    }
}

/* Table Animation */
@keyframes fadeInTable {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-table.active {
    animation: fadeInTable 0.3s ease;
}

/* Quote Page Styles */
.quote-hero {
    background: linear-gradient(135deg, rgba(231, 12, 12, 0.9), rgba(0, 0, 0, 0.9));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.quote-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quote-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.3rem;
    color: #ffd700;
}

/* Quote Calculator */
.quote-calculator {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.calculator-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e70c0c;
}

.form-header h2 {
    color: #e70c0c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

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

.form-step h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Brand Selection */
.brand-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.brand-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-option:hover {
    border-color: #e70c0c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 12, 12, 0.2);
}

.brand-option.selected {
    border-color: #e70c0c;
    background: linear-gradient(135deg, #e70c0c, #a0101a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 12, 12, 0.3);
}

.brand-option img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-option.selected img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-option span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Model Selection */
.model-selection select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.model-selection select:focus {
    outline: none;
    border-color: #e70c0c;
    box-shadow: 0 0 0 3px rgba(231, 12, 12, 0.1);
}

/* Repair Selection */
.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.repair-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.repair-option:hover {
    border-color: #e70c0c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 12, 12, 0.2);
}

.repair-option.selected {
    border-color: #e70c0c;
    background: linear-gradient(135deg, #e70c0c, #a0101a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 12, 12, 0.3);
}

.repair-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.repair-option span {
    font-weight: 600;
    font-size: 1rem;
}

/* Parts Selection */
.parts-grid {
    display: grid;
    gap: 1rem;
}

.parts-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.parts-option:hover {
    border-color: #e70c0c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 12, 12, 0.2);
}

.parts-option.selected {
    border-color: #e70c0c;
    background: linear-gradient(135deg, #e70c0c, #a0101a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 12, 12, 0.3);
}

.parts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.parts-header h4 {
    margin: 0;
    font-weight: 600;
}

.parts-header .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e70c0c;
}

.parts-option.selected .parts-header .price {
    color: #ffd700;
}

.parts-option p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.form-navigation button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #dc1414, #a0101a);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a0101a, #dc1414);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 20, 20, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Quote Results */
.quote-results {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.results-header h3 {
    color: #e70c0c;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.quote-summary {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.summary-item .label {
    font-weight: 600;
    color: #333;
}

.summary-item .value {
    color: #666;
    font-weight: 500;
}

/* Price Display */
.price-display {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid #e70c0c;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: #e70c0c;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e70c0c;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Quote Actions */
.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Warranty Info */
.warranty-info {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #28a745;
}

.warranty-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.warranty-badge i {
    font-size: 2rem;
    color: #28a745;
}

.warranty-badge strong {
    color: #155724;
    font-size: 1.1rem;
}

.warranty-badge p {
    margin: 0.2rem 0 0 0;
    color: #155724;
    opacity: 0.8;
}

/* Features Section */
.quote-features-section {
    padding: 4rem 0;
    background: white;
}

.quote-features-section h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #e70c0c;
    box-shadow: 0 8px 25px rgba(231, 12, 12, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #e70c0c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-results {
        position: static;
    }
    
    .quote-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .brand-selection {
        grid-template-columns: 1fr;
    }
    
    .repair-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-header h1 {
        font-size: 2.2rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .quote-hero {
        padding: 2rem 0;
    }
    
    .calculator-form,
    .quote-results {
        padding: 1.5rem;
    }
    
    .brand-option {
        padding: 1.5rem 1rem;
    }
    
    .brand-option img {
        width: 50px;
        height: 50px;
    }
    
    .price-display {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.8rem;
    }
}