/* ════════════════════════════════
   COLOR SYSTEM — Red Family
════════════════════════════════ */
:root {
  --red:         #E0231A;
  --red-dark:    #B81B13;
  --red-hover:   #C91F17;
  --red-pale:    #FFF0EF;
  --red-soft:    #FFE0DE;
  --red-mid:     #FFCCC9;

  --dark:        #111827;
  --body:        #374151;
  --muted:       #6B7280;
  --light-txt:   #9CA3AF;

  --border:      #EBEBEB;
  --border-red:  #F5C5C3;

  --bg:          #FFFFFF;
  --bg-soft:     #F9FAFB;
  --bg-red-tint: #FFF5F5;

  --font:        'K2D', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.10);
  --shadow-red:  0 8px 28px rgba(224,35,26,0.22);

  --transition:  all 0.3s cubic-bezier(.25,.46,.45,.94);
}

/* ════════════════════════════════
   RESET
════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--body); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font); }
button { cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ════════════════════════════════
   LAYOUT & UTIL
════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }

/* Section label — "— LABEL —" style */
.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.sec-label::before, .sec-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red-soft);
  border-radius: 2px;
}
.sec-label.left { justify-content: flex-start; }
.sec-label.left::before { display: none; }

.heading {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.heading .red { color: var(--red); }
.heading.center { text-align: center; }

.body-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* Scroll reveal */
.fade-up  { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-l   { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.fade-r   { opacity: 0; transform: translateX(28px); transition: opacity .6s ease, transform .6s ease; }
.on { opacity: 1 !important; transform: none !important; }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-red  { background: var(--red); color: #fff; border: 2px solid var(--red); }
.btn-red:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red-soft); }
.btn-outline-red:hover { background: var(--red-pale); border-color: var(--red); }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#nav.sticky {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--red); background: var(--bg-red-tint); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 9px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.nav-call:hover { border-color: var(--red); color: var(--red) !important; }
.nav-call svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  padding: 14px 28px;
}
.mobile-nav .nav-link:hover { color: var(--red); background: var(--red-pale); }
.m-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 26px;
  color: var(--dark);
  cursor: pointer;
  background: none; border: none;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero-left {
  background: linear-gradient(135deg, #fff 0%, var(--bg-red-tint) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 80px 0;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-red);
}

.hero-content-wrap { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-pale);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; }

h1.htitle {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}
h1.htitle .red { color: var(--red); }

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hpill {
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-red);
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.hpill:hover { border-color: var(--red); background: var(--red-pale); transform: translateY(-2px); }
.hpill-name { font-size: 1rem; font-weight: 700; color: var(--red); }
.hpill-loc  { font-size: 11px; font-weight: 400; color: var(--muted); margin-top: 2px; }
.hpill-bhk  { font-size: 12px; font-weight: 500; color: var(--dark); margin-top: 3px; }

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

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-red-tint) 0%, transparent 30%);
  pointer-events: none;
}

.hero-float-form {
  position: absolute;
  bottom: 36px;
  right: 32px;
  left: 32px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.float-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.float-form-title span { color: var(--red); }
.mini-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-form .full { grid-column: 1/-1; }
.mini-input {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  transition: var(--transition);
}
.mini-input::placeholder { color: var(--light-txt); }
.mini-input:focus { outline: none; border-color: var(--red); background: #fff; }
.mini-select { appearance: none; }
.mini-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.mini-submit:hover { background: var(--red-hover); box-shadow: var(--shadow-red); }

/* ════════════════════════════════
   STATS — Red accent strip
════════════════════════════════ */
#stats {
  background: var(--red);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
#about {
  background: var(--bg);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.about-img-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.about-img-card .big { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.about-img-card .sm  { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }

.about-vision {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--body);
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 18px;
  margin: 22px 0;
  line-height: 1.6;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.apoint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body);
}
.apoint-ico {
  width: 32px; height: 32px;
  background: var(--red-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apoint-ico svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; }

/* ════════════════════════════════
   PROJECTS
════════════════════════════════ */
#projects {
  background: var(--bg-red-tint);
  padding: 100px 0;
}
.proj-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 20px;
}

.pcard {
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-red);
  margin-bottom: 36px;
  transition: var(--transition);
}
.pcard:last-child { margin-bottom: 0; }
.pcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pcard.flip { direction: rtl; }
.pcard.flip > * { direction: ltr; }

.pcard-img { position: relative; overflow: hidden; }
.pcard-img img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform .7s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard-img-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.pcard-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.pcard-wm {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-weight: 800;
  color: var(--red-pale);
  line-height: 1;
  user-select: none;
}

.pcard-name {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.pcard-name span { color: var(--red); }

.pcard-addr {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 16px;
}
.pcard-addr svg { width: 13px; height: 13px; stroke: var(--red); fill: none; stroke-width: 2.5; flex-shrink: 0; }

.pcard-quote {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
  line-height: 1.65;
}

/* Pricing row */
.price-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.price-pill {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  background: var(--red-pale);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  flex: 1;
  min-width: 120px;
}
.price-pill-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.price-pill-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.2;
}
.price-pill-sub {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 1px;
}

.feat-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--body);
}
.feat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.access-hd {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.access-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--body);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
}
.chip-km {
  font-weight: 700;
  color: var(--red);
  font-size: 11px;
}

.pcard-cta { display: flex; gap: 12px; }

/* ════════════════════════════════
   SPECS
════════════════════════════════ */
#specs {
  background: var(--bg);
  padding: 100px 0;
}
.specs-hd { text-align: center; margin-bottom: 60px; }

