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

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

body {
  font-family: "Inter", sans-serif;
  color: #1a1f3c;
  background: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== VARIABLES ===== */
:root {
  --red: #d72229;
  --yellow: #f5a800;
  --navy: #1a1f3c;
  --grey: #f4f5f7;
  --white: #ffffff;
  --nav-h: 70px;
  --transition: 0.3s ease;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  padding-left: 16px;
  border-left: 4px solid var(--red);
  margin-bottom: 24px;
}

.section-heading.light {
  color: var(--white);
}

.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.btn-red:hover,
.btn-red:focus {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
  outline: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(26, 31, 60, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* .nav-logo::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: super;
  font-size: 0.5em;
} */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--white);
  outline: none;
}

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

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.mobile-menu a:hover {
  color: var(--yellow);
  padding-left: 8px;
}

/* ===== HERO SLIDER ===== */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  background-color: #1a1f3c;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  z-index: 0;
}

.slide.active::before {
  animation: kenburns 6s ease-in-out forwards;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(26, 31, 60, 0.85) 0%,
      rgba(26, 31, 60, 0.3) 60%,
      transparent 100%);
  z-index: 1;
}



.slide-content {
  max-width: 780px;
  padding: 0 80px 100px;
  position: relative;
  z-index: 2;
}

.slide-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

.slide.active .slide-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease 0.4s,
    transform 0.6s ease 0.4s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.6s,
    transform 0.6s ease 0.6s;
}

.slide.active .slide-sub {
  opacity: 1;
  transform: translateY(0);
}

.slide-cta {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease 0.8s,
    transform 0.6s ease 0.8s;
}

.slide.active .slide-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Slider controls */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.arrow-btn {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  background: rgba(26, 31, 60, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition);
  backdrop-filter: blur(6px);
}

.arrow-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ===== STATS BAR ===== */
#stats {
  background: var(--navy);
  padding: 48px 0;
  position: relative;
}

#stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--red);
  opacity: 0.5;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.stat-suffix {
  font-size: 1.4rem;
}

/* ===== ABOUT ===== */
#about {
  padding: 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-image-panel {
  position: relative;
  overflow: hidden;
  background: var(--grey);
}

.about-image-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 2;
}

.about-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-image-panel:hover img {
  transform: scale(1.02);
}

.about-text-panel {
  position: relative;
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.about-quote-mark {
  position: absolute;
  top: 10px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--yellow);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: var(--red);
  line-height: 1.5;
  margin-bottom: 24px;
  position: relative;
}

.about-text-panel p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
  position: relative;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
  position: relative;
  transition:
    gap var(--transition),
    color var(--transition);
}

.learn-more-link:hover {
  color: #a51a1f;
  gap: 12px;
}

/* ===== PROCESS PARALLAX ===== */
#process {
  position: relative;
  padding: 100px 40px;
  background-color: var(--navy);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

#process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 60, 0.82);
}

#process .container {
  position: relative;
  z-index: 1;
}

.process-heading-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.process-heading-wrap .section-heading {
  display: inline-block;
  border-left: none;
  border-bottom: 4px solid var(--yellow);
  padding-left: 0;
  padding-bottom: 8px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-step {
  text-align: center;
  padding-top: 20px;
  border-top: 3px solid var(--yellow);
}

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  margin-bottom: 12px;
}

.process-title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
#services {
  padding: 100px 0;
  background: var(--grey);
}

.services-heading-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.services-heading-wrap .section-heading {
  display: inline-block;
  border-left: none;
  border-bottom: 4px solid var(--red);
  padding-left: 0;
  padding-bottom: 8px;
}

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

.service-card {
  background: var(--white);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--red);
}

.service-card:nth-child(even)::before {
  background: var(--yellow);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 31, 60, 0.13);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  font-size: 2.8rem;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.service-card:nth-child(even) .service-icon {
  color: var(--yellow);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

/* ===== PORTFOLIO ===== */
#portfolio {
  background: #1A1F3C;
  padding: 80px 40px;
  text-align: center;
}

