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

:root {
  --red:       #e31e24;
  --red-dark:  #c01a1f;
  --bg-dark:   #141414;
  --bg-card:   #1e1e1e;
  --text:      #ffffff;
  --text-muted:#b0b0b0;
  --font:      'Inter', sans-serif;
  --radius:    14px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

ul { list-style: none; }

/* ─────────────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ─────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-grid { flex-shrink: 0; }

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

.logo-design {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.logo-depot {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.logo-global {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
}

/* Nav spacer */
.nav-spacer { flex: 1; }

/* Hero-bottom dots — REMOVED from navbar, now in hero section */

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover { color: #fff; }

.has-dropdown a svg { opacity: 0.7; }
.has-dropdown { position: relative; }

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  min-width: 240px;
  padding: 16px 0 8px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}

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

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  transition: color 0.18s, padding-left 0.18s, background 0.18s;
  border-left: 2px solid transparent;
}

.dropdown li a:hover {
  color: #fff;
  padding-left: 28px;
  border-left-color: var(--red);
  background: rgba(227,30,36,0.06);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.search-btn {
  display: none !important;
}

.search-btn:hover { color: #fff; }

.btn-talk {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 9px 20px;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-talk:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

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

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* ─────────────────────────────────────────────────
   SECTION 1 — HERO SLIDESHOW
───────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Slides Track */
.slides-track {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 0s;
  background-color: #2a3a4a; /* placeholder colour */
}

/* Placeholder gradient when no image */
.slide:nth-child(1) { background-color: #1e3045; }
.slide:nth-child(2) { background-color: #1a2e20; }
.slide:nth-child(3) { background-color: #2d1f2a; }

.slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 8s ease;
}

.slide.zoom-in {
  transform: scale(1.08);
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.10) 100%
  );
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(140px, 12vw, 240px); /* Pushed more right */
  padding-right: 60px;
  padding-top: var(--nav-h);
  max-width: 1400px; /* Much wider to allow 1-line title */
  padding-bottom: 80px; 
}

.hero-title {
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  animation: fadeSlideUp 1s ease 0.3s both;
  white-space: nowrap;
}

.hero-sub {
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeSlideUp 1s ease 0.5s both;
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  animation: fadeSlideUp 1s ease 0.7s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--red);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(227,30,36,0.35);
}

.social-btn:hover {
  background: var(--red-dark);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(227,30,36,0.5);
}

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

/* ─────────────────────────────────────────────────
   HERO DOTS — bottom center
───────────────────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.38);
  transition: background 0.3s, width 0.35s, border-radius 0.35s;
  padding: 0;
  flex-shrink: 0;
}

.hdot.active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(227,30,36,0.7);
}

.hdot:hover:not(.active) {
  background: rgba(255,255,255,0.65);
}

/* ─────────────────────────────────────────────────
   SECTION 2 — LEGACY / STATS
───────────────────────────────────────────────── */
.legacy-section {
  background: var(--bg-dark);
  padding: 90px 40px;
  position: relative;
}

.legacy-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stat-number {
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.legacy-heading {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
}

.legacy-para {
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  margin-top: 12px;
  transition: background 0.25s, transform 0.2s;
}

.btn-outline-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* Legacy Image Card */
.legacy-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}

.legacy-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #2a3540;
  position: relative;
}

.legacy-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.legacy-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3045 0%, #2a4030 100%);
  z-index: -1; /* shown if img fails to load */
}

