/* =====================================================
   SHIVA ASSOCIATES — Premium Construction & Interior
   Light Theme Design System
   ===================================================== */

/* ── CSS Custom Properties ── */
:root {
  --bg:            #FFFDF9;
  --bg-alt:        #FBF8F3;
  --bg-warm:       #FEF9F4;
  --white:         #FFFFFF;
  --border:        rgba(0,0,0,0.07);
  --orange:        #E07530;
  --orange-light:  #F08D4A;
  --orange-pale:   #FFF5ED;
  --navy:          #1B3A78;
  --navy-pale:     #EEF2FB;
  --text:          #1A1815;
  --text-muted:    #5F5A54;
  --text-dim:      #A39E96;
  --shadow-sm:     0 2px 16px rgba(0,0,0,0.05);
  --shadow-md:     0 8px 36px rgba(0,0,0,0.08);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.10);
  --shadow-orange: 0 4px 28px rgba(224,117,48,0.28);
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h:      80px;
}

/* ── 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-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Padding ── */
.section-pad { padding: 100px 0; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); }

em { font-style: italic; color: var(--orange); }

.section-heading { margin-bottom: 16px; }
.section-heading em { font-style: italic; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-heading { margin-bottom: 16px; }

.lead-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.body-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── Eyebrow Label ── */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow-light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224,117,48,0.4);
}

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}


/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
  height: var(--header-h);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; object-fit: contain; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  margin-left: auto;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.5rem;
  color: var(--text);
  padding: 8px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 40px 24px;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 24px;
  text-align: center;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--orange); }

.mobile-cta {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}


/* =====================================================
   HERO
   ===================================================== */
.hero {
  display: flex;
  min-height: 100vh;
  padding-top: var(--header-h);
}

.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, var(--orange-pale) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-left .container { padding: 0; }

.hero-content {
  max-width: 560px;
  margin-left: auto;
  padding-right: 40px;
}

.hero-eyebrow {
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.1s both;
}
.hero-heading {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1.15;
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.25s both;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.55s both;
}
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.7s both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-badge i {
  color: var(--orange);
  font-size: 1rem;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color var(--transition);
}
.hero-scroll-indicator:hover { color: var(--orange); }

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.8;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

.scroll-text {
  letter-spacing: 0.06em;
}

/* Hero Right */
.hero-right {
  flex: 0 0 48%;
  animation: slideInRight 1s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}

.hero-image-panel {
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.28) 100%);
}

.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: floatSubtle 4s ease-in-out infinite;
}
.hero-stat-top { top: 48px; left: 24px; }
.hero-stat-bottom {
  bottom: 120px;
  right: 32px;
  animation-delay: 1s;
}

.hero-stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-card .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-image-tag {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-image-tag i { color: var(--orange); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-section {
  background: var(--orange);
  overflow: hidden;
  padding: 18px 0;
  border-top: 3px solid rgba(255,255,255,0.15);
  border-bottom: 3px solid rgba(255,255,255,0.15);
}

.marquee-track { overflow: hidden; }

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.marquee-content span i { font-size: 1.05rem; opacity: 0.85; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 82%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: var(--orange);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-orange);
  z-index: 2;
}
.about-badge .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  opacity: 0.9;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: all var(--transition);
}
.pillar-card:hover {
  background: var(--orange-pale);
  border-color: rgba(224,117,48,0.25);
  transform: translateY(-2px);
}
.pillar-card i {
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.pillar-card h4 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.pillar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}


/* =====================================================
   SERVICES
   ===================================================== */
.services { background: var(--bg-alt); }

.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: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-body {
  padding: 28px 24px;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background var(--transition);
}
.service-icon i {
  font-size: 1.2rem;
  color: var(--orange);
}
.service-card:hover .service-icon { background: var(--orange); }
.service-card:hover .service-icon i { color: #fff; }

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.service-card-body ul {
  margin-bottom: 20px;
}
.service-card-body ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.service-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }


/* =====================================================
   TRUSTED BY
   ===================================================== */
.trusted-by { background: var(--white); }

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 40px 24px;
}

