/* ═══════════════════════════════════════════════════════
   EXPONENTIAL SERVICES — Premium CSS
   ═══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --orange: #E8521A;
  --orange-light: #FF6B35;
  --orange-dark: #C4400E;
  --charcoal: #1E293B;
  --charcoal-mid: #334155;
  --charcoal-light: #475569;
  --grey: #888;
  --grey-light: #BDBDBD;
  --white: #FFFFFF;
  --off-white: #F1F5F9;
  --cream: #F8FAFC;
  --gradient-main: linear-gradient(135deg, var(--orange), var(--orange-light));
  --gradient-dark: linear-gradient(135deg, var(--charcoal), #475569);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-orange: 0 8px 32px rgba(232, 82, 26, 0.35);
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

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

ul {
  list-style: none;
}

/* ─── Utility ─── */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #FFB085, #FF7043);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-label.light {
  color: #FFB085;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

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

.section-desc {
  font-size: 0.92rem;
  color: #6B7C8E;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 26px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(232, 82, 26, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-large {
  font-size: 0.9rem;
  padding: 13px 32px;
}


/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 40px;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 40px;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-img {
  height: 34px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  height: 34px;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 0;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--orange);
  background: transparent;
}

.nav-cta {
  background: var(--gradient-main) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 82, 26, 0.25);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 80vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 1000px;
  margin: 0 auto;
  animation: heroFadeUp 1s ease-out both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  border: 1px solid rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.12);
  padding: 6px 20px;
  border-radius: 0;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
}

