/* CSS Custom Properties for Easy Theme Customization */
:root {
  /* Primary Colors - Automotive Red/Orange Theme */
  --primary-color: #dc2626;       /* Bold automotive red */
  --primary-dark: #b91c1c;        /* Darker red for hover states */
  --primary-light: #ef4444;       /* Lighter red for accents */
  
  /* Secondary Colors - Orange/Gold for premium service */
  --secondary-color: #ea580c;      /* Automotive orange for CTAs */
  --secondary-dark: #c2410c;       /* Darker orange for hover */
  --secondary-light: #fb923c;      /* Lighter orange for highlights */
  
  /* Accent Colors */
  --accent-red: #dc2626;           /* Red for special offers and urgency */
  --accent-green: #16a34a;         /* Green for success/WhatsApp */
  --accent-purple: #7c3aed;        /* Purple for premium features */
  --accent-yellow: #eab308;        /* Yellow for warnings and highlights */
  
  /* Neutral Colors */
  --dark-color: #0f172a;           /* Very dark slate for text */
  --dark-light: #334155;           /* Medium slate */
  --gray-color: #64748b;           /* Slate gray for secondary text */
  --light-gray: #f8fafc;           /* Very light slate for backgrounds */
  --white: #ffffff;                /* Pure white */
  
  /* Success Colors */
  --success-color: #059669;        /* Emerald green for success states */
  --warning-color: --accent-yellow; /* Yellow for warnings */
  --danger-color: --accent-red;     /* Red for errors */
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Font Sizes */
  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg: 1.125rem;    /* 18px */
  --fs-xl: 1.25rem;     /* 20px */
  --fs-2xl: 1.5rem;     /* 24px */
  --fs-3xl: 1.875rem;   /* 30px */
  --fs-4xl: 2.25rem;    /* 36px */
  --fs-5xl: 3rem;       /* 48px */
  
  /* Spacing */
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 1.5rem;   /* 24px */
  --spacing-lg: 2rem;     /* 32px */
  --spacing-xl: 3rem;     /* 48px */
  --spacing-2xl: 4rem;    /* 64px */
  --spacing-3xl: 6rem;    /* 96px */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 0.375rem;  /* 6px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white);
  font-size: var(--fs-base);
  position: relative;
}

/* Automotive Background Pattern */
.automotive-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.02;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="currentColor"><circle cx="20" cy="50" r="3"/><circle cx="80" cy="50" r="3"/><rect x="25" y="45" width="50" height="10" rx="2"/><rect x="15" y="35" width="70" height="5" rx="2"/><rect x="30" y="60" width="40" height="3" rx="1"/></g></svg>');
  background-size: 120px 120px;
  background-repeat: repeat;
  color: var(--primary-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--gray-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--light-gray); }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--fs-base);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

.btn-offer {
  background: linear-gradient(135deg, var(--accent-red), #f97316);
  color: var(--white);
  font-weight: 600;
  animation: pulse 2s infinite;
}

.btn-offer:hover {
  background: linear-gradient(135deg, #b91c1c, var(--accent-red));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

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

.install-app {
  background: linear-gradient(135deg, #dc2626, #ea580c) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.install-app:hover {
  background: linear-gradient(135deg, #b91c1c, #d97706) !important;
  transform: translateY(-2px) !important;
}

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

/* Section Styles */
section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-size: var(--fs-3xl);
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-content {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--dark-color);
  line-height: 1.2;
}

.logo-tagline {
  font-size: var(--fs-xs);
  color: var(--primary-color);
  font-weight: 500;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color);
  transition: var(--transition-fast);
  position: relative;
  padding: var(--spacing-xs) 0;
}

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

.nav-link.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-weight: 600;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

.nav-link.highlight:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  color: var(--white);
  transform: scale(1.05);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 5px rgba(220, 38, 38, 0.3); }
  100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.6), 0 0 25px rgba(234, 88, 12, 0.4); }
}

