/* =============================================
   CIHAN AUTO SERVICE - styles.css
   Theme: Industrial / Automotive - Dark
   Colors: #0b0b0d (bg), #e10600 (accent), #fff (text)
============================================= */

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b0b0d;
  --bg-2: #111114;
  --bg-3: #18181c;
  --bg-card: #151518;
  --red: #e10600;
  --red-hover: #c40500;
  --red-glow: rgba(225, 6, 0, 0.18);
  --white: #ffffff;
  --gray: #a0a0aa;
  --gray-light: #d4d4d8;
  --border: rgba(255, 255, 255, 0.07);
  --font-head: "Bebas Neue", sans-serif;
  --font-cond: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --radius: 8px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 64px; /* mobile bar space */
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--red-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 50px;
  width: auto;
  transition: transform var(--transition);
}
.logo:hover .logo-img {
  transform: scale(1.05);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--red);
  letter-spacing: 2px;
}
.logo-sub {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition);
}
.nav-link:hover {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--red-hover);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 60% 50%,
      rgba(225, 6, 0, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 30% at 80% 20%,
      rgba(225, 6, 0, 0.06) 0%,
      transparent 50%
    ),
    var(--bg);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 11, 13, 0.85) 40%,
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.3);
  color: var(--red);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s 0.1s ease both;
}
.hero-title-accent {
  color: var(--red);
}
.hero-title-sub {
  font-size: 0.65em;
  color: var(--gray-light);
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInDown 0.7s 0.2s ease both;
}
.hero-desc strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInDown 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInDown 0.7s 0.4s ease both;
}
.hero-stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.stat-lbl {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* === RESCUE BANNER === */
.rescue-banner {
  background: linear-gradient(135deg, #1a0001 0%, #1f0002 50%, #0b0b0d 100%);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  padding: 36px 0;
}
.rescue-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.rescue-icon-wrap {
  font-size: 3rem;
  color: var(--red);
  flex-shrink: 0;
  animation: pulse-icon 2s ease-in-out infinite;
}
.rescue-text {
  flex: 1;
  min-width: 220px;
}
.rescue-title {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.rescue-text p {
  color: var(--gray);
  font-size: 0.95rem;
}
.rescue-text strong {
  color: var(--white);
}
.rescue-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* === SECTIONS COMMON === */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(225, 6, 0, 0.1);
  border: 1px solid rgba(225, 6, 0, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-desc {
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
}

/* === SERVICES === */
.services-section {
  padding: 100px 0;
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.svc-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 13, 0.75) 0%,
    rgba(11, 11, 13, 0.7) 100%
  );
  transition: background var(--transition);
  z-index: 1;
}
.service-card:hover .svc-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(11, 11, 13, 0.65) 0%,
    rgba(225, 6, 0, 0.6) 100%
  );
}
.svc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
  z-index: 3;
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-card:hover {
  border-color: rgba(225, 6, 0, 0.5);
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(225, 6, 0, 0.3),
    0 0 0 1px rgba(225, 6, 0, 0.2);
}

.svc-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 16px;
}
.svc-title {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.svc-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.svc-more {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

/* === WHY === */
.why-section {
  padding: 100px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.why-card:hover {
  border-color: rgba(225, 6, 0, 0.25);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(225, 6, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* === SHOWCASE === */
.showcase-section {
  padding: 80px 0;
  background: var(--bg);
}
.showcase-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}
.showcase-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.showcase-wrapper:hover .showcase-image {
  transform: scale(1.05);
}
.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 13, 0.95) 0%,
    rgba(11, 11, 13, 0.7) 60%,
    transparent 100%
  );
  padding: 40px 30px 30px;
}
.showcase-content {
  text-align: center;
}
.showcase-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--white);
}
.showcase-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

/* === REVIEWS === */
.reviews-section {
  padding: 100px 0;
  background: var(--bg-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.review-stars {
  color: #ffd700;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
}
.reviews-cta {
  text-align: center;
}

/* === FAQ === */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q i {
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q:hover {
  color: var(--gray-light);
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding: 0 22px 18px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === GALLERY === */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225, 6, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.6rem;
  color: #fff;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-caption {
  display: none;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active {
  display: flex;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 1rem;
}
.lightbox-close {
  top: 20px;
  right: 20px;
}
.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
}
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  color: var(--gray);
  white-space: nowrap;
}

/* === CONTACT === */
.contact-section {
  padding: 100px 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(225, 6, 0, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.contact-value {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
}
a.contact-value:hover {
  color: var(--red);
}
.contact-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* === FORM === */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}
.form-title {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

/* === MAP === */
.map-placeholder {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* === FOOTER === */
.site-footer {
  background: #07070a;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo {
  height: 70px;
  width: auto;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-brand .logo-main {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 2px;
}
.footer-brand .logo-sub {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 4px;
  display: block;
  text-transform: uppercase;
}
.footer-tagline {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--red);
}
.footer-contact p {
  margin-bottom: 10px;
}
.footer-contact a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover {
  color: var(--red);
}
.footer-contact i {
  width: 16px;
  text-align: center;
}
.footer-bottom {
  text-align: center;
  padding: 18px;
  color: rgba(160, 160, 170, 0.6);
  font-size: 0.8rem;
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--bg-card);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(225, 6, 0, 0.2);
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
  overflow: hidden;
}
.modal-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 13, 0.75) 0%,
    rgba(11, 11, 13, 0.7) 100%
  );
  z-index: 0;
}
.modal-box > * {
  position: relative;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--transition);
}
.modal-close:hover {
  color: var(--red);
}
.modal-icon {
  font-size: 2.8rem;
  color: var(--red);
  margin-bottom: 16px;
}
.modal-title {
  font-family: var(--font-cond);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.modal-desc {
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.65;
}
.modal-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.modal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  font-size: 0.9rem;
}
.modal-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === MOBILE BAR === */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  background: #0e0e12;
  border-top: 1px solid var(--border);
  height: 64px;
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition:
    color var(--transition),
    background var(--transition);
  padding: 8px 4px;
}
.mobile-bar-btn i {
  font-size: 1.2rem;
}
.mobile-bar-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.mobile-bar-btn.whatsapp:hover {
  color: #25d366;
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1e;
  border: 1px solid var(--red);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9998;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === ANIMATIONS === */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }
  .mobile-bar {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 13, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    padding: 12px 16px;
    font-size: 1.1rem;
    width: 100%;
  }
  .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .hero-content {
    padding: 40px 20px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }

  .rescue-inner {
    flex-direction: column;
    text-align: center;
  }
  .rescue-actions {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .services-grid,
  .why-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 28px 20px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn {
    justify-content: center;
  }

  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 16px;
  }
  .contact-buttons {
    flex-direction: column;
  }
  .contact-buttons .btn {
    justify-content: center;
  }
}
