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

:root {
  --red: #d42b2b;
  --red-dark: #b01f1f;
  --black: #0b0b0b;
  --card: #141414;
  --card-hover: #1c1c1c;
  --border: #222222;
  --white: #ffffff;
  --gray: #999999;
  --light-gray: #cccccc;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

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

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--light-gray); line-height: 1.75; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,43,43,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

/* ===== PILL / TAG ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(212,43,43,0.15);
  color: var(--red);
  border: 1px solid rgba(212,43,43,0.3);
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== SECTION SPACING ===== */
section { padding: 90px 0; }

/* ===== DIVIDER ===== */
.divider {
  width: 60px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 18px 0 28px;
}

/* ========================================================
   NAVIGATION
======================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11,11,11,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 28px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
}

.nav-logo .logo-flag {
  width: 36px; height: 36px;
  border-radius: 4px;
  background: linear-gradient(135deg, #002868 50%, #BF0A30 50%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

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

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

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--light-gray);
  transition: all 0.2s;
}

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

.nav-links .has-dropdown { position: relative; }

.nav-links .has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 0 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.nav-links .has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-links .has-dropdown .dropdown a {
  display: block;
  padding: 9px 18px;
  border-radius: 0;
  font-size: 0.85rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.nav-phone:hover { background: var(--red-dark); }
.nav-phone svg { width: 16px; height: 16px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================================
   LEFT SOCIAL SIDEBAR
======================================================== */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.social-sidebar .sidebar-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.social-sidebar .sidebar-line {
  width: 1px; height: 50px;
  background: var(--border);
  margin-bottom: 14px;
}

.social-sidebar a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: all 0.2s;
}
.social-sidebar a:hover { border-color: var(--red); color: var(--red); background: rgba(212,43,43,0.1); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0b0b0b;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.25) 100%);
}

/* Slide backgrounds */
.hero-slide-1 {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center right;
}
.hero-slide-2 {
  background-image: url('hero2.jpg');
  background-size: cover;
  background-position: center;
}
.hero-slide-3 {
  background-image: url('hero3.jpg');
  background-size: cover;
  background-position: center left;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: 120px 28px 80px 120px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--white);
}

.hero p {
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 38px;
  color: rgba(255,255,255,0.75);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-dot {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-dot.active,
.slider-dot:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.slider-arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover { border-color: var(--red); background: var(--red); }
.slider-arrow svg { width: 18px; height: 18px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 120px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-indicator .scroll-line {
  width: 40px; height: 1px;
  background: var(--gray);
}

/* ========================================================
   STATS STRIP
======================================================== */
.stats-strip {
  background: var(--red);
  padding: 24px 0;
}

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

.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-item .num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ========================================================
   SERVICE CARDS
======================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.service-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  box-shadow: 0 0 0 8px rgba(212,43,43,0.15);
}

.service-icon svg { width: 32px; height: 32px; color: var(--white); }

.service-card h3 { margin-bottom: 12px; }

.service-card p { font-size: 0.92rem; margin-bottom: 22px; }

.service-card .card-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 10px; }
.service-card .card-link svg { width: 14px; height: 14px; }

/* ========================================================
   WHY CHOOSE US
======================================================== */
.why-section {
  background: var(--black);
}

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

.why-image {
  position: relative;
}

/* ===== BEFORE / AFTER SLIDER ===== */
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--border);
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Wrapper clips the before image by narrowing its width */
.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Before image is kept at full slider width so object-fit aligns with the after */
.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.ba-line {
  flex: 1;
  width: 2px;
  background: #fff;
  opacity: 0.9;
}

.ba-circle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.ba-circle svg { color: #fff; }

.ba-label {
  position: absolute;
  bottom: 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
}

.ba-label-before { left: 14px; }
.ba-label-after  { right: 14px; }

.why-content { }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.25s;
}

.why-item:hover {
  border-color: var(--red);
  background: var(--card-hover);
}

.why-item-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: rgba(212,43,43,0.12);
  border: 1px solid rgba(212,43,43,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item-icon svg { width: 22px; height: 22px; color: var(--red); }

.why-item-text h4 { margin-bottom: 4px; }
.why-item-text p { font-size: 0.88rem; }

/* ========================================================
   TESTIMONIALS
======================================================== */
.testimonials-section {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(212,43,43,0.4);
  transform: translateY(-3px);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.6;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gray);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }

/* ========================================================
   CTA BANNER
======================================================== */
.cta-banner {
  background: var(--red);
  padding: 70px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.85); margin-top: 10px; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========================================================
   BLOG PAGE
======================================================== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #111 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

.page-hero p {
  max-width: 500px;
  margin-top: 12px;
}

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

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(212,43,43,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: #181818;
  position: relative;
  overflow: hidden;
}

.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0505, #0d0d0d);
}

.blog-card-img img.blog-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.blog-card:hover .blog-photo {
  opacity: 0.85;
  transform: scale(1.03);
}

.blog-card-img .img-icon {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  opacity: 0.15;
}