.nav-link.enquiry {
  background-color: #25d366;
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.nav-link.enquiry:hover {
  background-color: #128c7e;
  color: var(--white);
}

.nav-link.locate {
  background-color: var(--accent-red);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.nav-link.locate:hover {
  background-color: #b91c1c;
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + var(--spacing-3xl));
  padding-bottom: var(--spacing-3xl);
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Automotive-themed abstract shapes */
    radial-gradient(circle at 15% 25%, rgba(220, 38, 38, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 85% 75%, rgba(234, 88, 12, 0.12) 0%, transparent 30%),
    radial-gradient(ellipse 200px 100px at 70% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 150px 80px at 30% 80%, rgba(234, 88, 12, 0.06) 0%, transparent 50%),
    /* Tire-like circular patterns */
    radial-gradient(circle 80px at 20% 60%, transparent 40%, rgba(220, 38, 38, 0.05) 41%, rgba(220, 38, 38, 0.05) 60%, transparent 61%),
    radial-gradient(circle 60px at 80% 40%, transparent 35%, rgba(234, 88, 12, 0.04) 36%, rgba(234, 88, 12, 0.04) 55%, transparent 56%),
    /* Abstract geometric automotive shapes */
    linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.03) 35%, rgba(220, 38, 38, 0.03) 65%, transparent 70%),
    linear-gradient(-45deg, transparent 40%, rgba(234, 88, 12, 0.02) 45%, rgba(234, 88, 12, 0.02) 55%, transparent 60%);
  background-size: 
    400px 300px, 350px 280px, 300px 150px, 250px 120px,
    160px 160px, 120px 120px, 100% 100%, 100% 100%;
  background-position: 
    0% 0%, 100% 100%, 70% 20%, 30% 80%,
    20% 60%, 80% 40%, 0% 0%, 0% 0%;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: heroPatternFloat 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: 
    radial-gradient(circle, transparent 30%, rgba(220, 38, 38, 0.06) 31%, rgba(220, 38, 38, 0.06) 40%, transparent 41%),
    radial-gradient(circle, transparent 50%, rgba(234, 88, 12, 0.04) 51%, rgba(234, 88, 12, 0.04) 60%, transparent 61%);
  border-radius: 50%;
  opacity: 0.7;
  animation: heroWheelRotate 30s linear infinite;
  pointer-events: none;
}

/* Automotive-themed animations */
@keyframes heroPatternFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-3px);
  }
}

@keyframes heroWheelRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Location Map Section */
.location-map {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.map-info .section-title {
  color: var(--dark-color);
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.location-details {
  margin-bottom: var(--spacing-xl);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.location-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.location-item i {
  color: var(--primary-color);
  font-size: var(--fs-xl);
  margin-top: var(--spacing-xs);
  flex-shrink: 0;
}

.location-item div {
  color: var(--gray-color);
  line-height: 1.6;
}

.location-item strong {
  color: var(--dark-color);
  font-weight: 600;
}

.location-item a {
  color: var(--primary-color);
  font-weight: 500;
}

.location-item a:hover {
  color: var(--primary-dark);
}

.map-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.map-embed {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* Stats Section */

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.hero-title {
  font-size: var(--fs-5xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-color);
}

.hero-tagline {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-secondary);
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-xl);
  color: var(--gray-color);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.stat {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-secondary);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--primary-color);
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Services Section */
.services {
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: var(--fs-2xl);
  margin-bottom: var(--spacing-md);
}

.service-card h3 {
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--gray-color);
  font-size: var(--fs-sm);
  margin-bottom: var(--spacing-xs);
}

.service-features li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.about-description {
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-xl);
}

.about-features {
  margin-bottom: var(--spacing-xl);
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.feature i {
  color: var(--success-color);
  font-size: var(--fs-lg);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  cursor: pointer;
}

.about-image:hover .about-overlay {
  opacity: 1;
}

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

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--white);
  text-align: center;
}

.overlay-content i {
  font-size: var(--fs-4xl);
}

/* Brands Section */
.brands {
  background-color: var(--light-gray);
  padding: var(--spacing-2xl) 0;
}

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