.trusted-logo-item {
  padding: 20px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.trusted-logo-item:hover {
  border-color: rgba(224,117,48,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}


/* =====================================================
   MATERIALS & FINISHES
   ===================================================== */
.materials { background: var(--bg-alt); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.material-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.material-img {
  height: 200px;
  overflow: hidden;
}
.material-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.material-card:hover .material-img img { transform: scale(1.08); }

.material-content {
  padding: 24px 20px;
}
.material-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.material-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}


/* =====================================================
   BEFORE & AFTER
   ===================================================== */
.before-after { background: var(--white); }

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

.ba-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.ba-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.ba-before,
.ba-after {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ba-card:hover .ba-before img,
.ba-card:hover .ba-after img {
  transform: scale(1.05);
}

.ba-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.ba-card h4 {
  font-size: 1.05rem;
  margin: 18px 20px 6px;
}
.ba-card p {
  font-size: 0.85rem;
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.6;
}


/* =====================================================
   AWARDS
   ===================================================== */
.awards { background: var(--bg-alt); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.award-card:hover {
  border-color: rgba(224,117,48,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.award-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.award-icon i {
  font-size: 1.6rem;
  color: var(--orange);
}

.award-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.award-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
}


/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
  background: linear-gradient(135deg, #E07530 0%, #C06020 100%);
  padding: 80px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.stat-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.03em;
}

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


/* =====================================================
   PROJECT TYPES
   ===================================================== */
.project-types { background: var(--white); }

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

.project-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.project-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pt-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.pt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.project-type-card:hover .pt-image img { transform: scale(1.06); }

.pt-content {
  padding: 28px 24px;
}
.pt-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.pt-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.pt-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.pt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition);
}
.pt-link:hover { gap: 10px; }


/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-us { background: var(--bg-alt); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-intro { margin-bottom: 32px; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.why-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.why-icon i {
  font-size: 0.85rem;
  color: var(--orange);
}
.why-features li:hover .why-icon { background: var(--orange); }
.why-features li:hover .why-icon i { color: #fff; }

.why-features li h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-features li p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
  height: 380px;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-image:hover img { transform: scale(1.04); }

.cert-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cert-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  transition: all var(--transition);
}
.cert-badge:hover {
  background: var(--orange-pale);
  border-color: rgba(224,117,48,0.3);
}
.cert-badge i {
  display: block;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 6px;
}
.cert-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* =====================================================
   PROCESS
   ===================================================== */
.process { background: var(--white); }

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 64px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  background: var(--orange-pale);
  padding: 3px 10px;
  border-radius: 50px;
}

.process-icon-wrap {
  width: 88px;
  height: 88px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.process-icon-wrap i {
  font-size: 1.6rem;
  color: var(--orange);
  transition: color var(--transition);
}
.process-step:hover .process-icon-wrap {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
  box-shadow: var(--shadow-orange);
}
.process-step:hover .process-icon-wrap i { color: #fff; }

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  line-height: 1.7;
}


/* =====================================================
   PORTFOLIO
   ===================================================== */
.portfolio { background: var(--bg-alt); }

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

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

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.portfolio-item.hidden {
  display: none;
}

.portfolio-img {
  width: 100%;
  height: 100%;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-item:hover .portfolio-img img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(27,58,120,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-info {
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-item:hover .portfolio-info { transform: translateY(0); }

.portfolio-cat {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.portfolio-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.portfolio-info p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.portfolio-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: background var(--transition);
}
.portfolio-cta:hover { background: var(--orange-light); }


/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--white); }

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--orange-pale);
  border-radius: 0 0 0 40%;
  opacity: 0.4;
  pointer-events: none;
}
.testimonials { position: relative; overflow: hidden; }

.testimonials-slider-wrap { max-width: 900px; margin: 0 auto; }

.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  position: relative;
}

.quote-icon {
  font-size: 2.8rem;
  color: var(--orange);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star-rating i { color: #FFB800; font-size: 1rem; }

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: all var(--transition);
  padding: 0;
}
.dot:hover { background: var(--orange-light); }
.dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}


/* =====================================================
   TEAM
   ===================================================== */
.team { background: var(--bg-alt); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.team-info {
  padding: 24px 20px;
}
.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.team-info p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.team-socials a {
  width: 34px;
  height: 34px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.team-socials a:hover {
  background: var(--orange);
  color: #fff;
}


/* =====================================================
   FAQ
   ===================================================== */
.faq { background: var(--white); }

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: rgba(224,117,48,0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--orange);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}


/* =====================================================
   CTA BANNER — Warm & Inviting
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, #E07530 0%, #C85A1E 50%, #B84A14 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner { position: relative; z-index: 1; }

.cta-content .eyebrow { margin-bottom: 20px; }

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 18px;
}
.cta-content h2 em { color: rgba(255,255,255,0.95); }

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-banner .btn-outline-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}
.cta-banner .btn-outline-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
}


/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--bg-alt); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-heading { margin-bottom: 32px; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: rgba(224,117,48,0.3);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i {
  color: var(--orange);
  font-size: 1rem;
}
.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}
.contact-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.contact-card a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-card a:hover { color: var(--orange); }

.contact-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.promise-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.promise-icon {
  width: 40px;
  height: 40px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-icon i { color: #16a34a; font-size: 1.1rem; }
.promise-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 5px;
}
.promise-box p {
  font-size: 0.82rem;
  color: #166534;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,117,48,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  margin-top: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #166534;
  font-size: 0.93rem;
  font-weight: 500;
}
.form-success i { font-size: 1.3rem; color: #16a34a; flex-shrink: 0; }
.form-success p { margin: 0; color: #166534; }


/* =====================================================
   FOOTER — Light & Premium
   ===================================================== */
.site-footer {
  background: linear-gradient(180deg, #F5F2ED 0%, #EDE9E2 100%);
  color: var(--text-muted);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 52px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: var(--text-dim);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--orange); }


/* =====================================================
   CONTACT MODAL
   ===================================================== */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.contact-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-modal-overlay.open .contact-modal {
  transform: scale(1) translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.contact-modal-close:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

.contact-modal-inner {
  padding: 40px 36px;
}
.contact-modal-inner h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-modal-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-modal-form .form-group {
  margin-bottom: 18px;
}
.contact-modal-form .form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.contact-modal-form .form-group label span {
  color: var(--orange);
}
.contact-modal-form .form-group input,
.contact-modal-form .form-group select,
.contact-modal-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.contact-modal-form .form-group input:focus,
.contact-modal-form .form-group select:focus,
.contact-modal-form .form-group textarea:focus {
  border-color: var(--orange);
}
.contact-modal-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.contact-modal-form .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.contact-modal-form .modal-form-success {
  margin-top: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #166534;
}
.contact-modal-form .modal-form-success i {
  font-size: 1.2rem;
  color: #16a34a;
  flex-shrink: 0;
}
.contact-modal-form .modal-form-success p {
  margin: 0;
  font-size: 0.9rem;
  color: #166534;
}


/* =====================================================
   FLOATING CONTACT BUTTON
   ===================================================== */
.floating-contact-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-orange);
  cursor: pointer;
  transition: all var(--transition);
}
.floating-contact-btn:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(224,117,48,0.4);
}
.floating-contact-btn i {
  font-size: 1.1rem;
}


/* =====================================================
   YOUTUBE SECTION
   ===================================================== */
.youtube-section { background: var(--white); }

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.youtube-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.youtube-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,117,48,0.3);
}

