/* ══════════════════════════════════════════════════════
   STYLE.CSS — Sri Ram Construction Company
   Fonts: Roboto Slab (headings) + Oswald (labels/nav) + Roboto (body)
══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --saffron:     #E8621A;
  --saffron-dk:  #C04A0A;
  --saffron-lt:  #F2854A;
  --gold:        #D4A017;
  --earth:       #1A120B;
  --concrete:    #2C2416;
  --stone:       #3D3020;
  --sand:        #F5ECD7;
  --cream:       #FBF6EE;
  --text-dk:     #1A120B;
  --text-md:     #5C4A30;
  --text-lt:     #9C8060;
  --white:       #FFFFFF;
  --border:      rgba(232,98,26,0.15);
  --shadow-warm: 0 8px 40px rgba(232,98,26,0.12);
  --shadow-dk:   0 20px 60px rgba(26,18,11,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--text-dk);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 2px; }

/* ── UTILITIES ── */
.section-pad { padding: 100px 0; }
.text-saffron { color: var(--saffron); }
.bg-earth { background: var(--earth); }
.bg-sand  { background: var(--sand); }

.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.tag-line::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--saffron);
}

.heading-xl {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--earth);
}
.heading-xl .accent { color: var(--saffron); }
.heading-xl .underline-gold {
  position: relative;
  display: inline-block;
}
.heading-xl .underline-gold::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  opacity: 0.5;
  border-radius: 2px;
}

.body-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-md);
}

/* ── BUTTONS ── */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--saffron);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232,98,26,0.3);
}
.btn-primary-cta:hover {
  background: var(--saffron-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,98,26,0.4);
}
.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--earth);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.82rem 1.8rem;
  border: 2px solid var(--earth);
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline-cta:hover { background: var(--earth); color: #fff; }
.btn-outline-white { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--earth); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(36px); transition: all 0.75s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.75s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.75s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   TOPBAR
══════════════════════════════ */
.topbar {
  background: var(--earth);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--saffron); }
.topbar-divider { opacity: 0.2; margin: 0 12px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.main-nav {
  background: #fff;
  border-bottom: 3px solid var(--saffron);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(26,18,11,0.08);
  transition: all 0.3s;
}
.main-nav .container { min-height: 74px; display: flex; align-items: center; }
.brand-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-icon {
  width: 52px; height: 52px;
  background: var(--saffron);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 30px; height: 30px; fill: #fff; }
.brand-name {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--earth);
  line-height: 1.2;
}
.brand-name span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-lt);
  text-transform: uppercase;
}
.nav-link-item {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dk) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s;
  position: relative;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 1rem;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width 0.3s;
}
.nav-link-item:hover { color: var(--saffron) !important; }
.nav-link-item:hover::after { width: calc(100% - 2rem); }
.nav-link-item.active-page { color: var(--saffron) !important; }
.nav-link-item.active-page::after { width: calc(100% - 2rem); }
.navbar-toggler { border: 2px solid var(--saffron); border-radius: 4px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8621A' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════ */
.page-banner {
  background: var(--earth);
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,98,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,98,26,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-banner-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.page-banner-title .accent { color: var(--saffron); }
.page-banner-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
}
.breadcrumb-wrap a { color: var(--saffron); text-decoration: none; }
.breadcrumb-wrap .sep { opacity: 0.4; }
.page-banner-orb {
  position: absolute;
  right: -100px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,98,26,0.12), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

/* ══════════════════════════════
   TICKER
══════════════════════════════ */
.ticker-wrap {
  background: var(--saffron);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.ticker-item .sep { color: rgba(255,255,255,0.4); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════
   STATS STRIP
══════════════════════════════ */
.stats-strip { background: var(--earth); padding: 60px 0; }
.stat-item { text-align: center; padding: 0 1rem; }
.stat-item-num {
  font-family: 'Roboto Slab', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--saffron);
  line-height: 1;
}
.stat-item-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* ══════════════════════════════
   HERO (index only)
══════════════════════════════ */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--earth);
}
#hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%; height: 100%;
  background: linear-gradient(160deg, #2C1A0E 0%, #1A120B 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,98,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,98,26,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,98,26,0.15);
  border: 1px solid rgba(232,98,26,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-lt);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--saffron); }
