/* =============================================
   NR Plus Construction & Engineering
   Color Theme: Red | Black | White
   ============================================= */

:root {
  --red: #CC0000;
  --red-dark: #8B0000;
  --red-light: #E53935;
  --black: #0D0D0D;
  --black-soft: #1A1A1A;
  --black-mid: #2C2C2C;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray: #AAAAAA;
  --gray-light: #E0E0E0;
}

/* ── 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;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }

.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

/* ── Navbar ── */
.navbar {
  position: fixed;
  background: #ffffff;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
    box-shadow: 0 2px 30px rgba(204, 0, 0, 0.2);
}

.navbar.scrolled {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 44px; height: 44px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 3.09rem; font-weight: 800; letter-spacing: 1px; color: var(--red); }
.logo-text span { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--red);
  margin-top: 3px;
}

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

.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: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black-soft);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-weight: 700;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--red); }

/* ── Hero / Parallax ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(139,0,0,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-tag span { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--red); }

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 540px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--red);
  padding: 28px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }

/* ── Intro Strip ── */
.intro-strip {
  background: var(--black-soft);
  padding: 80px 0;
  border-top: 3px solid var(--red);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.intro-text p { color: var(--gray); margin-bottom: 16px; }
.intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 3px solid var(--red);
}

/* ── Story Levels ── */
.levels { background: var(--black); }

.level-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.level-section.reverse { direction: rtl; }
.level-section.reverse > * { direction: ltr; }

.level-img {
  position: relative;
  overflow: hidden;
}
.level-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.level-section:hover .level-img img { transform: scale(1.04); }

.level-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(13,13,13,0.5));
}
.level-section.reverse .level-overlay {
  background: linear-gradient(to left, transparent, rgba(13,13,13,0.5));
}

.level-content {
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
}

.level-num {
  font-size: 5rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: var(--red);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}

.level-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 16px;
  width: fit-content;
}

.level-content h3 { font-size: 2rem; margin-bottom: 16px; }
.level-content p { color: var(--gray); margin-bottom: 24px; }

.level-features { list-style: none; margin-bottom: 32px; }
.level-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.level-features li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Parallax Divider ── */
.parallax-divider {
  position: relative;
  height: 420px;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.75);
}
.parallax-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}
.parallax-divider-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.parallax-divider-content p { color: var(--gray-light); margin-bottom: 32px; font-size: 1.05rem; }

/* ── Office Section ── */
.office-section { background: var(--black-soft); }
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.office-img { position: relative; }
.office-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.office-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--red);
  z-index: -1;
}
.office-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.office-text p { color: var(--gray); margin-bottom: 16px; }
.office-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.office-feat {
  background: var(--black-mid);
  padding: 16px;
  border-left: 3px solid var(--red);
}
.office-feat strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 4px; }
.office-feat span { font-size: 0.8rem; color: var(--gray); }

/* ── Why Us ── */
.why-us { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.why-card {
  background: var(--black-soft);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s;
  border-bottom: 3px solid transparent;
}
.why-card:hover { background: var(--black-mid); border-bottom-color: var(--red); }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(204,0,0,0.15);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.why-card p { color: var(--gray); font-size: 0.9rem; }

/* ── Process ── */
.process { background: var(--black-soft); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--red);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--black-soft);
}
.process-step h4 { font-size: 1rem; margin-bottom: 10px; }
.process-step p { color: var(--gray); font-size: 0.85rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--red);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; }
.cta-banner .btn-outline { border-color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--red); }

/* ── Footer ── */
footer {
  background: var(--white);
  border-top: 3px solid var(--red);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--black); font-size: 0.9rem; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--black-mid);
  border: 1px solid var(--black-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  transition: all 0.3s;
  cursor: pointer;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--black); font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--black); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--black);
  font-size: 0.9rem;
}
.footer-contact-icon {
  color: var(--red);
  flex-shrink: 0;
  font-style: normal;
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--black-mid);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--gray); font-size: 0.82rem; }
.footer-bottom span { color: var(--red); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.9) 50%, rgba(139,0,0,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--gray); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }
.page-hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }

/* ── Gallery ── */
.gallery-section { background: var(--black); }

.gallery-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  background: var(--black-mid);
  color: var(--gray);
  border: 1px solid var(--black-mid);
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(204,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 2rem; }
.gallery-overlay p { color: var(--white); font-size: 0.9rem; font-weight: 700; text-align: center; padding: 0 16px; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: -44px; right: 0;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--red); }

/* ── About Page ── */
.about-intro { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--red);
  padding: 28px 32px;
  text-align: center;
}
.about-badge strong { display: block; font-size: 2.5rem; font-family: 'Playfair Display', serif; }
.about-badge span { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-text .highlight { color: var(--red); font-weight: 700; }

.values-section { background: var(--black-soft); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--black);
  padding: 36px 24px;
  text-align: center;
  border-top: 3px solid var(--red);
}
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 0.88rem; }

.team-section { background: var(--black); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}
.team-card { background: var(--black-soft); overflow: hidden; }
.team-img { position: relative; height: 300px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 60%);
}
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-info span { color: var(--red); font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; }
.team-info p { color: var(--gray); font-size: 0.88rem; margin-top: 12px; }

.parallax-about {
  position: relative;
  height: 380px;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.parallax-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139,0,0,0.6);
}
.parallax-about-content { position: relative; z-index: 2; text-align: center; }
.parallax-about-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.parallax-about-content p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }

/* ── Contact Page ── */
.contact-section { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 24px; }
.contact-info p { color: var(--gray); margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(204,0,0,0.15);
  border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail-text span { color: var(--gray); font-size: 0.9rem; }

.contact-form { background: var(--black-soft); padding: 48px; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--black-mid);
  color: var(--white);
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--black); }

.map-section { background: var(--black-soft); padding: 60px 0; }
.map-wrap { position: relative; }
.map-wrap img { width: 100%; height: 420px; object-fit: cover; filter: grayscale(30%) contrast(1.1); }
.map-pin {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--red);
  padding: 20px 28px;
  max-width: 320px;
}
.map-pin strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.map-pin span { color: rgba(255,255,255,0.85); font-size: 0.88rem; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .intro-grid, .office-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .office-img::after { display: none; }
  .about-badge { right: 0; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.4rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .level-section { grid-template-columns: 1fr; }
  .level-section.reverse { direction: ltr; }
  .level-img { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .office-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 15px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e1e2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover Effects */
.social-btn:hover {
  transform: translateY(-4px);
}

/* Brand Colors */
.social-btn:nth-child(1):hover {
  background: #1877f2; /* Facebook */
}

.social-btn:nth-child(2):hover {
  background: #e4405f; /* Instagram */
}
