/* ═══════════════════════════════════════════════════════════
   ELITE RENOVATIONS — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --primary: #0f1923;
  --primary-light: #1a2a3a;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-dark: #a8892e;
  --cream: #f8f4ed;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e0d8;
  --shadow-sm: rgba(0, 0, 0, 0.08);
  --shadow: rgba(0, 0, 0, 0.14);
  --shadow-lg: rgba(0, 0, 0, 0.28);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-nav: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --nav-height: 80px;
  --nav-height-sm: 66px;
  --container-max: 1280px;
  --container-pad: clamp(20px, 5vw, 80px);
  --radius: 8px;
  --radius-lg: 16px;
  --ease: 0.3s ease;
  --ease-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Section Labels & Titles ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-subtitle {
  margin: 0 auto;
}
.section-header.light .section-title {
  color: var(--white);
}
.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--primary);
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all var(--ease);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.38);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid currentColor;
  transition: all var(--ease);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ── */
.reveal-section,
.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal-section.revealed,
.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-card:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-card:nth-child(4) {
  transition-delay: 0.08s;
}
.reveal-card:nth-child(5) {
  transition-delay: 0.16s;
}
.reveal-card:nth-child(6) {
  transition-delay: 0.24s;
}
.reveal-card:nth-child(7) {
  transition-delay: 0.1s;
}
.reveal-card:nth-child(8) {
  transition-delay: 0.2s;
}
.reveal-card:nth-child(9) {
  transition-delay: 0.3s;
}

/* ── Keyframes ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition:
    background var(--ease),
    box-shadow var(--ease),
    height var(--ease);
}
.navbar.transparent {
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15, 25, 35, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  height: var(--nav-height-sm);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  filter: brightness(0) invert(1);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform var(--ease);
}
.nav-logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.06);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-nav);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link .fa-chevron-down {
  font-size: 0.65rem;
  transition: transform var(--ease);
}
.nav-dropdown:hover .fa-chevron-down,
.nav-dropdown.open .fa-chevron-down {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: relative;
}
/* Transparent bridge fills the gap so the mouse never leaves the hover zone */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 12px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--primary);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  min-width: 224px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 6px;
  font-family: var(--font-nav);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  transition:
    background var(--ease),
    color var(--ease);
}
.dropdown-item i {
  width: 18px;
  color: var(--gold);
  font-size: 0.82rem;
}
.dropdown-item:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--primary);
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all var(--ease);
}
.nav-phone-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.nav-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('../images/hero.jpeg')
    center/cover no-repeat fixed;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8, 15, 24, 0.93) 0%,
    rgba(8, 15, 24, 0.78) 55%,
    rgba(8, 15, 24, 0.6) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) var(--container-pad) 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}
.tagline-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp 1.1s ease 0.3s both;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
}
.badge i {
  color: var(--gold);
}
.hero-form-wrapper {
  animation: fadeInRight 1s ease 0.2s both;
}
.hero-form-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.form-header {
  background: var(--primary);
  padding: 24px 28px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.form-header p {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.hero-form {
  padding: 24px 28px;
}
.form-group {
  margin-bottom: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group label i {
  color: var(--gold);
  font-size: 0.72rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition:
    border-color var(--ease),
    box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath fill='none' stroke='%23555' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 78px;
}
.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--primary);
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: all var(--ease);
  margin-bottom: 12px;
}
.form-submit-btn:hover {
  background: var(--primary);
  color: var(--gold);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.3);
  transform: translateY(-1px);
}
.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-disclaimer i {
  color: var(--gold);
}
.form-success {
  display: none;
  text-align: center;
  padding: 36px 28px;
}
.form-success.show {
  display: block;
}
.form-success i {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 16px;
  display: block;
}
.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1s both;
}
.scroll-dot {
  width: 1.5px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.8), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-wrapper:hover img {
  transform: scale(1.04);
}
.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}
.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-lead {
  font-size: 1.08rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-text {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition:
    transform var(--ease-slow),
    box-shadow var(--ease-slow);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.service-card.featured {
  border: 2px solid var(--gold);
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--primary);
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.service-icon-wrapper {
  position: absolute;
  top: 175px;
  right: 20px;
  z-index: 2;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  border: 3px solid var(--white);
}
.service-img {
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.06);
}
.service-body {
  padding: 28px 24px 24px;
}
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-body p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-features {
  margin-bottom: 22px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-dark);
  padding: 4px 0;
}
.service-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition:
    gap var(--ease),
    color var(--ease);
}
.service-link:hover {
  gap: 12px;
  color: var(--gold-dark);
}
.service-link i {
  font-size: 0.75rem;
  transition: transform var(--ease);
}
.service-link:hover i {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════ */
.portfolio {
  padding: 100px 0;
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.portfolio-item:hover img {
  transform: scale(1.08);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 24, 0.9) 0%,
    rgba(8, 15, 24, 0.3) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--ease-slow);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-category {
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
}
.portfolio-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.9);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transform: scale(0);
  transition:
    transform var(--ease),
    background var(--ease);
}
.portfolio-item:hover .portfolio-zoom {
  transform: scale(1);
}
.portfolio-zoom:hover {
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.why-us {
  padding: 100px 0;
  position: relative;
  background: var(--primary);
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920&q=80')
    center/cover no-repeat;
  opacity: 0.06;
}
.why-us .section-label {
  justify-content: center;
}
.why-us .section-title {
  color: var(--white);
}
.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition:
    background var(--ease),
    border-color var(--ease),
    transform var(--ease-slow);
}
.why-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-6px);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition:
    background var(--ease),
    transform var(--ease);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--primary);
  transform: scale(1.1) rotate(-5deg);
}
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT CTA
   ═══════════════════════════════════════════════════════════ */
