/* House Electric - Modern Professional CSS */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

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

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    /* Subtle background to make transparent logo stand out */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.logo:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)) 
            drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    /* Ensure logo is visible on all backgrounds */
    mix-blend-mode: multiply;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3))
            drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
    transform: scale(1.02);
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: var(--radius);
    padding: 0.25rem;
}

.logo-link:hover {
    transform: scale(1.02);
    background: rgba(37, 99, 235, 0.05);
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary);
}

.logo-text span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: var(--gray-50);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    color: var(--white);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #111; /* Fallback background */
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideShow 25s infinite;
    will-change: opacity, transform;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    3% {
        opacity: 1;
        transform: scale(1);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    23% {
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature i {
    font-size: 1.1rem;
    color: #fff;
    background: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero .btn {
    text-shadow: none;
    font-weight: 600;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gray-50);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: 2px solid #25D366 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none !important;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-whatsapp:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.stat {
    text-align: center;
}

/* Stat Number Animation */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    animation: statFadeIn 1s ease-in;
}

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

/* Stat Label Styling */
.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    display: block;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
    animation: statLabelFade 1.2s ease-in;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.image-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.image-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.image-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.image-card p {
    color: var(--gray-600);
    margin: 0;
}

/* Services */
.services-preview {
    padding: 80px 0;
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Make service icons visible on white backgrounds */
.service-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
    text-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

.service-card:nth-child(2) .service-icon i {
    color: var(--secondary);
    text-shadow: 0 2px 8px rgba(16,185,129,0.10);
}

.service-card:nth-child(3) .service-icon i {
    color: var(--danger);
    text-shadow: 0 2px 8px rgba(239,68,68,0.10);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.services-cta .btn {
    text-shadow: none;
    font-weight: 600;
}

.services-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.services-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gray-50);
}

.services-cta .btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: 2px solid #25D366 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none !important;
    text-decoration: none !important;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.services-cta .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: #128C7E !important;
    border-color: #128C7E !important;
    color: white !important;
    text-decoration: none !important;
}

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

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.contact-cta p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

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

.contact-cta .btn {
    text-shadow: none;
    font-weight: 600;
}

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

.contact-cta .btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Subscription Section */
.subscribe-section {
  background: var(--gray-50);
  padding: 4rem 0;
  margin: 0;
}

.subscribe-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-section h2 {
  color: var(--gray-900);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.subscribe-section p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.subscribe-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  background: white;
  color: var(--gray-800);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--gray-400);
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-subscribe {
  padding: 12px 30px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-subscribe:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#subscriptionMessage {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: none;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

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

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2))
            drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
    /* Ensure logo is visible on dark footer background */
    mix-blend-mode: screen;
}

.footer-logo h3 {
    color: var(--white);
    margin: 0;
}

.emergency-btn {
    background: var(--danger);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.emergency-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.services-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    color: var(--white);
}

.emergency-services {
    padding: 80px 0;
    background: var(--white);
}

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

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

.emergency-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Emergency Service Icon Colors */
.emergency-card:nth-child(1) .emergency-icon i {
    color: var(--primary-dark); /* Power Restoration: blue */
}

.emergency-card:nth-child(2) .emergency-icon i {
    color: var(--secondary); /* Switch & Socket Repair: green */
}

.emergency-card:nth-child(3) .emergency-icon i {
    color: var(--danger); /* Short Circuit Repair: red */
}

/* Optional: Add a subtle shadow for better visibility */
.emergency-icon i {
    font-size: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.emergency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--danger), #f87171);
}

.emergency-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.emergency-card:hover .emergency-icon {
    transform: scale(1.1);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--danger), #f87171);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.emergency-icon i {
    font-size: 3rem;
    color: var(--white);
}

.emergency-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.emergency-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.emergency-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-features span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.emergency-pricing h3 {
    margin-bottom: 2rem;
    color: var(--gray-900);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-card p {
    color: var(--gray-600);
    margin: 0;
}

/* AMC Services */
.amc-services {
    padding: 80px 0;
    background: var(--gray-50);
}

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

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

.amc-features {
    list-style: none;
    margin-top: 1.5rem;
}

.amc-features li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 2rem;
}

.amc-features li i {
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.25rem;
}

.plan-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-tab {
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    min-width: 140px;
}

.plan-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.plan-tab.active,
.plan-tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.plan-content {
    display: none;
}

.plan-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.plan-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-card h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 400;
}

.plan-card p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.plan-card ul {
    list-style: none;
    text-align: left;
}