.hero-title .light { font-weight: 300; color: rgba(255,255,255,0.55); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats-bar {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  max-width: 480px;
}
.h-stat {
  flex: 1;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: 'Roboto Slab', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--saffron);
  line-height: 1;
}
.h-stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.hero-visual { position: relative; z-index: 2; }
.hero-img-stack { position: relative; height: 520px; }
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 82%; height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-dk);
}
.hero-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 54%; height: 260px;
  border-radius: 6px;
  overflow: hidden;
  border: 4px solid var(--earth);
  box-shadow: var(--shadow-dk);
}
.hero-chip {
  position: absolute;
  top: 40px; left: -10px;
  background: var(--saffron);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(232,98,26,0.4);
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-exp-badge {
  position: absolute;
  bottom: 80px; right: -10px;
  background: var(--gold);
  color: var(--earth);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212,160,23,0.35);
  z-index: 3;
}
.hero-exp-badge .num { font-family: 'Roboto Slab', serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.hero-exp-badge .lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
#about { background: var(--cream); }
.about-imgs { position: relative; height: 540px; }
.aimg { position: absolute; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-warm); }
.aimg-1 { top: 0; left: 0; width: 62%; height: 340px; }
.aimg-2 { top: 60px; right: 0; width: 44%; height: 280px; border: 5px solid var(--cream); }
.aimg-3 { bottom: 0; left: 10%; width: 50%; height: 220px; border: 5px solid var(--cream); }
.about-badge-yrs {
  position: absolute;
  bottom: 20px; right: 0;
  background: var(--saffron);
  color: #fff;
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232,98,26,0.35);
  z-index: 2;
}
.about-badge-yrs .num { font-family: 'Roboto Slab', serif; font-size: 2.6rem; font-weight: 900; display: block; line-height: 1; }
.about-badge-yrs .txt { font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.about-item:last-child { border-bottom: none; }
.about-icon {
  width: 46px; height: 46px;
  background: rgba(232,98,26,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--saffron);
  flex-shrink: 0;
}
.about-item-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.about-item-text { font-size: 0.85rem; color: var(--text-lt); line-height: 1.6; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
#services { background: var(--sand); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,18,11,0.07);
  transition: all 0.4s;
  border: 1px solid var(--border);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--saffron);
  transition: width 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-warm); }
.service-card:hover::after { width: 100%; }
.service-img { width: 100%; height: 180px; object-fit: cover; display: block; overflow: hidden; }
.service-img svg { width: 100%; height: 100%; display: block; }
.service-body { padding: 1.6rem; }
.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(232,98,26,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--saffron);
  margin-bottom: 1.1rem;
  margin-top: -2.8rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--sand);
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--saffron); color: #fff; }
.service-title { font-family: 'Roboto Slab', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--earth); }
.service-desc { font-size: 0.85rem; color: var(--text-md); line-height: 1.7; margin-bottom: 1.2rem; }
.service-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saffron);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; color: var(--saffron-dk); }

/* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
#why { background: var(--cream); }
.why-left {
  position: relative;
  background: var(--earth);
  border-radius: 10px;
  padding: 3rem;
  overflow: hidden;
  height: 100%;
}
.why-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232,98,26,0.2), transparent 70%);
}
.why-left::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,160,23,0.15), transparent 70%);
}
.why-big-num { font-family: 'Roboto Slab', serif; font-size: 5rem; font-weight: 900; color: var(--saffron); opacity: 0.2; position: absolute; top: 1rem; right: 2rem; }
.why-left-title { font-family: 'Roboto Slab', serif; font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 1rem; }
.why-left-desc { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 2rem; }
.why-cert {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 0.75rem;
}
.why-cert .ic { font-size: 1.2rem; color: var(--gold); }
.why-cert .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--saffron); box-shadow: var(--shadow-warm); transform: translateX(6px); }
.why-card-icon { width: 50px; height: 50px; background: rgba(232,98,26,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--saffron); flex-shrink: 0; }
.why-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; color: var(--earth); }
.why-card-text { font-size: 0.84rem; color: var(--text-md); line-height: 1.6; }

/* ══════════════════════════════
   PROJECTS
══════════════════════════════ */
.projects-section { background: var(--earth); }
.projects-section .heading-xl { color: #fff; }
.projects-section .tag-line { color: var(--saffron-lt); }
.projects-section .body-text { color: rgba(255,255,255,0.5); }
.proj-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.proj-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.proj-btn.active, .proj-btn:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.proj-card { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; background: var(--concrete); }
.proj-card.large { grid-column: span 2; }
.proj-img { width: 100%; height: 240px; display: block; transition: transform 0.5s; }
.proj-card.large .proj-img { height: 340px; }
.proj-card:hover .proj-img { transform: scale(1.06); }
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,11,0.92) 0%, rgba(26,18,11,0.2) 55%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-cat { font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--saffron); margin-bottom: 0.4rem; }
.proj-title { font-family: 'Roboto Slab', serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.proj-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.proj-link:hover { color: var(--saffron); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testi-section { background: var(--sand); }
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Roboto Slab', serif;
  font-size: 6rem;
  color: var(--saffron);
  opacity: 0.1;
  position: absolute;
  top: 0.5rem; left: 1.2rem;
  line-height: 1;
}
.testi-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-4px); border-color: rgba(232,98,26,0.3); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.92rem; color: var(--text-md); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-av { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Roboto Slab', serif; font-size: 1rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--earth); }
.testi-role { font-size: 0.75rem; color: var(--text-lt); }

/* ══════════════════════════════
   NEWSLETTER
══════════════════════════════ */
.newsletter-band {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dk) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.newsletter-band::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 240px; height: 240px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.nl-title { font-family: 'Roboto Slab', serif; font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.nl-sub { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.nl-form { display: flex; max-width: 460px; }
.nl-input { flex: 1; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px 0 0 4px; color: #fff; font-family: 'Roboto', sans-serif; font-size: 0.9rem; padding: 0.8rem 1.2rem; outline: none; transition: background 0.3s; }
.nl-input::placeholder { color: rgba(255,255,255,0.5); }
.nl-input:focus { background: rgba(255,255,255,0.2); }
.nl-btn { background: var(--earth); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; padding: 0.8rem 1.5rem; border: none; border-radius: 0 4px 4px 0; cursor: pointer; transition: background 0.3s; }
.nl-btn:hover { background: #000; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section { background: var(--cream); }
.contact-col { background: var(--earth); border-radius: 10px; padding: 2.5rem; height: 100%; }
.contact-info-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-info-row:last-of-type { border-bottom: none; }
.ci { width: 44px; height: 44px; background: rgba(232,98,26,0.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--saffron); flex-shrink: 0; }
.ci-title { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); font-family: 'Oswald', sans-serif; }
.ci-val { font-size: 0.92rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.form-card { background: #fff; border-radius: 10px; padding: 2.5rem; box-shadow: var(--shadow-warm); }
.form-label-custom { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-md); margin-bottom: 0.4rem; display: block; }
.form-input-custom { width: 100%; background: var(--sand); border: 1.5px solid var(--border); border-radius: 5px; color: var(--text-dk); font-family: 'Roboto', sans-serif; font-size: 0.92rem; padding: 0.78rem 1rem; outline: none; transition: all 0.3s; margin-bottom: 1.2rem; }
.form-input-custom:focus { border-color: var(--saffron); background: #fff; box-shadow: 0 0 0 3px rgba(232,98,26,0.08); }
.form-input-custom::placeholder { color: var(--text-lt); }
textarea.form-input-custom { resize: vertical; min-height: 120px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: #0F0A05; padding: 70px 0 0; border-top: 3px solid var(--saffron); }
.footer-brand-name { font-family: 'Roboto Slab', serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 0.6rem; }
.fsoc { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 5px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.9rem; text-decoration: none; transition: all 0.3s; }
.fsoc:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.footer-heading { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--saffron); margin-bottom: 1.2rem; }
.footer-ul { list-style: none; padding: 0; }
.footer-ul li { margin-bottom: 0.6rem; }
.footer-ul a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.25s; }
.footer-ul a:hover { color: var(--saffron-lt); }
.footer-ul a .arr { font-size: 0.6rem; }
.footer-bottom { background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; padding: 1.2rem 0; }
.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── BACK TO TOP ── */
#btt { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--saffron); color: #fff; border: none; border-radius: 5px; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; text-decoration: none; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 999; box-shadow: 0 4px 20px rgba(232,98,26,0.4); }
#btt.show { opacity: 1; pointer-events: auto; }
#btt:hover { background: var(--saffron-dk); color: #fff; transform: translateY(-3px); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media(max-width:992px){
  .hero-img-stack { height: 360px; margin-top: 3rem; }
  .hero-chip { display: none; }
  .about-imgs { height: 360px; }
  .aimg-3 { display: none; }
  .why-left { margin-bottom: 2rem; height: auto; }
  .projects-masonry .proj-card.large { grid-column: span 1; }
}
@media(max-width:768px){
  .projects-masonry { grid-template-columns: 1fr; }
  section, .section-pad { padding: 70px 0; }
}
@media(max-width:576px){
  .hero-stats-bar { flex-direction: column; }
  .h-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nl-form { flex-direction: column; }
  .nl-input { border-radius: 4px; }
  .nl-btn { border-radius: 4px; }
}
