/* ========================================
   CIHAN AUTO SERVICE - MAIN STYLESHEET
   Premium Automotive Dark Theme
   ======================================== */

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

/* ---- CSS Variables ---- */
:root {
  --red: #e61515;
  --red-dark: #b30000;
  --red-glow: rgba(230, 21, 21, 0.4);
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #181818;
  --dark-border: #2a2a2a;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --white: #ffffff;
  --white-soft: #f0f0f0;
  --gold: #f5c518;

  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-red: 0 0 30px rgba(230, 21, 21, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

.section-padding {
  padding: 90px 0;
}

.text-red { color: var(--red); }
.text-gray { color: var(--gray-light); }

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 50px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===========================
   HEADER / NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 30px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-red);
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-logo .logo-brand span { color: var(--red); }

.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-light);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-phone span { color: var(--white); font-weight: 600; }

.btn-call {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(230, 21, 21, 0.3);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 21, 21, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(10,10,10,0.5) 100%
  );
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow .line {
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero-eyebrow span {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .highlight {
  color: var(--red);
  text-shadow: 0 0 40px rgba(230,21,21,0.4);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(230, 21, 21, 0.35);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 21, 21, 0.55);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--red);
  background: rgba(230, 21, 21, 0.08);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease infinite;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-light);
}

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

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

/* ===========================
   SERVICES STRIP
   =========================== */
.services-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 28px 0;
}

.services-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border-right: 1px solid var(--dark-border);
  color: var(--gray-light);
  font-weight: 500;
  font-size: 0.9rem;
}

.strip-item:last-child { border-right: none; }

.strip-item .icon {
  font-size: 1.3rem;
  color: var(--red);
}

/* ===========================
   ABOUT / INFO SECTION
   =========================== */
.about-section {
  padding: 100px 0;
  background: var(--dark);
}

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

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  width: 75%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: var(--shadow);
}

.about-img-secondary {
  width: 60%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow);
  border: 4px solid var(--dark);
}

.about-badge-floating {
  position: absolute;
  bottom: 140px;
  left: -20px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-red);
  z-index: 2;
}

.about-badge-floating .big-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-floating .small-text {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content .feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(230, 21, 21, 0.1);
  border: 1px solid rgba(230, 21, 21, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow-red);
}

.feature-text h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.875rem;
  color: var(--gray-light);
}

/* ===========================
   SERVICE CARDS
   =========================== */
.services-section {
  padding: 100px 0;
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230,21,21,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-red);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(230, 21, 21, 0.12);
  border: 1px solid rgba(230, 21, 21, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow-red);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card .card-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  background: rgba(230,21,21,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  transition: var(--transition);
}

.service-card:hover .card-arrow {
  background: var(--red);
  color: white;
  transform: rotate(-45deg);
}

/* ===========================
   CTA / EMERGENCY BAND
   =========================== */
.cta-band {
  background: linear-gradient(135deg, var(--red-dark) 0%, #8b0000 50%, var(--red-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-band-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-band-text p {
  font-size: 1rem;
  opacity: 0.85;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--red-dark);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  color: var(--red-dark);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
  padding: 100px 0;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:first-child img {
  height: 400px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-overlay span {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ===========================
   WHY US / FEATURES
   =========================== */
.why-section {
  padding: 100px 0;
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(230,21,21,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-card .icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(230,21,21,0.15), rgba(230,21,21,0.05));
  border: 1px solid rgba(230,21,21,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--red);
  transition: var(--transition);
}

.why-card:hover .icon-wrap {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(230,21,21,0.4);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
}

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

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p.lead {
  color: var(--gray-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(230,21,21,0.1);
  border: 1px solid rgba(230,21,21,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
}

.contact-detail h4 {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  transition: var(--transition);
}

.contact-detail a:hover { color: var(--red); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-brand .logo-text span { color: var(--red); }

.footer-brand p {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--gray-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--red);
  font-size: 1.1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.82rem;
}

.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .footer-bottom-links a {
  color: var(--gray);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-bottom .footer-bottom-links a:hover { color: var(--red); }

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 15s ease-in-out infinite alternate;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.7) 40%,
    rgba(10,10,10,0.4) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--gray);
}

.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--dark-border); }
.breadcrumb .current { color: var(--red); font-weight: 600; }

/* ===========================
   PROCESS STEPS
   =========================== */
.process-section {
  padding: 100px 0;
  background: var(--dark);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  justify-content: space-between;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(230,21,21,0.2));
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-step .step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px rgba(230,21,21,0.4);
  border: 3px solid var(--dark);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ===========================
   MOBILE MENU OVERLAY
   =========================== */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999;
  backdrop-filter: blur(8px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--dark-card);
  z-index: 1001;
  padding: 80px 30px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--dark-border);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  transition: var(--transition);
}

.mobile-close:hover { background: rgba(230,21,21,0.2); color: var(--red); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-light);
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.mobile-nav-links a:last-child { border-bottom: none; }

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--white);
  background: rgba(230,21,21,0.08);
  padding-left: 20px;
}

.mobile-nav-links a .link-icon { font-size: 1.1rem; color: var(--red); }

.mobile-contact-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 20px;
}

.mobile-contact-info p {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mobile-contact-info a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}

.mobile-contact-info .address {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* ===========================
   TOAST NOTIFICATION
   =========================== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark-card);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow), var(--shadow-red);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 340px;
}

.toast.show { transform: translateX(0); }
.toast .toast-icon { color: var(--red); font-size: 1.3rem; }
.toast .toast-msg { font-size: 0.9rem; color: var(--white); font-weight: 500; }

/* ===========================
   FLOATING CALL BUTTON
   =========================== */
.floating-call {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-call-btn {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 6px 25px rgba(230,21,21,0.5);
  animation: pulseCall 2.5s ease infinite;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.floating-call-btn:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 6px 25px rgba(230,21,21,0.5); }
  50% { box-shadow: 0 6px 35px rgba(230,21,21,0.8), 0 0 0 12px rgba(230,21,21,0.1); }
}

.floating-call-label {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  pointer-events: none;
}

.floating-call:hover .floating-call-label {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

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

  .hero-title { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; }
  .about-img-main { width: 80%; height: 280px; }
  .about-img-secondary { width: 55%; height: 200px; }
  .about-badge-floating { bottom: 70px; left: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:first-child img { height: 260px; }
  .gallery-item img { height: 200px; }

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

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

  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }

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

  .strip-item { padding: 8px 16px; font-size: 0.8rem; }

  .services-strip-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-call-label { display: none; }
}
