/* ============================================
   CRESCENT MOTORS - SHARED STYLES
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #6c4eff;
  --primary-hover: #5a3ecc;
  --text-dark: #111;
  --text-medium: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg-white: #fff;
  --bg-light: #f9f9f9;
  --border-color: #e1e1e1;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo img {
  height: 100px;
  width: auto;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-medium);
  border-radius: 8px;
  transition: all var(--transition-fast);
  font-size: 15px;
}

.nav-desktop a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.nav-desktop a.active {
  background: var(--primary-color);
  color: white;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition-fast);
  z-index: 1100;
}

.menu-toggle:hover {
  background: var(--bg-light);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-medium);
  margin: 3px 0;
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

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

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

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

/* Mobile Drawer Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1050;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-normal);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.drawer-header .logo img {
  height: 60px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-medium);
  transition: all var(--transition-fast);
}

.drawer-close:hover {
  background: var(--border-color);
}

.drawer-nav {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-medium);
  border-radius: 10px;
  transition: all var(--transition-fast);
  font-size: 16px;
}

.drawer-nav a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.drawer-nav a.active {
  background: var(--primary-color);
  color: white;
}

.drawer-nav .nav-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.drawer-footer {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.drawer-footer p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text-light);
}

.drawer-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  background: white;
  color: var(--primary-color);
}

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

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

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

.btn-secondary {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

/* ============================================
   FORMS
   ============================================ */

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

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-medium);
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(108, 78, 255, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

/* ============================================
   BADGES
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.badge-icon {
  font-size: 18px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 60px 20px;
}

.section-light {
  background: var(--bg-light);
}

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

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

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 40px 20px;
}

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

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--bg-white);
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px;
  display: block;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   STATS
   ============================================ */

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

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.testimonial-rating {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

/* ============================================
   CUSTOMER PHOTO GALLERY
   ============================================ */

.customer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.customer-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.customer-photo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.customer-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .customer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .customer-gallery {
    grid-template-columns: 1fr;
  }

  .customer-photo img {
    height: 250px;
  }
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-dark);
}

.step-content p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   CONTENT PAGES
   ============================================ */

.page-hero {
  background: var(--bg-light);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-light);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-dark);
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text-dark);
}