.blog-card-img .cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.blog-card-body { padding: 24px 24px 28px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta svg { width: 13px; height: 13px; }

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-body h3 { color: var(--red); }

.blog-card-body p { font-size: 0.88rem; margin-bottom: 20px; }

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.blog-card:hover .read-more { gap: 9px; }
.read-more svg { width: 13px; height: 13px; }

/* Featured blog card */
.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-card.featured .blog-card-img {
  aspect-ratio: auto;
  min-height: 280px;
}

.blog-card.featured .blog-card-body {
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card.featured h3 { font-size: 1.5rem; margin-bottom: 14px; }
.blog-card.featured p { font-size: 0.95rem; }

/* ========================================================
   SERVICES PAGE
======================================================== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-page-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.service-page-card:hover {
  border-color: rgba(212,43,43,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.service-page-card-header {
  padding: 36px 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.service-page-icon {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-page-icon svg { width: 30px; height: 30px; color: var(--white); }

.service-page-card-header h3 { font-size: 1.3rem; margin-bottom: 6px; }
.service-page-card-header p { font-size: 0.9rem; }

.service-page-card-body {
  padding: 0 36px 36px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--light-gray);
}

.service-feature svg {
  width: 16px; height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.service-page-card-footer {
  padding: 20px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-size: 0.8rem;
  color: var(--gray);
}

.service-price strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 800;
}

/* ========================================================
   PROCESS STEPS
======================================================== */
.process-section { background: #0d0d0d; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: var(--border);
}

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

.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
  transition: all 0.3s;
}

.process-step:hover .step-num {
  border-color: var(--red);
  background: rgba(212,43,43,0.1);
  box-shadow: 0 0 0 8px rgba(212,43,43,0.08);
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; }

/* ========================================================
   FOOTER
======================================================== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 70px 0 50px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--red); color: var(--red); background: rgba(212,43,43,0.1); }
.footer-socials a svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}

.footer-links a:hover { color: var(--red); }
.footer-links a svg { width: 12px; height: 12px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

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

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

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

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

/* ========================================================
   SECTION HEADERS
======================================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-header.left p { margin: 0; }

/* ========================================================
   MOBILE NAV OVERLAY
======================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.mobile-nav-close svg { width: 28px; height: 28px; }

/* ========================================================
   FILTER TABS
======================================================== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.filter-tab:hover { border-color: var(--red); color: var(--white); }
.filter-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ========================================================
   UTILITY CLASSES
======================================================== */
.text-red { color: var(--red); }
.text-gray { color: var(--gray); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

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

.animate {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* ========================================================
   BLOG POST PAGE
======================================================== */
/* ===== GALLERY PAGE ===== */
.gallery-section { padding: 70px 0 80px; }

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

.gallery-pair { display: flex; flex-direction: column; gap: 18px; }

.gallery-slider {
  aspect-ratio: 4/3;
  border-radius: 12px;
}

.gallery-pair-info { padding: 0 4px; }
.gallery-pair-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.gallery-pair-info p  { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }

.gallery-cta-note {
  text-align: center;
  margin-top: 56px;
  color: var(--gray);
  font-size: 0.9rem;
}

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

/* ======================================================
   BLOG POST PAGES
======================================================== */
.post-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #111 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.post-breadcrumb a { color: var(--gray); transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--red); }

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.post-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  max-width: 860px;
  margin-bottom: 28px;
}

.post-hero-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.post-author-info strong { display: block; font-size: 0.9rem; }
.post-author-info span { font-size: 0.78rem; color: var(--gray); }

.post-content-section { padding: 70px 0 90px; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.post-body h2 {
  font-size: 1.55rem;
  margin: 40px 0 14px;
  color: var(--white);
}

.post-body h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--white);
}

.post-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
}

.post-body ul, .post-body ol {
  margin: 0 0 22px 22px;
  color: rgba(255,255,255,0.78);
}

.post-body li {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.post-body strong { color: var(--white); }

.post-callout {
  background: var(--card);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.post-callout p { margin: 0; color: rgba(255,255,255,0.85); font-style: italic; }

.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.sidebar-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.sidebar-cta {
  background: var(--red);
  border-color: var(--red);
  text-align: center;
}
.sidebar-cta h4 { color: rgba(255,255,255,0.9); }
.sidebar-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; }

.related-link {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.related-link:last-child { border-bottom: none; padding-bottom: 0; }
.related-link span {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--light-gray);
  line-height: 1.4;
  transition: color 0.2s;
}
.related-link:hover span { color: var(--red); }
.related-link small { font-size: 0.74rem; color: var(--gray); margin-top: 3px; display: block; }

@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

/* ========================================================
   RESPONSIVE
======================================================== */
@media (max-width: 1100px) {
  .services-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .social-sidebar { display: none; }
  .hero-content { padding: 120px 28px 80px 28px; }
  .slider-controls { display: none; }
  .slider-arrows { display: none; }
  .scroll-indicator { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image { max-width: 480px; margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .blog-card.featured { grid-template-columns: 1fr; }
  .blog-card.featured .blog-card-img { min-height: 200px; }
  .services-page-grid { grid-template-columns: 1fr; }
  .page-hero-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .services-grid,
  .testimonials-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 40px; }
  .post-hero { padding: 100px 0 40px; }
  .hero-content { padding: 80px 20px 50px 20px; }
  .hero { min-height: 55vh; }
  .hero-slide-1 { background-size: contain; background-repeat: no-repeat; background-position: center bottom; }
  .hero-slide-2 { background-size: contain; background-repeat: no-repeat; background-position: center bottom; }
  .hero-slide-3 { background-size: contain; background-repeat: no-repeat; background-position: center bottom; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