.specs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spec-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.spec-card:hover {
  border-color: var(--border-red);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.spec-card:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
  transform: translateY(-5px);
}
.spec-card:hover .spec-num { color: rgba(255,255,255,0.15); }
.spec-card:hover .spec-icon-wrap { background: rgba(255,255,255,0.15); }
.spec-card:hover .spec-icon-wrap svg { stroke: #fff; }
.spec-card:hover .spec-cat { color: rgba(255,255,255,0.7); }
.spec-card:hover .spec-title { color: #fff; }
.spec-card:hover .spec-detail { color: rgba(255,255,255,0.75); }

.spec-num {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  user-select: none;
  transition: var(--transition);
}
.spec-icon-wrap {
  width: 44px; height: 44px;
  background: var(--red-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.spec-icon-wrap svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; transition: var(--transition); }

.spec-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
  transition: var(--transition);
}
.spec-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: var(--transition);
}
.spec-detail {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  transition: var(--transition);
}
.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  background: var(--red-pale);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.spec-card:hover .quality-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: transparent;
}

/* ════════════════════════════════
   LOCATION
════════════════════════════════ */
#location {
  background: var(--bg-soft);
  padding: 100px 0;
}
.loc-hd { text-align: center; margin-bottom: 44px; }
.loc-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.ltab {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg);
}
.ltab.active, .ltab:hover { background: var(--red); border-color: var(--red); color: #fff; }

.loc-panel { display: none; }
.loc-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.loc-name { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.loc-addr { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }
.loc-grp-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin: 16px 0 8px;
}
.loc-chips { display: flex; flex-wrap: wrap; gap: 7px; }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
#contact {
  background: var(--bg);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.c-info-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.c-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.c-card:hover { border-color: var(--border-red); background: var(--red-pale); }
.c-card-ico {
  width: 40px; height: 40px;
  background: var(--red-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-card-ico svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; }
.c-card-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-txt); }
.c-card-val { font-size: 14px; font-weight: 600; color: var(--dark); margin-top: 2px; }

.c-form-box {
  background: var(--bg-red-tint);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}
.c-form-title { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.c-form-title span { color: var(--red); }
.c-form-sub { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 28px; }

.fgrp { margin-bottom: 14px; }
.fgrp label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.finput {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  transition: var(--transition);
}
.finput::placeholder { color: var(--light-txt); }
.finput:focus { outline: none; border-color: var(--red); }
.fsubmit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 8px;
  margin-top: 6px;
  transition: var(--transition);
}
.fsubmit:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: var(--shadow-red); }
.f-privacy {
  font-size: 11px;
  font-weight: 300;
  color: var(--light-txt);
  text-align: center;
  margin-top: 10px;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
#footer {
  background: #1C1C24;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-h {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 5px; }
.fcon-list { display: flex; flex-direction: column; gap: 12px; }
.fcon-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
}
.fcon-item svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.2); }
.footer-disc { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.15); }

/* ════════════════════════════════
   MODAL
════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.55);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 450px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform .3s;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.modal-overlay.open .modal-box { transform: none; }
.mclose {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mclose:hover { background: var(--red-pale); color: var(--red); }
.m-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-pale);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.m-title { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.m-title span { color: var(--red); }
.m-sub { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 22px; }
.m-success { display: none; text-align: center; padding: 20px 0; }
.m-success .s-ico { font-size: 3rem; margin-bottom: 12px; }
.m-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.m-success p { font-size: 14px; font-weight: 300; color: var(--muted); }

/* ════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.fbtn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.fbtn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.fbtn-wa  { background: #25D366; color: #fff; }
.fbtn-wa:hover  { transform: scale(1.06); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.fbtn-call { background: var(--red); color: #fff; }
.fbtn-call:hover { background: var(--red-hover); transform: scale(1.06); box-shadow: var(--shadow-red); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 0 60px; }
  .hero-left::after { display: none; }
  .hero-right { height: 400px; }
  .hero-float-form { position: relative; bottom: auto; right: auto; left: auto; margin: 0; border-radius: 0; box-shadow: none; border-top: 1px solid var(--border-red); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .pcard { grid-template-columns: 1fr; }
  .pcard.flip { direction: ltr; }
  .pcard-img img { min-height: 260px; }
  .specs-cards { grid-template-columns: repeat(2,1fr); }
  .loc-panel.active { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .logo-img { height: 36px; }
  .nav-inner { padding: 10px 16px; }
  #nav .btn { padding: 9px 16px; font-size: 11px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-call .call-txt { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .specs-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-card { right: 0; bottom: -16px; }
  .about-points { grid-template-columns: 1fr; }
  .proj-hd { flex-direction: column; align-items: flex-start; }
  .mini-form { grid-template-columns: 1fr; }
  .pcard-body { padding: 28px 22px; }
  .hero-left { padding: 120px 0 40px; }
  .float-btns .fbtn span { display: none; }
  .float-btns .fbtn { width: 50px; height: 50px; padding: 0; border-radius: 50%; justify-content: center; }
}
@media (max-width: 600px) {
  .price-row {
    flex-direction: column;
    gap: 8px;
  }
  .price-pill {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 500px) {
  #nav .btn { display: none; }
  .hero-pills {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .hpill {
    width: 100%;
    min-width: 100%;
  }
  .hero-cta {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .pcard-cta {
    flex-direction: column;
    gap: 8px;
  }
  .pcard-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1.htitle { font-size: 2rem; }
}