.contact-details p,
.contact-details a {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

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

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-desktop {
    display: none;
  }

  header {
    padding: 12px 20px;
  }

  .logo img {
    height: 70px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

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

  .step-card {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .stat-value {
    font-size: 32px;
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-value {
    font-size: 28px;
  }

  .badge {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

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

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

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

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   STICKY CTA BUTTON (Floating)
   ============================================ */

.sticky-cta-btn {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(108, 78, 255, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.sticky-cta-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta-btn:hover {
  background: #5a3de6;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(108, 78, 255, 0.5);
  color: white !important;
}

@media (max-width: 480px) {
  .sticky-cta-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ============================================
   COLLAPSIBLE CONTENT (Read More)
   ============================================ */

.content-collapsible {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.content-collapsible.expanded {
  max-height: 2000px;
}

.content-collapsible:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg-white));
  pointer-events: none;
}

.read-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  padding: 12px 24px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.read-more-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.read-more-btn .arrow {
  transition: transform 0.3s ease;
}

.read-more-btn.expanded .arrow {
  transform: rotate(180deg);
}

/* ============================================
   INDEX PAGE SPECIFIC STYLES
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 70px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 16px;
  color: white;
  line-height: 1.2;
}

.hero h1 .highlight {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  margin-bottom: 30px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

.trust-badges .badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.trust-badges .badge-icon {
  margin-right: 8px;
}

.main-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.quote-form {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-dark);
}

.form-header p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

.form-step {
  display: none;
}

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

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  transition: all var(--transition-fast);
}

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

.content-section {
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-dark);
}

.content-section p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 16px;
}

.service-areas {
  background: var(--bg-light);
  padding: 60px 20px;
}

.service-areas h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-dark);
}

.service-areas>p {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.city-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-white);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

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

.city-link span {
  font-size: 18px;
}

.why-choose {
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-choose h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
  color: var(--text-dark);
}

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

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.benefit-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-dark);
}

.benefit-content p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.types-section {
  background: var(--bg-light);
  padding: 60px 20px;
}

.types-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-dark);
}

.types-section>p {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.type-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 20px 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero .btn {
    width: 100%;
    max-width: 320px;
  }

  .main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-form {
    padding: 24px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .trust-badges .badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .content-section h2,
  .service-areas h2,
  .why-choose h2,
  .types-section h2 {
    font-size: 26px;
  }
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thankyou-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f0f5 100%);
}

.thankyou-card {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-card h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-dark);
}

.thankyou-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 12px;
}

.response-time {
  display: inline-block;
  background: var(--bg-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 20px 0;
}

.response-time span {
  color: var(--primary-color);
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.divider::before {
  margin-right: 16px;
}

.divider::after {
  margin-left: 16px;
}

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

.contact-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-light);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
}

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

.contact-option-icon {
  font-size: 18px;
}

/* Pulse Animation for Conversion */
@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.btn-pulse {
  animation: pulse-btn 2s infinite;
  background-color: #22c55e !important;
  color: white !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  border: none;
}

.urgency-text {
  color: #d32f2f;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

@media (max-width: 768px) {
  .thankyou-card {
    padding: 40px 24px;
  }

  .thankyou-card h1 {
    font-size: 26px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-option {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* ============================================
   CITY PAGE SPECIFIC STYLES
   ============================================ */

.city-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.city-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}

.city-hero .highlight {
  color: var(--primary-color);
}

.city-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 24px;
}

.city-hero .trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.city-hero .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.city-hero .badge-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.city-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.main-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.main-content h2:first-child {
  margin-top: 0;
}

.main-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.main-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 16px;
}

.main-content ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.main-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.quote-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: center;
}

.quote-card .subtitle {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
}

.quote-card .form-group {
  margin-bottom: 16px;
}

.quote-card input,
.quote-card select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.quote-card input:focus,
.quote-card select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.quote-card .btn {
  width: 100%;
  padding: 16px;
  font-size: 18px;
}

.quote-card .guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.area-item {
  background: var(--bg-light);
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-item::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
}

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

.process-step {
  background: var(--bg-light);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.faq-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s;
}

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

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0;
}

.city-cta {
  background: var(--primary-color);
  color: white;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
}

.city-cta h2 {
  font-size: 28px;
  margin: 0 0 12px;
  color: white;
}

.city-cta p {
  font-size: 17px;
  margin: 0 0 24px;
  opacity: 0.9;
  color: white;
}

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

.other-cities {
  margin-top: 40px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 16px;
}

.other-cities h3 {
  font-size: 20px;
  margin: 0 0 20px;
  color: var(--text-dark);
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-links a {
  padding: 10px 20px;
  background: white;
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.city-links a:hover {
  background: var(--primary-color);
  color: white;
}

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

  .sticky-sidebar {
    position: relative;
    top: 0;
  }

  .city-hero h1 {
    font-size: 32px;
  }
}

/* Blog Styles */
.article-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.article-header h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.article-header .meta {
  font-size: 15px;
  opacity: 0.8;
}

.article-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 50px 20px;
}

.article-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text-dark);
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 12px;
  color: var(--text-dark);
}

.article-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-medium);
  margin: 0 0 18px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.article-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.article-content strong {
  color: var(--text-dark);
}

.highlight-box {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.highlight-box p {
  margin: 0;
}

.cta-box {
  background: var(--primary-color);
  color: white;
  padding: 36px;
  border-radius: 16px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: white;
}

.cta-box p {
  font-size: 15px;
  margin: 0 0 18px;
  opacity: 0.9;
  color: white;
}

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

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 28px;
  }
}