.hero-orange {
  color: var(--orange-light);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  line-height: 1.72;
  margin: 0 auto 36px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.btn-outline-dark:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.dot.active {
  background: var(--orange-light);
  transform: scale(1.4);
}


/* ═══════════════════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════════════════ */
.stats-band {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
}

.stats-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  position: relative;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 6px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-images-single {
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  display: flex;
}

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

.about-content-refined {
  padding: 10px 0;
}

.about-mini-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.about-refined-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.about-title-underline {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 24px;
}

.about-text {
  font-size: 0.9rem;
  color: #4A5668;
  line-height: 1.75;
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  cursor: default;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card-inner {
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.service-phase-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-icon-wrap {
  width: 36px;
  height: 36px;
  color: var(--orange);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.service-list li {
  font-size: 0.82rem;
  color: #4A5668;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
}


/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════ */
.why-us {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.9)), url('img/DIP04828.jpg') center/cover no-repeat fixed;
  overflow: hidden;
}

.why-us .section-container {
  position: relative;
  z-index: 2;
}

.why-us-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.why-left-content {
  /* standard block layout for vertical centering */
}

.why-us .section-title {
  color: var(--white);
}

.why-split-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.why-right-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-list-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-list-item-icon svg {
  width: 16px !important;
  height: 16px !important;
}

.why-list-item:hover .why-list-item-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.why-list-item-content h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.why-list-item-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
.gallery {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.gallery .section-container {
  position: relative;
  z-index: 1;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
  border-radius: 6px;
  border: 2px solid rgba(0,0,0,0.06);
}

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


/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.cta-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.cta-header .cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 16px;
}

.cta-header .cta-subtitle {
  font-size: 0.98rem;
  color: #4A5668;
  line-height: 1.7;
}

.cta-card-centered {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.minimal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.form-group-minimal {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group-minimal input,
.form-group-minimal textarea {
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: var(--transition);
  border-radius: 0;
  width: 100%;
}

.form-group-minimal textarea {
  resize: none;
}

/* Floating Label Logic */
.form-group-minimal label {
  position: absolute;
  left: 0;
  top: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #5A6E7F;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group-minimal input:focus ~ label,
.form-group-minimal input:not(:placeholder-shown) ~ label,
.form-group-minimal textarea:focus ~ label,
.form-group-minimal textarea:not(:placeholder-shown) ~ label {
  top: -16px;
  font-size: 0.72rem;
  color: var(--orange);
}

.form-group-minimal input:focus,
.form-group-minimal textarea:focus {
  outline: none;
  border-color: var(--orange);
}


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 340px;
}

.footer-links-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links-col a:hover {
  color: var(--orange-light);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  font-family: var(--font-display);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.footer-credit .rdc {
  position: relative;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: color 0.35s ease;
}

.footer-credit .rdc::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: #d21502;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.footer-credit .rdc:hover {
  color: #d21502;
}

.footer-credit .rdc:hover::after {
  transform: scaleX(1);
}


/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

.fade-up-delay-5 {
  transition-delay: 0.5s;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE (TABLET & MOBILE)
   ═══════════════════════════════════════════════════════ */

/* --- Tablet / Large Devices (<= 1024px) --- */
@media (max-width: 1024px) {
  .section-container {
    padding: 0 32px;
  }

  .about-grid {
    gap: 40px;
  }

  .services-grid {
    gap: 20px;
  }

  .testi-split {
    gap: 48px;
  }
}

/* --- Tablet Portrait / Small Laptops (<= 900px) --- */
@media (max-width: 900px) {
  .about, .services, .gallery, .why-us, .testimonials-sec, .cta-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .why-us-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-left-content {
    position: static;
  }

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

  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stats-container {
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 50%;
  }
}

/* --- Mobile / Small Tablets (<= 768px) --- */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 24px;
  }

  .navbar.scrolled {
    padding: 10px 24px;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 6px;
    padding: 88px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav-links .nav-link {
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links .nav-cta {
    display: inline-block;
    margin-top: 18px;
    align-self: flex-start;
    width: auto;
    text-align: center;
    border-bottom: none;
    padding: 10px 24px;
  }

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

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-link:hover {
    color: var(--orange-light);
  }

  .hamburger {
    display: flex;
    z-index: 1002;
    position: relative;
  }

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

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

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

  .page-hero {
    padding: 120px 0 50px;
  }

  .hero {
    height: auto;
    min-height: 520px;
    padding: 110px 0 60px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .why-us {
    background-attachment: scroll;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* --- Mobile Small Devices (<= 600px) --- */
@media (max-width: 600px) {
  .section-container {
    padding: 0 20px;
  }

  .about, .services, .gallery, .why-us, .testimonials-sec, .cta-section {
    padding: 56px 0;
  }

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

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

  .service-card-inner {
    padding: 28px 20px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testi-slider-wrapper {
    min-height: 320px;
  }

  .testi-card {
    padding: 24px 18px;
  }
}

/* --- Mobile Extra Small (<= 480px) --- */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn, .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
  }

  .stat-item {
    flex: 0 0 100%;
    padding: 24px 16px;
  }

  .cta-card-centered {
    padding: 24px 16px;
  }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS (SPLIT CAROUSEL)
   ═══════════════════════════════════════════════════════ */
.testimonials-sec {
  padding: 100px 0;
  background: var(--off-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testi-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.testi-left-col {
  max-width: 440px;
}

.testi-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.testi-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 20px;
}

.testi-main-desc {
  font-size: 0.95rem;
  color: #4A5668;
  line-height: 1.7;
}

.testi-right-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testi-slider-wrapper {
  position: relative;
  min-height: 280px;
}

.testi-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testi-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.25;
  margin-bottom: 8px;
  margin-top: -10px;
  display: block;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.testi-meta h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testi-meta span {
  font-size: 0.78rem;
  color: #5A6E7F;
}

.testi-nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testi-btn svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.testi-btn.prev:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.testi-btn.next {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232, 82, 26, 0.25);
}

.testi-btn.next:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(232, 82, 26, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .testi-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-card-centered {
    padding: 40px 32px;
  }
}

}

/* ═══════════════════════════════════════════════════════
   GALLERY FILTERS & LIGHTBOX MODAL
   ═══════════════════════════════════════════════════════ */


.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.93);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
}

.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  z-index: 2010;
}

.lightbox-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-close {
  top: -24px;
  right: -24px;
}

.lightbox-prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

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