.contact-cta {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
}
.cta-content .section-label {
  justify-content: center;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-content p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions .btn-outline {
  color: var(--primary);
  border-color: rgba(15, 25, 35, 0.4);
}
.cta-actions .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--primary);
}
.footer-main {
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}
.footer-logo img {
  filter: brightness(0) invert(1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition:
    background var(--ease),
    color var(--ease),
    transform var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}
.footer-nav h5,
.footer-contact h5 {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition:
    color var(--ease),
    gap var(--ease);
}
.footer-nav li a:hover {
  color: var(--gold);
  gap: 12px;
}
.footer-nav li a i {
  font-size: 0.75rem;
  color: var(--gold);
}
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-contact ul li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--ease);
}
.footer-contact ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  transition: color var(--ease);
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — Page Hero Banner
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 460px;
  background: center/cover no-repeat fixed;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8, 15, 24, 0.88) 0%,
    rgba(8, 15, 24, 0.65) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  padding-top: calc(var(--nav-height) + 20px);
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--gold);
  transition: color var(--ease);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb .sep {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero .hero-tagline {
  animation: none;
  opacity: 1;
  margin-bottom: 12px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats-bar-stat {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
}
.stats-bar-stat:last-child {
  border-right: none;
}
.stats-bar-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
  line-height: 1;
}
.stats-bar-stat .stat-plus {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
}
.stats-bar-stat .stat-label {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  background: var(--white);
  transition:
    transform var(--ease-slow),
    box-shadow var(--ease-slow);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}
.team-img {
  height: 280px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}
.team-card:hover .team-img img {
  transform: scale(1.05);
}
.team-img-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gold);
}
.team-info {
  padding: 24px;
}
.team-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.team-social {
  display: flex;
  gap: 8px;
}
.team-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: all var(--ease);
}
.team-social a:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ── Values / Feature Cards ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition:
    border-color var(--ease),
    box-shadow var(--ease-slow),
    transform var(--ease-slow);
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-4px);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition:
    background var(--ease),
    transform var(--ease);
}
.value-card:hover .value-icon {
  background: var(--gold);
  color: var(--primary);
  transform: scale(1.08) rotate(-5deg);
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Service Detail Alternating Rows ── */
.service-detail-section {
  padding: 100px 0;
}
.service-detail-section.alt {
  background: var(--cream);
}
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.service-detail-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-detail-img:hover img {
  transform: scale(1.04);
}
.service-detail-content .section-label {
  justify-content: flex-start;
}
.service-detail-features {
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.service-detail-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.service-detail-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.service-anchor {
  display: block;
  position: relative;
  top: calc(-1 * var(--nav-height) - 20px);
  visibility: hidden;
}

/* ── Process Steps ── */
.process-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.process-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80')
    center/cover no-repeat;
  opacity: 0.05;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: rgba(201, 168, 76, 0.25);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.6);
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ── FAQ Accordion ── */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--ease);
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question i {
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 22px;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ── Portfolio Filter ── */
.portfolio-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.filter-btn {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid var(--border);
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

/* ── Contact Page ── */
.contact-page-section {
  padding: 100px 0;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.contact-info-card {
  padding: 32px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition:
    border-color var(--ease),
    box-shadow var(--ease-slow),
    transform var(--ease-slow);
}
.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 16px;
  transition:
    background var(--ease),
    color var(--ease);
}
.contact-info-card:hover .contact-card-icon {
  background: var(--gold);
  color: var(--primary);
}
.contact-info-card h4 {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  transition: color var(--ease);
}
.contact-info-card a:hover {
  color: var(--gold);
}
.contact-page-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px var(--shadow);
  overflow: hidden;
}
.contact-form-header {
  background: var(--primary);
  padding: 36px 40px;
  border-bottom: 3px solid var(--gold);
}
.contact-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.contact-page-form {
  padding: 40px;
}
.contact-page-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.map-embed {
  margin-top: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* ── Inner-Page CTA Section ── */
.cta-section {
  position: relative;
  padding: 100px 0 120px;
  background: var(--primary);
  overflow: hidden;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80')
    center / cover no-repeat;
  opacity: 0.05;
}
.cta-section .cta-content {
  position: relative;
  z-index: 1;
}
.cta-section .section-label {
  color: var(--gold);
}
.cta-section .section-title {
  color: var(--white);
}
.cta-section .cta-content > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}
.cta-section .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ── About Story Layout (side-by-side) ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-lg);
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}
.about-year-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  font-family: var(--font-heading);
}
.about-year-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-year-badge .badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 36px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.about-checklist li i {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Inner Page Responsive ── */
@media (max-width: 1024px) {
  .page-hero {
    height: 360px;
    background-attachment: scroll;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar-stat:nth-child(2) {
    border-right: none;
  }
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail-img img {
    height: 320px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid::before {
    display: none;
  }
  .contact-info-cards {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap img {
    height: 360px;
  }
  .about-checklist {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-hero {
    height: 300px;
    background-attachment: scroll;
  }
  .stats-bar {
    padding: 32px 0;
  }
  .stats-bar-stat {
    border-right: none;
    padding: 12px 0;
  }
  .service-detail-section {
    padding: 64px 0;
  }
  .service-detail-features {
    grid-template-columns: 1fr;
  }
  .process-section {
    padding: 64px 0;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-section {
    padding: 64px 0;
  }
  .contact-page-section {
    padding: 64px 0;
  }
  .contact-page-form {
    padding: 24px 20px;
  }
  .contact-form-header {
    padding: 28px 24px;
  }
  .contact-page-form .form-row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .page-hero {
    height: 260px;
    padding-bottom: 40px;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

/* ── Large Desktop (≥ 1400px) ── */
@media (min-width: 1400px) {
  .hero-container {
    grid-template-columns: 1fr 480px;
  }
}

/* ── Laptop / Tablet Landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    max-width: 680px;
    padding-bottom: 60px;
  }
  .hero-form-wrapper {
    animation: fadeInUp 0.9s ease 0.4s both;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-wrapper img {
    height: 380px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ── Tablet Portrait / Mobile Landscape (≤ 768px) ── */
@media (max-width: 768px) {
  /* Hamburger nav */
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 86vw);
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 16px) 16px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav-phone-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    margin-top: 8px;
    border-radius: 8px;
  }
  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: var(--radius);
    padding: 0;
    transition:
      max-height 0.28s ease,
      visibility 0.28s ease;
  }
  .nav-dropdown.open .dropdown-menu {
    visibility: visible;
    max-height: 220px;
    padding: 6px;
  }
  .dropdown-menu::before {
    display: none;
  }
  /* Hero */
  .hero {
    background-attachment: scroll;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  /* About */
  .about {
    padding: 72px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image-wrapper img {
    height: 280px;
  }
  .about-stats {
    padding: 20px;
  }
  /* Services */
  .services {
    padding: 72px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  /* Portfolio */
  .portfolio {
    padding: 72px 0;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  /* Why Us */
  .why-us {
    padding: 72px 0;
  }
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  /* Contact */
  .contact-cta {
    padding: 72px 0;
  }
  /* Footer */
  .footer-main {
    padding: 52px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

/* ── Mobile Portrait (≤ 480px) ── */
@media (max-width: 480px) {
  :root {
    --nav-height: 66px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO LIGHTBOX MODAL
   ═══════════════════════════════════════════════════════════ */
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 15, 24, 0.95);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.portfolio-modal.active {
  opacity: 1;
  visibility: visible;
}
.portfolio-modal-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.portfolio-modal.active .portfolio-modal-inner {
  transform: scale(1) translateY(0);
}
.portfolio-modal-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  display: block;
}
.portfolio-modal-caption {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: 0.01em;
}
.portfolio-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background var(--ease),
    transform var(--ease);
  z-index: 1;
}
.portfolio-modal-close:hover {
  background: var(--white);
  transform: scale(1.12) rotate(90deg);
}
.portfolio-item {
  cursor: pointer;
}
@media (max-width: 600px) {
  .portfolio-modal {
    padding: 16px;
  }
  .portfolio-modal-close {
    top: -14px;
    right: -10px;
  }
}

/* Custom Layout for Transposed Pages */
.custom-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .custom-layout {
    grid-template-columns: 1fr;
  }
}

.sidebar-new a:hover {
  color: var(--gold) !important;
}
