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

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

/* Skip to main content link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1565c0;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #42a5f5;
  outline-offset: 2px;
}

/* Enhanced focus indicators for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[role="button"]:focus {
  outline: 3px solid #42a5f5;
  outline-offset: 2px;
}

/* Ensure focus is visible on interactive elements */
.quote-option:focus,
.package-btn:focus,
.cta-header:focus,
.nav-link:focus {
  outline: 3px solid #42a5f5;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.3);
}

/* Improve contrast for better readability */
.service-check-label {
  color: #d4d4d4;  /* Improved contrast from #c0c0c0 */
}

/* Ensure minimum touch target size for mobile (48x48px minimum) */
@media (max-width: 768px) {
  button,
  a.contact-btn,
  a.cta-header,
  .quote-option,
  .package-btn {
    min-height: 48px;
    min-width: 48px;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e8f1f8;
  overflow-x: hidden;
  background: linear-gradient(135deg, rgba(10, 25, 41, 0.85) 0%, rgba(13, 27, 42, 0.85) 50%, rgba(0, 18, 25, 0.85) 100%), url('autopic.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Header Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(66, 165, 245, 0.3);
}

header.scrolled {
  background: rgba(13, 27, 42, 0.98);
  box-shadow: 0 2px 30px rgba(66, 165, 245, 0.25);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(192, 192, 192, 0.3));
}

.mobile-badge {
  font-size: 0.75rem;
  color: rgba(100, 181, 246, 0.9);
  border-left: 2px solid rgba(66, 165, 245, 0.5);
  padding-left: 15px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: #b3d9ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #42a5f5, #64b5f6);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(66, 165, 245, 0.6);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-header {
  color: rgba(200, 200, 200, 0.9);
  font-size: 0.9rem;
}

.hours-header {
  color: rgba(180, 180, 180, 0.7);
  font-size: 0.8rem;
  border-right: 1px solid rgba(66, 165, 245, 0.5);
  padding-right: 15px;
}

.cta-header {
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: white;
  padding: 10px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(66, 165, 245, 0.4);
  font-size: 0.9rem;
}

.cta-header:hover {
  background: linear-gradient(135deg, #1976d2, #2196f3, #64b5f6);
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(66, 165, 245, 0.5);
  border-color: rgba(100, 181, 246, 0.6);
}

/* Promotional Banner */
.promo-banner {
  background: linear-gradient(135deg, #0d47a1, #1565c0, #1976d2);
  color: #e3f2fd;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  position: relative;
  animation: slideDown 0.5s ease-out;
  border-bottom: 1px solid rgba(66, 165, 245, 0.4);
  box-shadow: 0 2px 10px rgba(66, 165, 245, 0.3);
}

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #0d1b2a;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(66, 165, 245, 0.4);
}

.modal-header {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  color: white;
  padding: 30px;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid rgba(66, 165, 245, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(66, 165, 245, 0.3);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(66, 165, 245, 0.5);
  transform: rotate(90deg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(100, 100, 100, 0.5);
  background: rgba(30, 30, 30, 0.8);
  color: #e0e0e0;
  border-radius: 10px;
  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: #42a5f5;
  background: rgba(13, 27, 42, 0.95);
}

.form-submit {
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: white;
  padding: 15px 40px;
  border: 1px solid rgba(66, 165, 245, 0.4);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background: linear-gradient(135deg, #1976d2, #2196f3, #64b5f6);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(66, 165, 245, 0.5);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #c0c0c0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 25, 41, 0.98);
  padding: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(66, 165, 245, 0.3);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  color: #c0c0c0;
  text-decoration: none;
  padding: 15px;
  border-bottom: 1px solid rgba(100, 100, 100, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(21, 101, 192, 0.4);
  padding-left: 25px;
  color: white;
}

/* Welcome Hero Section */
.welcome-hero {
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(13, 27, 42, 0.95)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(66, 165, 245, 0.05) 10px,
      rgba(66, 165, 245, 0.05) 20px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.welcome-content {
  max-width: 1000px;
  padding: 40px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
  filter: drop-shadow(0 10px 30px rgba(192, 192, 192, 0.3));
  animation: fadeInUp 1s ease-out;
}

.tagline {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #64b5f6, #90caf9, #64b5f6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite, fadeInUp 1s ease-out 0.2s both;
  letter-spacing: 1px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.experience-banner {
  display: inline-block;
  background: linear-gradient(135deg, #0d47a1, #1565c0, #1976d2);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 20px 0;
  border: 2px solid rgba(66, 165, 245, 0.4);
  animation: fadeInUp 1s ease-out 0.4s both;
  letter-spacing: 1px;
}

.welcome-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.5s both;
  color: #c0c0c0;
}

.welcome-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.85;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
  color: #b0b0b0;
  line-height: 1.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-indicator::after {
  content: '↓';
  font-size: 2rem;
  color: rgba(100, 181, 246, 0.6);
}

/* About Section */
.about-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border-top: 1px solid rgba(66, 165, 245, 0.3);
  border-bottom: 1px solid rgba(66, 165, 245, 0.3);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-title {
  font-size: 2.8rem;
  color: #d4d4d4;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-subtitle {
  font-size: 1.3rem;
  color: #a0a0a0;
  font-style: italic;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nazir-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  border: 3px solid rgba(66, 165, 245, 0.4);
  box-shadow: 0 10px 40px rgba(66, 165, 245, 0.3);
  transition: all 0.3s ease;
}

.nazir-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(66, 165, 245, 0.5);
  border-color: rgba(66, 165, 245, 0.6);
}

.about-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-text {
  color: #b8b8b8;
  font-size: 1.1rem;
  line-height: 1.9;
}

.about-text p {
  margin-bottom: 20px;
}

.about-highlight {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(66, 165, 245, 0.3);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(13, 71, 161, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(160, 160, 160, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #42a5f5, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #a0a0a0;
  margin-top: 10px;
  font-size: 0.95rem;
}

/* About Logo Header */
.about-logo-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(21, 101, 192, 0.2));
  border-radius: 20px;
  border: 1px solid rgba(66, 165, 245, 0.3);
}

.about-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(66, 165, 245, 0.4));
  transition: transform 0.3s ease;
}

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

.about-title-main {
  font-size: 2.5rem;
  color: #d4d4d4;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #42a5f5, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section-heading {
  font-size: 1.8rem;
  color: #42a5f5;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Blog Content Section */
.blog-content-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(66, 165, 245, 0.3);
}

.blog-section-title {
  font-size: 2.5rem;
  color: #d4d4d4;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 800;
  background: linear-gradient(90deg, #42a5f5, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-subtitle {
  font-size: 1.3rem;
  color: #a0a0a0;
  text-align: center;
  font-style: italic;
  margin-bottom: 50px;
}

.blog-article {
  max-width: 900px;
  margin: 0 auto;
  color: #b8b8b8;
  line-height: 1.8;
}

.blog-article h3 {
  font-size: 1.9rem;
  color: #42a5f5;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-article h4 {
  font-size: 1.4rem;
  color: #64b5f6;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-article p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.detailing-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.detailing-list li {
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(13, 71, 161, 0.2);
  border-left: 4px solid #42a5f5;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.detailing-list li:hover {
  background: rgba(13, 71, 161, 0.3);
  transform: translateX(5px);
}

.detailing-list li strong {
  color: #90caf9;
  font-size: 1.15rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.3), rgba(21, 101, 192, 0.2));
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(66, 165, 245, 0.3);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(66, 165, 245, 0.3);
  border-color: rgba(66, 165, 245, 0.5);
}

.benefit-item h4 {
  margin-top: 0;
}

/* Myths Section */
.myths-section {
  margin: 40px 0;
}

.myth-item {
  background: rgba(13, 71, 161, 0.2);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 4px solid #1e88e5;
  transition: all 0.3s ease;
}

.myth-item:hover {
  background: rgba(13, 71, 161, 0.3);
  border-left-color: #42a5f5;
}

.myth-item p {
  margin-bottom: 10px;
}

.myth-item strong {
  color: #90caf9;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
  border: 2px solid rgba(66, 165, 245, 0.4);
  box-shadow: 0 10px 40px rgba(66, 165, 245, 0.3);
}

.cta-box h3 {
  color: white;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
}

.cta-box p {
  color: #e3f2fd;
  font-size: 1.15rem;
  margin-bottom: 15px;
}

.cta-box .btn-primary {
  display: inline-block;
  background: white;
  color: #0d47a1;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-box .btn-primary:hover {
  background: #0d47a1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Blog Section */
@media (max-width: 768px) {
  .about-logo {
    max-width: 150px;
  }

  .about-title-main {
    font-size: 1.8rem;
  }

  .blog-section-title {
    font-size: 1.9rem;
  }

  .blog-subtitle {
    font-size: 1.1rem;
  }

  .blog-article h3 {
    font-size: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detailing-list li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .myth-item {
    padding: 20px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-box h3 {
    font-size: 1.6rem;
  }
}

/* Contact CTA Section */
.contact-section {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  padding: 60px 20px;
  border-radius: 0;
  margin-top: 0;
  border-top: 1px solid rgba(66, 165, 245, 0.4);
  border-bottom: 1px solid rgba(66, 165, 245, 0.4);
}

.contact-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

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

.contact-btn {
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(66, 165, 245, 0.4);
}

.contact-btn:hover {
  background: linear-gradient(135deg, #1976d2, #2196f3, #64b5f6);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(180, 180, 180, 0.3);
}

/* Footer */
footer {
  background: #001219;
  color: #b0b0b0;
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(66, 165, 245, 0.3);
}

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

.footer-section h3 {
  color: #c0c0c0;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: rgba(180, 180, 180, 0.8);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #c8c8c8;
}

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

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

.partner-info {
  background: rgba(13, 71, 161, 0.3);
  border-left: 3px solid #808080;
  padding: 15px;
  margin-top: 15px;
}

.partner-info h4 {
  color: #a0a0a0;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(100, 100, 100, 0.3);
  color: rgba(100, 181, 246, 0.6);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(21, 101, 192, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #a0a0a0;
  text-decoration: none;
  border: 1px solid rgba(100, 100, 100, 0.3);
}

.social-link:hover {
  background: rgba(100, 100, 100, 0.5);
  transform: translateY(-3px);
  border-color: rgba(66, 165, 245, 0.6);
}

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

/* Common Section Styles */
.detail-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a1929 0%, #0d1b2a 50%, #001219 100%);
  background-attachment: fixed;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #d4d4d4;
}

.section-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  color: #a0a0a0;
}

/* Service Selector Section */
.service-selector {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a1929 0%, #0d1b2a 50%, #001219 100%);
  background-attachment: fixed;
}

.selector-header {
  text-align: center;
  margin-bottom: 60px;
}

.selector-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #d4d4d4;
  font-weight: 800;
}

.selector-subtitle {
  font-size: 1.3rem;
  color: #a0a0a0;
  max-width: 800px;
  margin: 0 auto;
}

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

.service-card {
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(66, 165, 245, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(66, 165, 245, 0.6);
  box-shadow: 0 20px 60px rgba(66, 165, 245, 0.4);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-title {
  font-size: 1.6rem;
  color: #e3f2fd;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-description {
  color: #b8b8b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.service-highlights li {
  color: #c8c8c8;
  padding: 8px 0;
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
  font-size: 0.95rem;
}

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

.starting-price {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #42a5f5, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

.explore-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.service-card:hover .explore-btn {
  background: linear-gradient(135deg, #1976d2, #64b5f6);
  box-shadow: 0 5px 20px rgba(66, 165, 245, 0.4);
}

/* Featured Service Card */
.service-card.featured {
  border: 3px solid #42a5f5;
  box-shadow: 0 20px 60px rgba(66, 165, 245, 0.5);
  transform: scale(1.03);
  background: linear-gradient(135deg, #0d47a1, #1565c0);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.6);
  z-index: 10;
  animation: pulse 2s infinite;
}

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

/* Package Cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.package-card {
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(66, 165, 245, 0.3);
  transition: transform 0.3s ease;
}

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

.package-header {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  padding: 30px;
  text-align: center;
  position: relative;
}

.package-header.executive {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
}

.package-header.signature {
  background: linear-gradient(135deg, #1a237e, #283593);
}

.package-header.presidential {
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
}

.package-header.ultimate {
  background: linear-gradient(135deg, #b8860b, #daa520);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
}

.package-title {
  color: white;
  font-size: 1.8rem;
  margin: 0;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 15px;
  color: #e3f2fd;
}

.package-tier {
  margin-top: 10px;
  opacity: 0.9;
  font-size: 0.9rem;
}

.package-body {
  padding: 30px;
  color: #b8b8b8;
}

.package-description {
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 600;
  color: #c8c8c8;
}

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

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(100, 100, 100, 0.3);
}

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

.package-btn {
  width: 100%;
  margin-top: 25px;
  padding: 15px;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background: linear-gradient(135deg, #1976d2, #64b5f6);
  box-shadow: 0 5px 20px rgba(66, 165, 245, 0.4);
  transform: translateY(-2px);
}

.package-btn.executive {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.package-btn.signature {
  background: linear-gradient(135deg, #283593, #3949ab);
}

.package-btn.presidential {
  background: linear-gradient(135deg, #6a1b9a, #8e24aa);
}

.package-btn.ultimate {
  background: linear-gradient(135deg, #daa520, #ffd700);
  color: #000;
  font-weight: 700;
}

/* Quote Page Specific Styles */
.quote-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Weather Widget */
.weather-widget {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  color: #c0c0c0;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(100, 100, 100, 0.3);
  gap: 20px;
}

.weather-info h3.weather-title {
  margin: 0;
  font-size: 1.3rem;
  color: #d4d4d4;
}

.weather-location {
  margin: 5px 0;
  opacity: 0.9;
  color: #c0c0c0;
}

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

.weather-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.weather-condition {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e3f2fd;
}

.weather-temp {
  font-size: 1.8rem;
  font-weight: 700;
  color: #90caf9;
  margin-bottom: 10px;
}

.weather-details {
  text-align: right;
}

.weather-note {
  font-size: 1.1rem;
  color: #e3f2fd;
  margin-bottom: 5px;
}

.weather-note-secondary {
  opacity: 0.8;
  color: #c0c0c0;
}

/* ===== PACKAGE BUILDER STYLES ===== */

.package-builder-section {
  margin-top: 50px;
  padding: 40px 0;
}

.service-category {
  margin-bottom: 40px;
}

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

.service-checkbox-item {
  display: block;
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border: 2px solid rgba(66, 165, 245, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-checkbox-item:hover {
  border-color: rgba(66, 165, 245, 0.5);
  background: linear-gradient(135deg, #252525, #2a2a2a);
  transform: translateY(-2px);
}

.service-checkbox-item input[type="checkbox"] {
  display: none;
}

.service-checkbox-item input[type="checkbox"]:checked + .service-check-label {
  color: #42a5f5;
}

.service-checkbox-item input[type="checkbox"]:checked + .service-check-label::before {
  content: '✓ ';
  color: #4caf50;
  font-weight: bold;
  margin-right: 5px;
}

.service-check-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c0c0c0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.service-name {
  flex: 1;
}

.service-price {
  font-weight: 700;
  color: #90caf9;
  font-size: 1.1rem;
}

/* Receipt Box Styles */
.receipt-box {
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border: 2px solid rgba(66, 165, 245, 0.3);
  border-radius: 15px;
  padding: 0;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.receipt-header {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  padding: 20px 25px;
  border-bottom: 2px solid rgba(66, 165, 245, 0.3);
}

.receipt-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 25px;
  max-height: 40vh;
  min-height: 200px;
}

.receipt-items::-webkit-scrollbar {
  width: 8px;
}

.receipt-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.receipt-items::-webkit-scrollbar-thumb {
  background: rgba(66, 165, 245, 0.3);
  border-radius: 4px;
}

.receipt-items::-webkit-scrollbar-thumb:hover {
  background: rgba(66, 165, 245, 0.5);
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(160, 160, 160, 0.1);
}

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

.receipt-item-name {
  color: #d4d4d4;
  font-size: 0.95rem;
  flex: 1;
}

.receipt-item-price {
  color: #90caf9;
  font-weight: 600;
  font-size: 1rem;
}

.receipt-footer {
  padding: 20px 25px;
  border-top: 2px solid rgba(66, 165, 245, 0.3);
  background: rgba(13, 27, 42, 0.5);
}

.receipt-subtotal,
.receipt-discount,
.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: #c0c0c0;
  font-size: 1rem;
}

.receipt-total {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d4d4d4;
  padding-top: 10px;
  border-top: 2px solid rgba(66, 165, 245, 0.2);
  margin-top: 5px;
  margin-bottom: 15px;
}

.receipt-total span:last-child {
  color: #42a5f5;
  font-size: 1.5rem;
}

.receipt-discount {
  color: #4caf50;
  font-size: 0.95rem;
}

.discount-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #c0c0c0;
  margin-top: 10px;
}

.discount-toggle input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

/* Custom Quote Button */
.custom-quote-btn {
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3);
}

.custom-quote-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #0d47a1, #1565c0, #1e88e5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 165, 245, 0.4);
}

.custom-quote-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: linear-gradient(135deg, #424242, #616161);
}

.clear-btn {
  transition: all 0.3s ease;
}

.clear-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(66, 165, 245, 0.5) !important;
}

/* Build Custom Package Button (in header) */
.selector-header button:hover {
  background: linear-gradient(135deg, #0d47a1, #1565c0) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 165, 245, 0.5) !important;
}

/* Back to Preset Packages Button */
.section-header button:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(66, 165, 245, 0.6) !important;
  transform: translateX(-3px);
}

/* Responsive Design for Package Builder */
@media (max-width: 1024px) {
  .package-builder-section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .receipt-box {
    position: relative !important;
    top: auto !important;
    margin-top: 30px;
    max-height: 500px;
  }

  .service-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-checkbox-item {
    padding: 12px 15px;
  }

  .service-check-label {
    font-size: 0.9rem;
  }

  .service-price {
    font-size: 1rem;
  }

  .receipt-box {
    max-height: 400px;
  }

  .receipt-items {
    max-height: 250px;
  }
}

/* Quote Options */
.quote-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 40px auto;
}

.quote-option {
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border: 2px solid rgba(66, 165, 245, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.quote-option:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 165, 245, 0.6);
  box-shadow: 0 15px 40px rgba(66, 165, 245, 0.4);
}

.quote-option.selected {
  border-color: #42a5f5;
  background: linear-gradient(135deg, #1565c0, #1e88e5);
}

.option-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e3f2fd;
  margin-bottom: 10px;
}

.option-price {
  color: #b3d9ff;
  font-size: 1rem;
}

/* Featured Quote Option */
.quote-option.featured-option {
  border: 3px solid #42a5f5;
  box-shadow: 0 15px 40px rgba(66, 165, 245, 0.4);
}

.featured-badge-small {
  position: absolute;
  top: -12px;
  right: 10px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.5);
}

.option-title.featured-title {
  color: #42a5f5;
  font-size: 1.2rem;
}

/* Seasonal Header */
.seasonal-header {
  text-align: center;
  margin: 60px 0 30px;
}

.seasonal-title {
  color: #e8f1f8;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.seasonal-subtitle {
  color: #90caf9;
  font-size: 1.1rem;
}

/* Price Display Section */
.price-display-section {
  display: none;
  margin-top: 60px;
}

.price-display-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.price-display-section .section-title {
  color: #e8f1f8;
  font-size: 2rem;
  font-weight: 800;
}

/* Package Card Variant for Quote Page */
.package-card.popular {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(66, 165, 245, 0.4);
}

.package-card.popular .package-header {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  border: 3px solid #42a5f5;
}

/* Special Offer Banner */
.special-offer-banner {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(66, 165, 245, 0.4);
}

.special-offer-title {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.special-offer-text {
  color: #e3f2fd;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.special-offer-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.special-offer-btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.special-offer-btn.primary {
  background: #ffffff;
  color: #1565c0;
}

.special-offer-btn.primary:hover {
  background: #e3f2fd;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.special-offer-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.special-offer-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border-top: 1px solid rgba(66, 165, 245, 0.3);
  border-bottom: 1px solid rgba(66, 165, 245, 0.3);
}

.steps-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.step-card {
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border: 1px solid rgba(66, 165, 245, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(66, 165, 245, 0.6);
  box-shadow: 0 20px 40px rgba(66, 165, 245, 0.3);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 25px;
  box-shadow: 0 5px 20px rgba(66, 165, 245, 0.4);
}

.step-title {
  font-size: 1.4rem;
  color: #e3f2fd;
  margin-bottom: 15px;
  font-weight: 700;
}

.step-description {
  color: #b8b8b8;
  line-height: 1.6;
}

/* Additional Services Section */
.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.additional-service-card {
  background: linear-gradient(135deg, #0d1b2a, #1a2942);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(100, 100, 100, 0.3);
}

.additional-service-header {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  padding: 30px;
  text-align: center;
}

.additional-service-header.vinyl {
  background: linear-gradient(135deg, #3a2a4a, #4a3a5a);
}

.additional-service-header.headlight {
  background: linear-gradient(135deg, #3a3a2a, #4a4a3a);
}

.additional-service-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.additional-service-title {
  color: white;
  font-size: 1.8rem;
  margin: 0;
}

.additional-service-body {
  padding: 30px;
  color: #b8b8b8;
}

.additional-service-description {
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.additional-service-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(100, 100, 100, 0.3);
}

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

.additional-service-pricing {
  text-align: center;
  margin-top: 25px;
}

.service-price-main {
  font-size: 1.8rem;
  background: linear-gradient(90deg, #42a5f5, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.service-price-secondary {
  color: #909090;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Benefits Banner */
.benefits-banner {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  border: 1px solid rgba(100, 100, 100, 0.3);
}

.benefits-banner-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #d4d4d4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.benefit-item-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.benefit-item-title {
  margin-bottom: 10px;
  color: #c8c8c8;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-item-description {
  opacity: 0.85;
  color: #a0a0a0;
  line-height: 1.6;
}

/* CTA Section */
.cta-container {
  text-align: center;
  margin-top: 60px;
}

.cta-text {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #c0c0c0;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(66, 165, 245, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #1976d2, #64b5f6);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 165, 245, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nazir-image {
    max-width: 300px;
  }

  .about-image-container {
    order: -1;
  }

  .service-options,
  .package-grid,
  .additional-services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .contact-header .phone-header {
    display: none;
  }

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

  .mobile-badge {
    display: none;
  }

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

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

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .service-card.featured {
    transform: scale(1);
  }
}

/* ===== GALLERY PAGE STYLES ===== */

.gallery-filters {
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(30, 30, 35, 0.8);
  border: 1px solid rgba(160, 160, 160, 0.3);
  color: #c0c0c0;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(21, 101, 192, 0.3);
  border-color: rgba(66, 165, 245, 0.5);
  color: #e8f1f8;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-color: #42a5f5;
  color: white;
  box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.gallery-item {
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(66, 165, 245, 0.5);
  box-shadow: 0 8px 30px rgba(66, 165, 245, 0.2);
  transform: translateY(-5px);
}

.comparison-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.before-image,
.after-image {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-info {
  padding: 20px;
}

.gallery-info h3 {
  color: #e8f1f8;
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.gallery-info p {
  color: #a0a0a0;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.gallery-tags {
  display: inline-block;
  background: rgba(21, 101, 192, 0.3);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  color: #90caf9;
  border: 1px solid rgba(66, 165, 245, 0.3);
}

/* ===== FAQ PAGE STYLES ===== */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category-title {
  font-size: 2rem;
  font-weight: 700;
  color: #42a5f5;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(66, 165, 245, 0.3);
}

.faq-item {
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(66, 165, 245, 0.4);
  box-shadow: 0 4px 20px rgba(66, 165, 245, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(21, 101, 192, 0.1);
}

.faq-question h3 {
  color: #e8f1f8;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  padding-right: 20px;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #42a5f5;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
  color: #c0c0c0;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 25px 20px;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer a {
  color: #42a5f5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.faq-answer a:hover {
  border-bottom-color: #42a5f5;
}

/* ===== GIFT CERTIFICATES PAGE STYLES ===== */

.gift-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.gift-card {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.4), rgba(30, 88, 142, 0.3));
  border: 2px solid rgba(66, 165, 245, 0.4);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gift-card::before {
  content: '🎁';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.1;
}

.gift-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(66, 165, 245, 0.3);
  border-color: #42a5f5;
}

.gift-card-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #42a5f5, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.gift-card-title {
  font-size: 1.3rem;
  color: #e8f1f8;
  margin-bottom: 15px;
  font-weight: 600;
}

.gift-card-description {
  color: #a0a0a0;
  margin-bottom: 25px;
  line-height: 1.6;
}

.gift-card-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  color: white;
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(66, 165, 245, 0.5);
}

.gift-card-btn:hover {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  box-shadow: 0 6px 25px rgba(66, 165, 245, 0.4);
  transform: scale(1.05);
}

.custom-amount-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 35px;
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 15px;
}

.custom-amount-form h3 {
  color: #e8f1f8;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
}

/* ===== REWARDS PROGRAM PAGE STYLES ===== */

.rewards-hero {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.4), rgba(30, 88, 142, 0.3));
  border: 2px solid rgba(66, 165, 245, 0.4);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 20px 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rewards-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.reward-step {
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.reward-step:hover {
  border-color: rgba(66, 165, 245, 0.5);
  box-shadow: 0 8px 30px rgba(66, 165, 245, 0.2);
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
}

.reward-step h3 {
  color: #e8f1f8;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.reward-step p {
  color: #a0a0a0;
  line-height: 1.6;
}

.rewards-tiers {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.tier-card {
  background: rgba(30, 30, 35, 0.6);
  border: 2px solid rgba(160, 160, 160, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.tier-card:hover {
  border-color: rgba(66, 165, 245, 0.5);
  box-shadow: 0 8px 30px rgba(66, 165, 245, 0.2);
}

.tier-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.tier-bronze .tier-badge {
  background: linear-gradient(135deg, #cd7f32, #c87533);
  color: white;
}

.tier-silver .tier-badge {
  background: linear-gradient(135deg, #c0c0c0, #b8b8b8);
  color: #333;
}

.tier-gold .tier-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
}

.tier-card h3 {
  color: #e8f1f8;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.tier-benefits {
  list-style: none;
  padding: 0;
}

.tier-benefits li {
  color: #c0c0c0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(160, 160, 160, 0.1);
}

.tier-benefits li:last-child {
  border-bottom: none;
}

/* ===== BOOKING CALENDAR STYLES ===== */

.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 20px;
  position: relative;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(160, 160, 160, 0.3);
  z-index: -1;
}

.booking-step {
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 35, 0.8);
  border: 2px solid rgba(160, 160, 160, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 700;
  color: #a0a0a0;
  transition: all 0.3s ease;
}

.booking-step.active .step-circle {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-color: #42a5f5;
  color: white;
}

.booking-step.completed .step-circle {
  background: #4caf50;
  border-color: #66bb6a;
  color: white;
}

.step-label {
  font-size: 0.9rem;
  color: #909090;
}

.booking-step.active .step-label {
  color: #42a5f5;
  font-weight: 600;
}

.calendar-grid {
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.calendar-month {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8f1f8;
}

.calendar-nav {
  display: flex;
  gap: 10px;
}

.calendar-nav button {
  background: rgba(21, 101, 192, 0.3);
  border: 1px solid rgba(66, 165, 245, 0.4);
  color: #e8f1f8;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-nav button:hover {
  background: rgba(21, 101, 192, 0.5);
  border-color: #42a5f5;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(40, 40, 45, 0.5);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
}

.calendar-day:hover:not(.disabled) {
  background: rgba(21, 101, 192, 0.3);
  border-color: #42a5f5;
  transform: scale(1.05);
}

.calendar-day.selected {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-color: #42a5f5;
  color: white;
}

.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.day-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8f1f8;
}

.day-slots {
  font-size: 0.75rem;
  color: #90caf9;
  margin-top: 5px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.time-slot {
  background: rgba(40, 40, 45, 0.5);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #e8f1f8;
}

.time-slot:hover:not(.booked) {
  background: rgba(21, 101, 192, 0.3);
  border-color: #42a5f5;
  transform: scale(1.05);
}

.time-slot.selected {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  border-color: #42a5f5;
  color: white;
}

.time-slot.booked {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ===== CUSTOMER PORTAL STYLES ===== */

.portal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.portal-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}

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

.portal-sidebar {
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 15px;
  padding: 25px;
  height: fit-content;
}

.portal-nav {
  list-style: none;
  padding: 0;
}

.portal-nav li {
  margin-bottom: 10px;
}

.portal-nav a {
  display: block;
  padding: 12px 15px;
  color: #c0c0c0;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.portal-nav a:hover,
.portal-nav a.active {
  background: rgba(21, 101, 192, 0.3);
  color: #e8f1f8;
}

.portal-main {
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 15px;
  padding: 35px;
}

.portal-section {
  display: none;
}

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

.portal-section h2 {
  color: #e8f1f8;
  font-size: 2rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(66, 165, 245, 0.3);
}

.membership-card {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.4), rgba(30, 88, 142, 0.3));
  border: 2px solid rgba(66, 165, 245, 0.4);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.membership-status {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.appointment-list {
  list-style: none;
  padding: 0;
}

.appointment-item {
  background: rgba(40, 40, 45, 0.5);
  border: 1px solid rgba(160, 160, 160, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.appointment-info h4 {
  color: #e8f1f8;
  margin-bottom: 8px;
}

.appointment-info p {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.appointment-actions {
  display: flex;
  gap: 10px;
}

.btn-small {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(160, 160, 160, 0.3);
  background: rgba(40, 40, 45, 0.8);
  color: #e8f1f8;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.85rem;
}

.btn-small:hover {
  background: rgba(21, 101, 192, 0.3);
  border-color: #42a5f5;
}