.plan-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.plan-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* AC Services */
.ac-services {
    padding: 80px 0;
    background: var(--white);
}

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

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

.ac-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ac-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary), #34d399);
}

.ac-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.ac-card:hover .ac-icon {
    transform: scale(1.1);
}

.ac-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ac-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.ac-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.ac-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.ac-card ul {
    list-style: none;
}

.ac-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.ac-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ITC Services */
.itc-services {
    padding: 80px 0;
    background: var(--gray-50);
}

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

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

.itc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.itc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
}

.itc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.itc-card:hover .itc-icon {
    transform: scale(1.1);
}

.itc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.itc-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.itc-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.itc-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.itc-card ul {
    list-style: none;
}

.itc-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.itc-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Login Page Styles */
.login-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
}

.login-content {
    max-width: 1200px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.login-header p {
    font-size: 1.2rem;
    color: #718096;
}

.service-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #3182ce;
}

.selected-service h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3182ce;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #38a169;
    background: #f0fff4;
    padding: 8px 16px;
    border-radius: 25px;
}

.booking-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

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

.info-card,
.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-card h4,
.contact-card h4 {
    color: #2d3748;
    margin: 0;
}

.emergency-btn {
    background: #dc2626 !important;
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    display: flex;
    align-items: center;
    gap: 5px;
}

.emergency-btn:hover {
    background: #b91c1c !important;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.emergency-btn {
    background: #dc2626 !important;
    color: white !important;
    border-color: #dc2626 !important;
}

.emergency-btn:hover {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta-button {
    background: #dc2626 !important;
    color: white !important;
    border-color: #dc2626 !important;
}

.cta-button:hover {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Know More Button Styles */
.know-more-section {
    text-align: center;
    margin-top: 40px;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2);
}

.know-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
    background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
}