.brands-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-overlay i {
  color: var(--white);
  font-size: var(--fs-3xl);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Offers Section */
.offers {
  background-color: var(--light-gray);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
}

.offer-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

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

.offer-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
}

.offer-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-xl);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.offer-badge.premium {
  background-color: var(--accent-purple);
}

.offer-header h3 {
  color: var(--white);
  margin: 0;
  font-size: var(--fs-xl);
}

.offer-content {
  padding: var(--spacing-xl);
}

.offer-list {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) 0;
  color: var(--gray-color);
}

.offer-list i {
  color: var(--success-color);
  font-size: var(--fs-sm);
}

.offer-price {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.original-price {
  font-size: var(--fs-lg);
  color: var(--gray-color);
  text-decoration: line-through;
}

.offer-price-main {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--accent-red);
  font-family: var(--font-secondary);
}

.offer-features {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.feature-tag {
  background-color: var(--light-gray);
  color: var(--dark-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--white);
  padding: var(--spacing-3xl) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.review-card {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition-fast);
}

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

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.reviewer-info h4 {
  color: var(--dark-color);
  margin: 0 0 var(--spacing-xs) 0;
  font-size: var(--fs-base);
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars i {
  color: var(--secondary-color);
  font-size: var(--fs-sm);
}

.review-time {
  color: var(--gray-color);
  font-size: var(--fs-xs);
  font-style: italic;
}

.review-text {
  color: var(--gray-color);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  font-size: var(--fs-sm);
}

.reviews-cta {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--light-gray);
}

.reviews-summary {
  color: var(--dark-color);
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-lg);
}

.reviews-summary strong {
  color: var(--primary-color);
}

/* Loyalty Section */
.loyalty {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.loyalty-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.loyalty .section-title {
  color: var(--white);
}

.loyalty p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-xl);
}

.loyalty-benefits {
  margin-bottom: var(--spacing-xl);
}

.benefit {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
}

.benefit i {
  color: var(--secondary-color);
  font-size: var(--fs-lg);
}

.loyalty-cards {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.loyalty-card {
  width: 200px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-normal);
}

.loyalty-card:hover {
  transform: translateY(-5px) rotate(2deg);
}

.loyalty-card.back {
  transform: rotate(-5deg);
}

.loyalty-card.back:hover {
  transform: translateY(-5px) rotate(2deg);
}

/* Special Offer Section */
.special-offer {
  background: linear-gradient(135deg, var(--accent-red), #f97316, var(--secondary-color));
  color: var(--white);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.special-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  background-size: 30px 30px;
}

.offer-banner {
  position: relative;
  z-index: 1;
}

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

.offer-header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.offer-badge-large {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: var(--accent-red);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-md);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--fs-base);
  animation: pulse 2s infinite;
  box-shadow: var(--shadow-lg);
}

.offer-price-display {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
}

.original-price-large {
  font-size: var(--fs-2xl);
  text-decoration: line-through;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.8);
}

.offer-price-large {
  font-size: var(--fs-5xl);
  font-weight: 900;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-secondary);
}

.savings-text {
  background-color: #16a34a;
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
}