.youtube-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.youtube-card:hover .youtube-thumb img {
  transform: scale(1.05);
}
.youtube-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: background var(--transition);
}
.youtube-play i {
  font-size: 3rem;
  color: #fff;
  opacity: 0.9;
  transition: transform var(--transition);
}
.youtube-card:hover .youtube-play {
  background: rgba(224,117,48,0.5);
}
.youtube-card:hover .youtube-play i {
  transform: scale(1.1);
}

.youtube-card h4 {
  font-size: 1rem;
  padding: 18px 20px 6px;
  margin: 0;
}
.youtube-card p {
  font-size: 0.85rem;
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.5;
  color: var(--text-muted);
}

.youtube-cta {
  text-align: center;
}


/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--orange-light); transform: translateY(-3px); }


/* =====================================================
   RESPONSIVE — 1100px
   ===================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
  .youtube-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =====================================================
   RESPONSIVE — 991px
   ===================================================== */
@media (max-width: 991px) {

  :root { --header-h: 70px; }

  .desktop-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero stacked */
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    padding: 70px 0 60px;
    flex: none;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .trust-badges { justify-content: center; }

  .hero-right {
    flex: none;
    width: 100%;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-image-panel { height: 360px; min-height: 360px; }
  .hero-stat-top { top: 24px; left: 24px; }
  .hero-stat-bottom { bottom: 24px; right: 24px; }

  /* Grids to 2col */
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 320px; }
  .about-img-main { width: 75%; height: 85%; }
  .about-img-accent { width: 48%; height: 48%; }
  .about-badge { right: 0; }

  .project-types-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-connector { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .stats-inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .stat-item { flex: 0 0 33.33%; padding: 20px; }
  .stat-divider { display: none; }

  .cert-badges { grid-template-columns: repeat(4, 1fr); }
}


/* =====================================================
   RESPONSIVE — 768px
   ===================================================== */
@media (max-width: 768px) {

  .section-pad { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .project-types-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }

  .process-track { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .stats-inner { flex-direction: column; gap: 0; }
  .stat-item { flex: none; width: 100%; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }

  .testimonial-card { padding: 36px 28px; }

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

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .cert-badges { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .trusted-logos { gap: 20px; padding: 24px 16px; }
  .trusted-logo-item { padding: 14px 24px; }
  .youtube-grid { grid-template-columns: 1fr 1fr; }
  .floating-contact-btn { bottom: 90px; right: 20px; padding: 12px 18px; font-size: 0.9rem; }
  .floating-contact-btn span { display: none; }
}


/* =====================================================
   RESPONSIVE — 480px
   ===================================================== */
@media (max-width: 480px) {

  .hero-heading { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

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

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  .mobile-nav-link { font-size: 1.6rem; }

  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