.project-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 30px 22px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.play-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.project-label-text {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

/* Scroll-to-top button */
.scroll-top {
  position: absolute;
  bottom: 24px;
  right: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────
   SECTION 3 — SERVICES
───────────────────────────────────────────────── */
.services-section {
  background: #111;
  padding: 90px 40px;
}

.services-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Split Images */
.services-images {
  display: flex;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.svc-img-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-img-panel:hover .svc-img {
  transform: scale(1.05);
}

.svc-img-placeholder {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.left-panel .svc-img-placeholder { background: linear-gradient(160deg, #1a3040, #0e1e2a); }
.right-panel .svc-img-placeholder { background: linear-gradient(160deg, #1a2a10, #0e1a08); }

.svc-divider {
  width: 3px;
  background: var(--bg-dark);
  flex-shrink: 0;
  z-index: 2;
}

/* Services Text */
.services-heading {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 22px;
}

.services-para {
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 28px;
  text-align: justify;
}

.highlight {
  color: var(--red);
  font-weight: 500;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(227, 30, 36, 0.6);
}

.btn-red-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
}

.btn-red-solid:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────
   SECTION 4 — ABOUT US
───────────────────────────────────────────────── */
.about-section {
  background: var(--bg-dark);
  padding: 90px 40px;
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-heading {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1;
}

.about-para {
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: justify;
}

.about-para strong {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

.about-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

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

.about-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a2e45, #0e1820);
  z-index: -1;
}

/* ─────────────────────────────────────────────────
   SECTION 5 — OUR PROJECTS
───────────────────────────────────────────────── */
.projects-section {
  background: #111;
  padding: 80px 40px 0;
}

.projects-header {
  max-width: 1300px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.projects-heading {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.projects-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 460px;
  text-align: right;
}

/* Projects Carousel Wrap */
.projects-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

.projects-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.proj-item {
  display: flex;
  flex-direction: column;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

/* For carousel we need width constraint */
#projectsTrack .proj-item {
  flex: 0 0 33.3333%; /* Show 3 on desktop */
}

.proj-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: rgba(227, 30, 36, 0.3);
}

.proj-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proj-item:hover .proj-img {
  transform: scale(1.05);
}

.proj-info {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #161616;
  flex-grow: 1;
}

.proj-name {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.proj-loc {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.4;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--red);
}

.prev-btn { left: 24px; }
.next-btn { right: 24px; }

/* ─────────────────────────────────────────────────
   SECTION 6 — CONTACT
───────────────────────────────────────────────── */
.contact-section {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-heading span { color: var(--red); }

.contact-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.contact-item svg { flex-shrink: 0; }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #1e1e1e;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: #2a2a2a;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: #fff;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }

.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

.btn-submit {
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  font-family: var(--font);
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────
   SECTION 7 — INSTAGRAM GALLERY
───────────────────────────────────────────────── */
.insta-section {
  padding: 80px 40px;
  background: var(--bg-dark);
}
.insta-header {
  max-width: 1300px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.insta-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.insta-link {
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.insta-link:hover { color: #fff; }
.insta-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(227,30,36,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-item:hover .insta-img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer {
  position: relative;
  background: #111;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  font-family: var(--font);
}

/* Topographic background */
.footer::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='800' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,350 Q100,300 200,350 T400,350 T600,350 T800,350 M0,360 Q100,310 200,360 T400,360 T600,360 T800,360 M0,370 Q100,320 200,370 T400,370 T600,370 T800,370 M0,380 Q100,330 200,380 T400,380 T600,380 T800,380' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom center;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 35% 15% 15% 35%;
  gap: 40px;
}

/* Col 1: Brand */
.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

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

.ft-logo-d { font-size: 14px; font-weight: 400; color: #fff; }
.ft-logo-b { font-size: 14px; font-weight: 400; color: #fff; }
.ft-logo-g { font-size: 9px; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }

.ft-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  max-width: 380px;
}

.ft-nl-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.ft-nl-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-nl-input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  width: 240px;
  outline: none;
  transition: border-color 0.2s;
}

.ft-nl-input:focus {
  border-color: var(--red);
}

.ft-nl-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.ft-nl-btn:hover {
  background: var(--red-dark);
}

/* Col 2, 3, 4: Links & Contact */
.ft-col {
  display: flex;
  flex-direction: column;
}

.ft-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.ft-links li a:hover {
  color: #fff;
}

.ft-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.ft-email {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.ft-email:hover { color: #fff; }

.ft-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ft-social {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, transform 0.2s;
}

.ft-social:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 40px;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.ft-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.ft-legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.ft-legal a:hover {
  color: #fff;
}

.ft-sep {
  color: rgba(255,255,255,0.2);
}

/* Floating Scroll Top */
.ft-scroll-top {
  position: absolute;
  right: 40px;
  bottom: 24px;
  width: 36px;
  height: 36px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 20;
}

.ft-scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════
   ABOUT US PAGE STYLES
═══════════════════════════════════════════════════ */

/* 1. Header */
.about-header {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
}

.about-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.about-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
  z-index: -1;
}

.about-header-content h1 {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

/* 2. Who we are */
.who-we-are {
  background: var(--bg-dark);
  padding: 100px 40px;
  text-align: center;
}

.who-inner {
  max-width: 900px;
  margin: 0 auto;
}

.who-heading {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.who-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* 3. Overlap Sections (Structure & Design Approach) */
.overlap-section {
  background: #fff;
  padding: 60px 40px 100px;
}

.overlap-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.overlap-img-wrap {
  position: relative;
  width: 70%;
  aspect-ratio: 16/10;
}

.overlap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlap-placeholder {
  position: absolute;
  inset: 0;
  background: #eaeaea;
  z-index: -1;
}

.overlap-box {
  background: #fff;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  width: 45%;
  position: absolute;
  z-index: 2;
}

.box-right { right: 0; }
.box-left { left: 0; }

.overlap-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 24px;
}

.overlap-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

.line-right { margin-left: auto; }
.text-right { text-align: right; }

.overlap-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.align-right-section .overlap-inner {
  justify-content: flex-end;
}

/* 4. Core Values */
.core-values-section {
  position: relative;
  padding: 120px 40px;
  background: #111;
}

.cv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.85); /* Dark overlay */
  z-index: 1;
}

.cv-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.cv-header {
  text-align: center;
  margin-bottom: 60px;
}

.cv-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cv-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cv-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.cv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.cv-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 50px 40px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cv-box:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
  border-color: var(--red);
}

.cv-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.cv-box:hover .cv-title {
  color: var(--red);
}

.cv-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════════════
   PROJECT DETAIL PAGES
═══════════════════════════════════════════════════ */
.proj-filters-wrap {
  background: var(--bg-dark);
  padding: 0 40px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.proj-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   PROJECTS PAGE
═══════════════════════════════════════════════════ */

/* Intro */
.proj-page-intro {
  background: #fff;
  padding: 100px 40px 80px;
  border-bottom: 1px solid #eee;
}

.proj-intro-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px 60px;
  align-items: end;
}

.proj-intro-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  align-self: center;
}

.proj-intro-heading {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.proj-intro-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  align-self: end;
  padding-bottom: 8px;
  border-left: 3px solid var(--red);
  padding-left: 20px;
}

/* Grid */
.proj-page-grid-section {
  background: #0d0d0d;
  padding: 80px 40px 100px;
}

.proj-page-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* Card */
.pcard {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.pcard-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.pcard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.pcard-placeholder {
  position: absolute;
  inset: 0;
}

/* Overlay slides up on hover */
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(227,30,36,0.9) 0%, rgba(227,30,36,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pcard-icon {
  opacity: 0;
  transform: translate(10px, 10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.pcard:hover .pcard-img { transform: scale(1.08); }
.pcard:hover .pcard-overlay {
  opacity: 1;
  transform: translateY(0);
}
.pcard:hover .pcard-icon {
  opacity: 1;
  transform: translate(0, 0);
}

/* Card Info */
.pcard-info {
  padding: 22px 20px 28px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.pcard:hover .pcard-info {
  background: #1a1a1a;
}

.pcard-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.pcard-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.pcard:hover .pcard-name { color: var(--red); }

.pcard-loc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════
   CONTACT US PAGE
═══════════════════════════════════════════════════ */

/* Info Cards */
.contact-cards-section {
  padding: 80px 40px;
  background: #fff;
}

.contact-cards-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #111;
  padding: 50px 30px;
  text-align: center;
  border-radius: 0; /* Sharper edges */
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

/* Colorful red accent line on top that expands on hover */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(227,30,36,0.15); /* Red tinted shadow */
}

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

.contact-card-icon {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(227,30,36,0.1); /* Colorful red tint */
  color: var(--red);
  border-radius: 50%;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
}

.contact-card-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.contact-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.contact-card-link {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-link:hover {
  color: var(--red);
}

/* Map & Form Section */
.contact-main-section {
  padding: 0;
  background: #fff;
}

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

.contact-map-wrap {
  min-height: 600px;
  position: relative;
}

.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-form-wrap {
  padding: 80px 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cf-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cf-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cf-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  max-width: 500px;
}

.cf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-label {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.cf-input, .cf-select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #222;
  border-radius: 6px;
  background: transparent;
  font-size: 15px;
  color: #111;
  font-family: inherit;
  transition: border-color 0.3s;
}

.cf-input::placeholder {
  color: #999;
}

.cf-input:focus, .cf-select:focus {
  outline: none;
  border-color: var(--red);
}

.cf-textarea {
  resize: vertical;
  min-height: 120px;
}

.cf-select-wrap {
  position: relative;
}

.cf-select {
  appearance: none;
  cursor: pointer;
  color: #666;
}

.cf-select:valid {
  color: #111;
}

.cf-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}

.cf-submit {
  align-self: flex-start;
  padding: 16px 32px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
}

.cf-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────
   REVEAL ON SCROLL ANIMATION
───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ─────────────────────────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .legacy-inner,
  .services-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .projects-desc {
    text-align: left;
    max-width: 100%;
  }

  .services-images {
    height: 380px;
  }

  .about-img-wrap {
    aspect-ratio: 16/9;
    max-height: 400px;
  }

  .overlap-img-wrap { width: 100%; aspect-ratio: 4/3; }
  .overlap-box {
    position: relative;
    width: 90%;
    margin: -60px auto 0;
    padding: 30px;
  }
  .overlap-section { padding: 40px 20px; }
  .box-right, .box-left { right: auto; left: auto; }
  .align-right-section .overlap-inner { justify-content: center; }

  .core-values-section { padding: 80px 20px; }
  .cv-grid { grid-template-columns: 1fr; gap: 24px; }
  .cv-box { padding: 40px 30px; }

  #projectsTrack .proj-item { flex: 0 0 50%; /* Show 2 on tablet */
  }

  .proj-intro-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .proj-intro-tag { writing-mode: horizontal-tb; transform: none; }
  .proj-page-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-cards-inner { grid-template-columns: 1fr; gap: 20px; }
  .contact-main-inner { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 400px; }
  .contact-form-wrap { padding: 60px 40px; }
  .insta-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .navbar { padding: 0 20px; }

  .slide-dots { padding-left: 10px; gap: 6px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(15,15,15,0.97);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    backdrop-filter: blur(12px);
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }
  .btn-talk { display: none; }

  .hero-content {
    padding-left: 24px;
    padding-right: 20px;
    padding-top: var(--nav-h);
    max-width: 100%;
  }

  .hero-bottom { flex-wrap: wrap; gap: 16px; }

  .legacy-section,
  .services-section,
  .about-section,
  .projects-section,
  .contact-section { padding: 60px 20px; }

  .projects-section { padding-bottom: 0; }

  .services-images { height: 280px; }

  #projectsTrack .proj-item { flex: 0 0 100%; /* Show 1 on mobile */
    aspect-ratio: 1/1; 
  }

  .proj-page-intro { padding: 60px 20px; }
  .proj-page-grid-section { padding: 40px 20px 60px; }
  .proj-page-grid { grid-template-columns: repeat(1, 1fr); gap: 2px; }
  
  .contact-cards-section { padding: 40px 20px; }
  .contact-form-wrap { padding: 40px 20px; }
  .contact-map-wrap { min-height: 300px; }
  
  .footer-inner { padding: 24px 20px; }

  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .footer-bottom-inner { 
    flex-direction: column; 
    gap: 16px; 
    text-align: center; 
  }

  .ft-nl-form { flex-direction: column; align-items: stretch; }
  .ft-nl-input { width: 100%; }
  
  .ft-scroll-top { right: 20px; bottom: 80px; }
  
  .who-we-are { padding: 60px 20px; }
  .overlap-box { width: 100%; margin: -40px 0 0 0; padding: 24px; }
  .overlap-section { padding: 20px 20px 60px; }
  .cv-heading { font-size: 32px; }
}

/* ─────────────────────────────────────────────────
   EXPERTISE PAGES
───────────────────────────────────────────────── */
.expertise-intro {
  background: var(--bg-dark);
  padding: 80px 40px;
}
.expertise-intro-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.expertise-intro-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.expertise-intro-left p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.expertise-philosophy {
  background: #111;
  padding: 80px 40px;
}
.phil-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.phil-left h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin-bottom: 24px;
}
.phil-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}
.phil-right img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.expertise-capabilities {
  background: var(--bg-dark);
  padding: 80px 40px;
}
.cap-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.cap-card {
  background: #161616;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}
.cap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 36, 0.4);
}
.cap-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--red);
}
.cap-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
}

.expertise-impact {
  background: #0a0a0a;
  padding: 100px 40px;
  text-align: center;
}
.impact-inner {
  max-width: 800px;
  margin: 0 auto;
}
.impact-inner h2 {
  font-size: clamp(32px, 5vw, 50px);
  color: #fff;
  margin-bottom: 24px;
}
.impact-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .expertise-intro-inner, .phil-inner {
    grid-template-columns: 1fr;
  }
}
