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

:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-light: #fbbf24;
  --secondary: #1e293b;
  --secondary-light: #334155;
  --accent: #22c55e;
  --danger: #ef4444;
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --text-light: #f1f5f9;
  --text-dark: #1e293b;
  --gradient-1: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo-text span {
  color: var(--primary);
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

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

.cta-button {
  background: var(--gradient-1);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.emergency-badge {
  background: var(--danger);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
    var(--bg-dark);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--danger);
  top: 50%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 10px) rotate(3deg); }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--primary-light);
}

.hero-badge span {
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SEARCH BOX ===== */
.search-box {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  padding: 0.375rem;
  border-radius: 12px;
}

.search-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-tab.active {
  background: var(--primary);
  color: var(--text-light);
}

.search-tab:hover:not(.active) {
  background: rgba(245, 158, 11, 0.1);
  color: var(--text-light);
}

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

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

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(241, 245, 249, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

.form-group input::placeholder {
  color: rgba(241, 245, 249, 0.4);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--secondary);
}

.search-button {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-1);
  border: none;
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.search-button:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* ===== SERVICE CARDS ===== */
.services-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(241, 245, 249, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 0.75rem;
}

.service-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent);
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(30, 41, 59, 0.5) 100%);
}

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

.why-card {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.7);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

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

.testimonial-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.6);
}

.testimonial-stars {
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.8);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 2rem;
  background:
    radial-gradient(ellipse at center, rgba(245, 158, 11, 0.2) 0%, transparent 70%),
    var(--bg-dark);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 2rem;
}

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

.cta-primary {
  padding: 1rem 2rem;
  background: var(--gradient-1);
  border: none;
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.cta-secondary {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-brand p {
  color: rgba(241, 245, 249, 0.7);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

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

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

.footer-section a {
  color: rgba(241, 245, 249, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.95rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal {
  background: var(--secondary);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

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

.modal-header h3 {
  font-size: 1.5rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: rgba(239, 68, 68, 0.1);
  border: none;
  border-radius: 10px;
  color: var(--danger);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--danger);
  color: white;
}

/* ===== PROMO POPUP ===== */
.promo-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--secondary);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 350px;
  z-index: 1500;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateX(calc(100% + 3rem));
  transition: transform 0.5s ease;
}

.promo-popup.active {
  transform: translateX(0);
}

.promo-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(241, 245, 249, 0.5);
  font-size: 1.25rem;
  cursor: pointer;
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.promo-popup h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.promo-popup p {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 1rem;
}

.promo-code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.promo-code span {
  flex: 1;
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.promo-code button {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 1rem;
}

.promo-button {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  color: var(--bg-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-button:hover {
  background: var(--primary-dark);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: rgba(30, 41, 59, 0.8);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
}

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

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.6);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

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

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: rgba(241, 245, 249, 0.75);
  line-height: 1.7;
}

/* ===== ORDER TRACKING ===== */
.order-tracking {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.order-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-id {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.6);
}

.order-id span {
  color: var(--primary);
  font-weight: 600;
}

.tracking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.tracking-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: rgba(245, 158, 11, 0.2);
}

.tracking-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  color: rgba(241, 245, 249, 0.5);
  font-size: 1rem;
}

.tracking-step.active .step-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-dark);
}

.tracking-step.completed .step-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.step-label {
  font-size: 0.8rem;
  color: rgba(241, 245, 249, 0.6);
}

.tracking-step.active .step-label {
  color: var(--primary);
}

/* ===== QUICK RESPONSE ===== */
.quick-response {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.quick-response-icon {
  width: 50px;
  height: 50px;
  background: var(--danger);
  borderRadius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.quick-response h4 {
  margin-bottom: 0.25rem;
}

.quick-response p {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.7);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .promo-popup {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .search-box {
    padding: 1.5rem;
  }

  .services-section,
  .why-section,
  .testimonials-section,
  .cta-section,
  .faq-section {
    padding: 4rem 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--secondary);
  border: 1px solid var(--accent);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: var(--text-light);
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: var(--accent);
}

.toast.error {
  border-color: var(--danger);
}

/* ===== PAGE TRANSITIONS ===== */
.page-content {
  opacity: 0;
  animation: pageIn 0.5s ease forwards;
}

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

/* ===== SERVICE PAGE SPECIFIC ===== */
.service-hero {
  padding: 8rem 2rem 4rem;
  background: var(--bg-dark);
  position: relative;
}

.service-hero-content {
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.6);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.15rem;
  color: rgba(241, 245, 249, 0.7);
  max-width: 600px;
}

.service-content {
  padding: 4rem 2rem;
  background: var(--bg-dark);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-detail-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 2rem;
}

.service-detail-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-detail-card p {
  color: rgba(241, 245, 249, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(241, 245, 249, 0.8);
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
}

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

.sidebar-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
}

.price-item-name {
  color: rgba(241, 245, 249, 0.8);
}

.price-item-value {
  color: var(--primary);
  font-weight: 600;
}

.sidebar-button {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-1);
  border: none;
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.sidebar-button:hover {
  transform: scale(1.02);
}

.sidebar-button.secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.sidebar-button.secondary:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

@media (max-width: 1024px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

/* ===== CITY PAGES ===== */
.city-hero {
  padding: 6rem 2rem 3rem;
  background: var(--bg-dark);
}

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.city-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.city-hero p {
  color: rgba(241, 245, 249, 0.7);
}

.city-services {
  padding: 3rem 2rem;
  background: var(--bg-dark);
}

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

.city-service-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.15);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.city-service-link:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.city-service-link span:first-child {
  font-size: 1.5rem;
}

.city-service-link span:last-child {
  flex: 1;
  font-weight: 500;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 4rem 2rem;
  background: var(--bg-dark);
}

.map-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.map-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.map-info p {
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 2rem;
}

.map-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.map-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(241, 245, 249, 0.8);
}

.map-list li::before {
  content: '📍';
  font-size: 0.875rem;
}

.map-visual {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 16px;
  padding: 2rem;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

  .map-list {
    grid-template-columns: 1fr;
  }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-badge-label {
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.7);
  text-align: center;
}