.offer-title-main {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.offer-subtitle-main {
  font-size: var(--fs-lg);
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.offer-features-grid {
  margin-bottom: var(--spacing-xl);
}

.feature-row {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.feature-item-compact {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.15);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  font-size: var(--fs-sm);
  min-width: 140px;
  justify-content: center;
}

.feature-item-compact i {
  color: #ffd700;
  font-size: var(--fs-base);
}

.offer-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn-offer-main {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-lg);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  animation: pulse 2s infinite;
  box-shadow: var(--shadow-xl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-offer-main:hover {
  background: linear-gradient(135deg, #15803d, #16a34a);
  transform: translateY(-2px);
}

.offer-urgency {
  color: #ffd700;
  font-weight: 600;
  font-size: var(--fs-sm);
  margin: 0;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}

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

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
  color: var(--white);
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  border-radius: 50%;
  font-size: var(--fs-xl);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: var(--fs-2xl);
  font-weight: 700;
  font-family: var(--font-secondary);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: var(--fs-sm);
  opacity: 0.95;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.contact {
  background-color: var(--light-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--dark-color);
  margin-bottom: var(--spacing-xs);
  font-size: var(--fs-lg);
}

.contact-details p {
  color: var(--gray-color);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

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

.form input,
.form select,
.form textarea {
  padding: var(--spacing-sm);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  transition: var(--transition-fast);
  background-color: var(--white);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

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

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: var(--fs-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-contact i {
  color: var(--primary-light);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--primary-light);
  font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: var(--fs-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  :root {
    --fs-5xl: 2.5rem;    /* Smaller hero title on mobile */
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --spacing-3xl: 4rem; /* Reduce section padding on mobile */
    --spacing-2xl: 3rem;
    --spacing-xl: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--spacing-xl);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
  }
  
  .stat {
    min-width: 120px;
    padding: var(--spacing-sm);
  }
  
  .stat-number {
    font-size: var(--fs-xl);
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .loyalty-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .loyalty-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero-title {
    font-size: var(--fs-4xl);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: var(--spacing-lg);
  }
  
  .brands-container {
    padding: 0 var(--spacing-sm);
  }
  
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
  
  .special-offer {
    padding: var(--spacing-xl) 0;
  }
  
  .offer-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .offer-title {
    font-size: var(--fs-2xl);
  }
  
  .offer-subtitle {
    font-size: var(--fs-lg);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .offer-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .price-circle {
    width: 150px;
    height: 150px;
  }
  
  .price {
    font-size: var(--fs-3xl);
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .offer-card {
    min-width: unset;
  }
  
  .feature-tag {
    font-size: var(--fs-xs);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: var(--fs-lg);
  }
  
  .map-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .map-info .section-title {
    text-align: center;
  }
  
  .map-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .map-embed {
    height: 300px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top {
    display: none;
  }
  
  .hero {
    padding-top: var(--spacing-xl);
  }
  
  * {
    box-shadow: none !important;
  }
}

/* Deepavali Special Styles */
.deepavali-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), #d97706) !important;
  animation: deepavali-glow 2s ease-in-out infinite alternate;
}

@keyframes deepavali-glow {
  0% { box-shadow: 0 0 10px rgba(220, 38, 38, 0.5); }
  100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 30px rgba(234, 88, 12, 0.6); }
}

.deepavali-greeting {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  text-align: center;
  margin: var(--spacing-md) 0;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: gentle-pulse 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

/* Hero Brands Simple */
.hero-brands-simple {
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
}

.brands-text {
  font-size: var(--fs-lg);
  color: var(--dark-color);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.brand-highlight {
  color: var(--primary-color);
  font-weight: 700;
  padding: 2px 6px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(234, 88, 12, 0.1));
  border-radius: 4px;
  transition: var(--transition-fast);
}

.brand-highlight:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(234, 88, 12, 0.2));
  transform: scale(1.05);
}

/* Enhanced Brands Section */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

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

.brand-icon {
  font-size: var(--fs-4xl);
  margin-bottom: var(--spacing-md);
  display: block;
}

.brand-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.brand-card p {
  color: var(--gray-color);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.brands-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: var(--light-gray);
  border-radius: var(--radius-lg);
}

.brands-note {
  font-size: var(--fs-lg);
  color: var(--dark-color);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

/* Contact Form Enhancements */
.contact-alternatives {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--light-gray);
  text-align: center;
}

.alt-title {
  font-size: var(--fs-lg);
  color: var(--dark-color);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.alt-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: var(--accent-green);
  color: var(--white);
  border: none;
}

.btn-whatsapp:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.btn-call {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
}

.btn-call:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-offer-call {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  margin-left: var(--spacing-md);
}

.btn-offer-call:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

/* Responsive Adjustments for New Elements */
@media (max-width: 768px) {
  .brands-list {
    justify-content: center;
  }
  
  .brand-tag {
    font-size: var(--fs-xs);
    padding: 4px 8px;
  }
  
  .brands-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .alt-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .alt-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .offer-cta-section .btn {
    margin: var(--spacing-xs) 0;
    width: 100%;
  }
  
  .btn-offer-call {
    margin-left: 0;
  }
}

/* Deepavali Fireworks Animations */
.fireworks-left,
.fireworks-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  overflow: visible;
  z-index: 10;
}

.fireworks-left {
  left: -20px;
}

.fireworks-right {
  right: -20px;
}

.firework {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #ffeb3b, #ff9800);
  border-radius: 50%;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  box-shadow: 0 0 10px currentColor;
}

.firework::before,
.firework::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.firework-1 {
  background: radial-gradient(circle, #ff6b35, #ff3d00);
  left: 20px;
  top: 80%;
  animation: firework-burst-1 2s infinite ease-out;
  animation-delay: 0s;
}

.firework-1::before {
  background: #ffeb3b;
  animation: spark-1 3s infinite ease-out;
}

.firework-1::after {
  background: #ff9800;
  animation: spark-2 3s infinite ease-out;
}

.firework-2 {
  background: radial-gradient(circle, #e91e63, #c2185b);
  left: 60px;
  top: 70%;
  animation: firework-burst-2 2s infinite ease-out;
  animation-delay: 0.7s;
}

.firework-2::before {
  background: radial-gradient(circle, #ffeb3b, #ffc107);
  animation: spark-3 2s infinite ease-out;
  animation-delay: 0.7s;
}

.firework-2::after {
  background: radial-gradient(circle, #ff5722, #d84315);
  animation: spark-4 2s infinite ease-out;
  animation-delay: 0.7s;
}

.firework-3 {
  background: radial-gradient(circle, #9c27b0, #7b1fa2);
  left: 40px;
  top: 60%;
  animation: firework-burst-3 2s infinite ease-out;
  animation-delay: 1.4s;
}

.firework-3::before {
  background: #ffeb3b;
  animation: spark-5 3s infinite ease-out;
  animation-delay: 2s;
}

.firework-3::after {
  background: #03a9f4;
  animation: spark-6 3s infinite ease-out;
  animation-delay: 2s;
}

.firework-4 {
  background: radial-gradient(circle, #4caf50, #388e3c);
  right: 30px;
  top: 75%;
  animation: firework-burst-4 2s infinite ease-out;
  animation-delay: 0.3s;
}

.firework-4::before {
  background: radial-gradient(circle, #ffeb3b, #ffc107);
  animation: spark-7 2s infinite ease-out;
  animation-delay: 0.3s;
}

.firework-4::after {
  background: radial-gradient(circle, #ff9800, #f57c00);
  animation: spark-8 2s infinite ease-out;
  animation-delay: 0.3s;
}

.firework-5 {
  background: radial-gradient(circle, #f44336, #d32f2f);
  right: 70px;
  top: 65%;
  animation: firework-burst-5 2s infinite ease-out;
  animation-delay: 1s;
}

.firework-5::before {
  background: radial-gradient(circle, #ffeb3b, #ffc107);
  animation: spark-9 2s infinite ease-out;
  animation-delay: 1s;
}

.firework-5::after {
  background: radial-gradient(circle, #e91e63, #c2185b);
  animation: spark-10 2s infinite ease-out;
  animation-delay: 1s;
}

.firework-6 {
  background: radial-gradient(circle, #ff9800, #f57c00);
  right: 50px;
  top: 85%;
  animation: firework-burst-6 2s infinite ease-out;
  animation-delay: 1.7s;
}

.firework-6::before {
  background: #ffeb3b;
  animation: spark-11 3s infinite ease-out;
  animation-delay: 2.5s;
}

.firework-6::after {
  background: #9c27b0;
  animation: spark-12 3s infinite ease-out;
  animation-delay: 2.5s;
}

/* Firework Burst Animations */
@keyframes firework-burst-1 {
  0% { opacity: 0; transform: translateY(50px) scale(0); }
  30% { opacity: 1; transform: translateY(-30px) scale(1); }
  40% { opacity: 1; transform: translateY(-30px) scale(2); }
  50% { opacity: 0; transform: translateY(-30px) scale(3); }
  100% { opacity: 0; transform: translateY(-30px) scale(3); }
}

@keyframes firework-burst-2 {
  0% { opacity: 0; transform: translateY(50px) scale(0); }
  30% { opacity: 1; transform: translateY(-40px) scale(1); }
  40% { opacity: 1; transform: translateY(-40px) scale(2); }
  50% { opacity: 0; transform: translateY(-40px) scale(3); }
  100% { opacity: 0; transform: translateY(-40px) scale(3); }
}

@keyframes firework-burst-3 {
  0% { opacity: 0; transform: translateY(50px) scale(0); }
  30% { opacity: 1; transform: translateY(-50px) scale(1); }
  40% { opacity: 1; transform: translateY(-50px) scale(2); }
  50% { opacity: 0; transform: translateY(-50px) scale(3); }
  100% { opacity: 0; transform: translateY(-50px) scale(3); }
}

@keyframes firework-burst-4 {
  0% { opacity: 0; transform: translateY(100%) scale(0); }
  15% { opacity: 1; transform: translateY(25%) scale(1); }
  20% { opacity: 1; transform: translateY(25%) scale(1.5); }
  25% { opacity: 0; transform: translateY(25%) scale(2); }
  100% { opacity: 0; transform: translateY(25%) scale(2); }
}

@keyframes firework-burst-5 {
  0% { opacity: 0; transform: translateY(100%) scale(0); }
  15% { opacity: 1; transform: translateY(15%) scale(1); }
  20% { opacity: 1; transform: translateY(15%) scale(1.5); }
  25% { opacity: 0; transform: translateY(15%) scale(2); }
  100% { opacity: 0; transform: translateY(15%) scale(2); }
}

@keyframes firework-burst-6 {
  0% { opacity: 0; transform: translateY(100%) scale(0); }
  15% { opacity: 1; transform: translateY(35%) scale(1); }
  20% { opacity: 1; transform: translateY(35%) scale(1.5); }
  25% { opacity: 0; transform: translateY(35%) scale(2); }
  100% { opacity: 0; transform: translateY(35%) scale(2); }
}

/* Spark Animations */
@keyframes spark-1 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(-10px, -10px) scale(1); }
  30% { opacity: 0; transform: translate(-20px, -20px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-2 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(10px, -15px) scale(1); }
  30% { opacity: 0; transform: translate(20px, -30px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-3 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(-15px, -8px) scale(1); }
  30% { opacity: 0; transform: translate(-30px, -16px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-4 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(12px, -12px) scale(1); }
  30% { opacity: 0; transform: translate(24px, -24px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-5 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(-8px, -18px) scale(1); }
  30% { opacity: 0; transform: translate(-16px, -36px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-6 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(18px, -8px) scale(1); }
  30% { opacity: 0; transform: translate(36px, -16px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-7 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(10px, -10px) scale(1); }
  30% { opacity: 0; transform: translate(20px, -20px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-8 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(-10px, -15px) scale(1); }
  30% { opacity: 0; transform: translate(-20px, -30px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-9 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(15px, -8px) scale(1); }
  30% { opacity: 0; transform: translate(30px, -16px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-10 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(-12px, -12px) scale(1); }
  30% { opacity: 0; transform: translate(-24px, -24px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-11 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(8px, -18px) scale(1); }
  30% { opacity: 0; transform: translate(16px, -36px) scale(0.5); }
  100% { opacity: 0; }
}

@keyframes spark-12 {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: 1; transform: translate(-18px, -8px) scale(1); }
  30% { opacity: 0; transform: translate(-36px, -16px) scale(0.5); }
  100% { opacity: 0; }
}

/* Mobile Responsive Fireworks */
@media (max-width: 768px) {
  .fireworks-left,
  .fireworks-right {
    width: 50px;
  }
  
  .firework {
    width: 3px;
    height: 3px;
  }
  
  .firework::before,
  .firework::after {
    width: 1.5px;
    height: 1.5px;
  }
}

/* Social Media Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--gray-color);
  text-decoration: none;
  font-size: var(--fs-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.social-link.instagram:hover {
  color: #e4405f;
}

.social-link.facebook:hover {
  color: #1877f2;
}

.social-link.google:hover {
  color: #4285f4;
}

.social-link.linktree:hover {
  color: #39e09b;
}

.social-link.whatsapp:hover {
  color: #25d366;
}

.social-link i {
  width: 16px;
  text-align: center;
  font-size: var(--fs-sm);
}

/* Responsive Social Links */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
    gap: var(--spacing-sm);
  }
  
  .social-link {
    font-size: var(--fs-xs);
    padding: var(--spacing-xs);
  }
  
  .social-link i {
    width: 14px;
  }
}

/* Car Knowledge Section */
.knowledge-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.knowledge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23dc2626" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.knowledge-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
}

.knowledge-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.2);
}

.knowledge-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    min-height: 80px;
}

.knowledge-header:hover {
    background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
}

.knowledge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.knowledge-icon i {
    font-size: 20px;
    color: white;
}

.knowledge-title {
    flex-grow: 1;
}

.knowledge-title h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
}

.knowledge-title p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.knowledge-toggle {
    font-size: 16px;
    color: #9ca3af;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.knowledge-card.active .knowledge-toggle {
    transform: rotate(180deg);
    color: #dc2626;
}

.knowledge-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: white;
    padding: 0 25px;
}

.knowledge-content.active {
    max-height: 1500px;
    padding: 20px 25px 25px 25px;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.knowledge-content h4 {
    color: #dc2626;
    margin: 20px 0 15px 0;
    font-size: 16px;
    font-weight: 700;
}

.knowledge-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.knowledge-content li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.tamil-tip {
    display: block;
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin-top: 4px;
}

/* Maintenance Schedule Specific Styles */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.maintenance-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #dc2626;
}

.maintenance-interval {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.maintenance-tasks h4 {
    color: #92400e;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.maintenance-tasks ul {
    margin: 0;
}

.maintenance-tasks li {
    padding: 6px 0;
    font-size: 14px;
    color: #78350f;
}

/* Pro Tips Styles */
.maintenance-tips {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 15px;
    border-left: 4px solid #22c55e;
}

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

.tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tip i {
    color: #22c55e;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip p {
    margin: 0;
    font-size: 14px;
    color: #166534;
}

/* Fuel Tip Styles */
.fuel-tip {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #f59e0b;
}

.fuel-tip i {
    color: #f59e0b;
    font-size: 18px;
}

.fuel-tip p {
    margin: 0;
    color: #92400e;
    font-weight: 600;
}

/* Knowledge CTA Styles */
.knowledge-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    border-radius: 25px;
    color: white;
}

.knowledge-cta h3 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 700;
}

.knowledge-cta p {
    margin: 0 0 30px 0;
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #dc2626;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-2px);
}

/* Responsive Design for Knowledge Section */
@media (max-width: 768px) {
    .knowledge-grid {
        gap: 12px;
        margin-top: 30px;
    }
    
    .knowledge-header {
        padding: 15px 20px;
        min-height: 70px;
    }
    
    .knowledge-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .knowledge-icon i {
        font-size: 18px;
    }
    
    .knowledge-title h3 {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .knowledge-title p {
        font-size: 12px;
    }
    
    .knowledge-content {
        padding: 0 20px;
    }
    
    .knowledge-content.active {
        padding: 15px 20px 20px 20px;
        max-height: 1200px;
    }
    
    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .knowledge-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .knowledge-cta h3 {
        font-size: 24px;
    }
    
    .knowledge-section {
        padding: 60px 0;
    }
}