/* AMC Features Page Styles */
.features-hero {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.features-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.detailed-features {
    padding: 80px 0;
    background: #f8fafc;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-detail {
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #3182ce;
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-content h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-summary {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.feature-breakdown h4 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-breakdown ul {
    list-style: none;
    padding: 0;
}

.feature-breakdown li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.feature-breakdown li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.features-cta {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.features-cta h2 {
    color: #2d3748;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.features-cta p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #3182ce;
    border: 2px solid #3182ce;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

.btn-secondary:hover {
    background: #3182ce;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

/* AMC CTA Section in Services Page */
.amc-cta-section {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 15px;
}

.amc-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.amc-cta-section p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    color: var(--white);
}

.contact-info {
    padding: 80px 0;
}

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

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.contact-details {
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    text-decoration: none;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link .label {
    font-weight: 500;
    color: var(--gray-700);
}

.contact-link .value {
    color: var(--primary);
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
    font-style: italic;
}

.address {
    color: var(--gray-600);
    line-height: 1.6;
    font-style: normal;
}

.hours .hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.hour-item .day {
    font-weight: 500;
    color: var(--gray-700);
}

.hour-item .time {
    color: var(--primary);
    font-weight: 600;
}

/* Business Info & Map Section */
.business-info-section {
    padding: 60px 0;
    background: var(--white);
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.business-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    height: 100%;
}

.business-header h2 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars span {
    color: var(--gray-700);
    font-weight: 600;
    margin-left: 0.5rem;
}

.reviews-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.business-tag {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.business-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: var(--gray-50);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.2s ease;
}

.action-btn i {
    font-size: 1rem;
}

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

.action-btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.business-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.detail-item p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.5;
}

.map-link, .hours-link {
    display: block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.map-container {
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Image Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background: var(--primary);
    color: white;
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-slideshow {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gallery-slideshow {
        height: 300px;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

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

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reviewer h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--gray-900);
}

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

.review-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

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

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.reviews-cta .btn i {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
    
    .business-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .business-actions {
        grid-template-columns: 1fr;
    }
}

/* Contact Hero */
.contact-form-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.form-content h2 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.form-content p {
    margin-bottom: 2rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.form-features .feature i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn::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;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.submit-btn:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: none;
    box-shadow: var(--shadow-sm);
}

.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.error label {
    color: var(--danger);
}

.error-message {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Form WhatsApp Section */
.form-whatsapp {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.form-whatsapp p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.whatsapp-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.whatsapp-direct-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Emergency CTA */
.emergency-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--danger), #f87171);
    color: var(--white);
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    flex-direction: column;
}

.emergency-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 3rem;
    color: var(--white);
}

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

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

.emergency-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.emergency-call-btn {
    background: var(--white);
    color: var(--danger);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-size: 1.125rem;
}

.emergency-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.emergency-whatsapp-btn {
    background: #25d366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-size: 1.125rem;
    margin-top: 1rem;
}

.emergency-whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.response-time {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.area-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.area-card h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    text-align: center;
}

.area-card ul {
    list-style: none;
}

.area-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.area-card ul li:last-child {
    border-bottom: none;
}

.area-card ul li::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-content,
    .amc-content,
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-content.active {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid,
    .ac-grid,
    .itc-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid,
    .emergency-grid,
    .ac-grid,
    .itc-grid,
    .contact-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        gap: 1.5rem;
    }
    
    .emergency-actions {
        align-items: center;
    }
    
    .plan-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-tab {
        min-width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Mobile logo adjustments */
    .logo {
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .emergency-card,
    .feature-card,
    .ac-card,
    .itc-card,
    .contact-card,
    .area-card {
        padding: 1.5rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        padding: 0.75rem 1rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-link i {
        font-size: 1.75rem;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Logo Glow Effect for Dark Backgrounds */
.logo-glow {
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3))
            drop-shadow(0 0 20px rgba(37, 99, 235, 0.2));
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    background: #25D366 !important;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid #25D366 !important;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-link:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: white !important;
    background: #128c7e;
}

.whatsapp-link i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-size: 0.875rem;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 2px solid #25d366;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--white);
}
.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: 2px solid #25D366 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none !important;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   AMC PAGE SPECIFIC STYLES
   ======================================== */

/* Navigation Enhancements for AMC */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

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

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

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

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background-color: var(--gray-50);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    border: 1px solid var(--gray-200);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
}

.customer-login-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.customer-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
}

/* Trust Seals Bar */
.trust-seals {
    background: var(--gray-50);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.875rem;
}

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

/* AMC Toggle Section */
.amc-toggle {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.toggle-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.toggle-btn i {
    font-size: 1.25rem;
}

/* AMC Section Management */
.amc-section {
    display: none;
}

.amc-section.active {
    display: block;
}

/* Hero Sections */
.hero-section {
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.residential-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.commercial-hero {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.hero {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature i {
    font-size: 1.1rem;
    color: #fff;
    background: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 2px solid transparent;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gray-900);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    height: 6px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.plan-suitable {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

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

.plan-features i {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    min-width: 250px;
}

/* What's Included Section */
.included-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.included-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gray-900);
}

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

.included-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.included-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.included-item h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: 1.125rem;
}

.included-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

/* Booking Flow */
.booking-flow {
    padding: 80px 0;
    background: var(--white);
}

.booking-flow h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gray-900);
}

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

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -1rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.step h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.125rem;
}

.step p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

/* Commercial AMC Styles */
.commercial-plans {
    padding: 80px 0;
    background: var(--white);
}

.commercial-plans h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gray-900);
}

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

.commercial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commercial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gray-600), var(--gray-800));
}

.commercial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.commercial-card:hover::before {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.commercial-card:hover .plan-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: scale(1.1);
}

.plan-icon i {
    font-size: 2rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.commercial-card:hover .plan-icon i {
    color: var(--white);
}

.commercial-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: 1.25rem;
}

.commercial-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

/* Commercial Specific Sections */
.commercial-included {
    padding: 80px 0;
    background: var(--gray-50);
}

.commercial-included h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gray-900);
}

.commercial-booking {
    padding: 80px 0;
    background: var(--white);
}

.commercial-booking h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gray-900);
}

.commercial-cta {
    padding: 80px 0;
    background: var(--gray-50);
    text-align: center;
}

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

/* Mobile Responsive for AMC */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-items {
        gap: 1.5rem;
    }
    
    .toggle-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .toggle-btn {
        min-width: 250px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .step::after {
        content: '↓';
        top: auto;
        bottom: -1rem;
        right: 50%;
        transform: translateX(50%);
    }
    
    .step:last-child::after {
        display: none;
    }
    
    .commercial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn.large {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card,
    .commercial-card,
    .included-item {
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* AMC CTA Section in Services Page */
.amc-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
}

.amc-cta .cta-content {
    color: var(--white);
}

.amc-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.amc-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.amc-cta .btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.amc-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gray-50);
    color: var(--primary-dark);
}

.amc-cta .btn i {
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .amc-cta {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }
    
    .amc-cta h3 {
        font-size: 1.5rem;
    }
    
    .amc-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .amc-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}