#portfolio .section-heading.light {
  color: #fff;
}

.portfolio-subhead {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: -10px 0 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #0d1124;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(215, 34, 41, 0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-tag {
  background: #F5A800;
  color: #1A1F3C;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.portfolio-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lb-content {
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lb-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lb-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

#lb-tag {
  background: #F5A800;
  color: #1A1F3C;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 3px;
}

#lb-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(215, 34, 41, 0.75);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  z-index: 10000;
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

.lb-prev:hover,
.lb-next:hover {
  background: #D72229;
}

/* Responsive portfolio */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-prev {
    left: 6px;
  }

  .lb-next {
    right: 6px;
  }
}

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

/* ===== WHY CHOOSE US ===== */
#why {
  padding: 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 55% 45%;
}

.why-text-panel {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-feature-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}

.why-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey);
}

.why-feature-row:last-child {
  border-bottom: none;
}

.why-check {
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-top: 2px;
}

.why-feature-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.why-image-panel {
  position: relative;
  overflow: hidden;
  background: var(--grey);
  min-height: 420px;
}

.why-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-stat-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 80%;
  background: var(--navy);
  color: var(--white);
  border-top: 3px solid var(--red);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.6;
}

.why-stat-badge .why-stat-num {
  color: var(--yellow);
  font-weight: 700;
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background-color: var(--red);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(215, 34, 41, 0.75);
}

.parallax-divider-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.parallax-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.4;
  margin-bottom: 16px;
}

.parallax-signature {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== CONTACT ===== */
#contact {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 560px;
}

.contact-left {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%) -10px 0,
    var(--navy);
  background-size: 20px 20px;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 34, 41, 0.15), transparent 70%);
}

.contact-left::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(245, 168, 0, 0.1),
      transparent 70%);
}

.contact-left .section-heading {
  color: var(--white);
  margin-top: 12px;
}

.eyebrow-yellow {
  color: var(--yellow);
}

.contact-link {
  color: rgba(255, 255, 255, 0.82);
}

.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(215, 34, 41, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--yellow);
}

.contact-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.contact-text strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition:
    background var(--transition),
    transform var(--transition);
}

.social-btn:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-3px);
}

.social-btn--whatsapp {
  background: #25d366;
}

.contact-right {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 3px solid var(--red);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-logo::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: super;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contact-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
  z-index: 900;
  border: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--yellow);
  color: var(--navy);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lb-content {
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lb-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lb-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

#lb-tag {
  background: #f5a800;
  color: #1a1f3c;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 3px;
}

#lb-title {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(215, 34, 41, 0.75);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  z-index: 10000;
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

.lb-prev:hover,
.lb-next:hover {
  background: #d72229;
}

/* ===== ANIMATIONS ===== */
@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* ===== RESPONSIVE ===== */
@media (hover: none) {

  #process,
  .parallax-divider {
    background-attachment: scroll;
  }
}

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

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

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

  .footer-grid>*:first-child {
    grid-column: 1 / -1;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .why-image-panel {
    min-height: 320px;
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .about-image-panel img {
    min-height: 280px;
  }

  .about-text-panel {
    padding: 48px 28px;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(4)::after {
    display: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(215, 34, 41, 0.25);
    padding-bottom: 28px;
  }

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

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

  .lb-prev {
    left: 6px;
  }

  .lb-next {
    right: 6px;
  }

  .why-text-panel {
    padding: 56px 28px;
  }

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

  .contact-left {
    padding: 56px 28px;
  }

  .contact-right {
    min-height: 300px;
  }

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

  .footer-grid>*:first-child {
    grid-column: auto;
  }

  .slider-arrows {
    padding: 0 8px;
  }

  .arrow-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .slide-content {
    padding: 0 24px 80px;
  }

  #process {
    padding: 72px 24px;
  }
}

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .slide-title {
    font-size: 1.7rem;
  }
}
