/*
Theme Name: Ganga Steel 2026
Author: trivia info it
Author URI: http://trivia.co.in/
Description: Bootstrap based wp theme for Ganga Steel
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  --gold: #d9ad58;
  --gold-l: #f0cc80;
  --gold-d: #b8892e;
  --teal: #478a99;
  --teal-d: #2d6472;
  --teal-l: #6ab3c4;
  --ink: #080c10;
  --navy: #0d1929;
  --slate: #142236;
  --steel: #1c3248;
  --text: #ccdde6;
  --dim: #5a8090;
  --white: #f0f6f8;
  --font-body: "Barlow", sans-serif;
  --font-heading: "Bebas Neue", sans-serif;
  --font-condensed: "Barlow Condensed", sans-serif;
}

/*Wordpress editor styles start*/

.entry-content img {
  margin: 0 0 1.5em 0;
}
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.alignnone,
img.alignnone {
  /* not sure about this one */
}
.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}
.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}
.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}
blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/*Wordpress editor styles end*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  /* cursor: none; */
}

/* ── CURSOR ── */
/* #cur {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate(-5px, -5px);
}

#cur-r {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(217, 173, 88, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transform: translate(-18px, -18px);
} */

/* ── NOISE ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='f'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(8, 12, 16, 0.55);
  border-bottom: 1px solid rgba(71, 138, 153, 0.1);
  transition: all 0.4s;
}

.n-logo {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.n-logo span {
  color: var(--gold);
}
.n-logo img{
	width:33%;
}
.n-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.n-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.n-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.n-links a:hover {
  color: var(--gold);
}

.n-links a:hover::after {
  transform: scaleX(1);
}

.n-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.48rem 1.5rem;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.n-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mob-nav {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 16, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.mob-nav.open {
  transform: translateY(0);
}

.mob-nav a {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.mob-nav a:hover {
  color: var(--gold);
}

/* ── SHARED ── */
.sec-eye {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.sec-eye::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.sec-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
}

.sec-h2 em {
  font-style: normal;
  color: var(--teal-l);
}

.sec-h2 .dim {
  -webkit-text-stroke: 1px rgba(200, 216, 224, 0.2);
  color: transparent;
}

.sec-body {
  font-size: 0.98rem;
  color: var(--dim);
  line-height: 1.78;
  font-weight: 300;
}

.sec-body strong {
  color: var(--text);
  font-weight: 500;
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.82rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-l);
  transform: translateX(-101%);
  transition: transform 0.35s;
}

.btn-gold:hover::before {
  transform: translateX(0);
}

.btn-gold > * {
  position: relative;
  z-index: 1;
}

.btn-gold:hover {
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-l);
  border: 1px solid rgba(71, 138, 153, 0.4);
  padding: 0.82rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--teal-l);
  background: rgba(71, 138, 153, 0.1);
  color: var(--teal-l);
}

/* ══════════════════════════
       §1 HERO
    ══════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  background:
    radial-gradient(
      ellipse 80% 60% at 72% 28%,
      rgba(71, 138, 153, 0.24) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 50% at 8% 82%,
      rgba(217, 173, 88, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(162deg, #0d1929 0%, #080c10 55%, #0b1520 100%);
}

.h-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(71, 138, 153, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 138, 153, 0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gd 28s linear infinite;
}

@keyframes gd {
  to {
    background-position: 70px 70px;
  }
}

.h-orb1 {
  position: absolute;
  top: -18%;
  right: -6%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(71, 138, 153, 0.26) 0%,
    transparent 65%
  );
  animation: opulse 9s ease-in-out infinite alternate;
}

.h-orb2 {
  position: absolute;
  bottom: -22%;
  left: -9%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 173, 88, 0.14) 0%,
    transparent 60%
  );
  animation: opulse 11s ease-in-out infinite alternate-reverse;
}

@keyframes opulse {
  to {
    transform: scale(1.14);
  }
}

.hero-kw {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-l);
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.hero-kw::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-l);
  display: block;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

.hero-h1 .hline {
  display: block;
  overflow: hidden;
}

.hero-h1 .hinner {
  display: block;
}

.hero-h1 .c-gold {
  color: var(--gold);
}

.hero-h1 .c-out {
  -webkit-text-stroke: 1.5px rgba(240, 246, 248, 0.22);
  color: transparent;
}

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hero-loc svg {
  flex-shrink: 0;
}

.hero-sub {
  font-size: 1rem;
  color: var(--dim);
  max-width: 440px;
  line-height: 1.78;
  margin: 1.8rem 0 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(71, 138, 153, 0.14);
}

.hs-n {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hs-l {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.3rem;
}

/* hero card */
.hcard {
  background: linear-gradient(
    145deg,
    rgba(28, 50, 72, 0.88),
    rgba(13, 25, 41, 0.94)
  );
  border: 1px solid rgba(71, 138, 153, 0.3);
  padding: 2.6rem 2.4rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}

.hc-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: 0.3rem;
}

.hc-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.hc-sub {
  font-size: 0.76rem;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.pv {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 1.4rem 0;
}

.pr {
  height: 13px;
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.pr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.09),
    transparent
  );
  animation: sheen 3.5s ease-in-out infinite;
}

@keyframes sheen {
  0% {
    transform: translateX(-100%);
  }

  65%,
  100% {
    transform: translateX(100%);
  }
}

.pr:nth-child(odd) {
  background: linear-gradient(90deg, var(--teal-d), var(--teal), var(--teal-d));
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.pr:nth-child(even) {
  height: 8px;
  background: rgba(217, 173, 88, 0.28);
  clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
}

.hc-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.hcs-l {
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.hcs-v {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.15rem;
}

.hbadge {
  position: absolute;
  font-family: var(--font-condensed);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
}

.hb-tl {
  top: -1px;
  left: 26px;
  background: var(--gold);
  color: var(--ink);
}

.hb-br {
  bottom: 22px;
  right: -1px;
  background: var(--teal-d);
  color: var(--white);
  border: 1px solid rgba(71, 138, 153, 0.4);
}

/* MARQUEE */
.mq {
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(71, 138, 153, 0.12);
  border-bottom: 1px solid rgba(71, 138, 153, 0.12);
  background: rgba(71, 138, 153, 0.04);
}

.mq-t {
  display: flex;
  gap: 2.8rem;
  white-space: nowrap;
  animation: mq 38s linear infinite;
}

.mi {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-condensed);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  flex-shrink: 0;
}

.md {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════
       §2 SEO INTRO
    ══════════════════════════ */
#intro {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d1929 0%, #0e2035 100%);
  border-bottom: 1px solid rgba(71, 138, 153, 0.1);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text p {
  font-size: 1.02rem;
  color: var(--dim);
  line-height: 1.82;
  margin-bottom: 1.1rem;
}

.intro-text p strong {
  color: var(--text);
  font-weight: 500;
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(71, 138, 153, 0.25);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-l);
  font-family: var(--font-condensed);
  font-weight: 600;
  transition: all 0.3s;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(71, 138, 153, 0.08);
}

.istat {
  background: linear-gradient(
    135deg,
    rgba(13, 25, 41, 0.9),
    rgba(14, 31, 48, 0.95)
  );
  padding: 2rem 1.8rem;
  position: relative;
}

.istat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 40%;
  background: var(--gold);
}

.istat .n {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.istat .l {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.3rem;
}

/* ══════════════════════════
       §3 ROOFING
    ══════════════════════════ */
#roofing {
  background:
    radial-gradient(
      ellipse 55% 45% at 98% 2%,
      rgba(71, 138, 153, 0.16) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 45% 40% at 2% 98%,
      rgba(217, 173, 88, 0.09) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #0e1f30 0%, #0d1929 50%, #10202f 100%);
}

#products::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(71, 138, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 138, 153, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ══════════════════════════
       §4 SHUTTERS
    ══════════════════════════ */
#shutters {
  background:
    radial-gradient(
      ellipse 65% 55% at 0% 55%,
      rgba(71, 138, 153, 0.2) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 80%,
      rgba(217, 173, 88, 0.11) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #0a1520 0%, #0d1929 42%, #0e1f30 100%);
}

/* ══════════════════════════
       §5 ACCESSORIES
    ══════════════════════════ */
#accessories {
  background:
    radial-gradient(
      ellipse 60% 50% at 100% 0%,
      rgba(217, 173, 88, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 0% 100%,
      rgba(71, 138, 153, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0f2030 0%, #0d1929 50%, #0e1f30 100%);
}

/* ══════════════════════════
       UNIFIED PRODUCTS SECTION
    ══════════════════════════ */

/* ── intro bar ── */
/* CRITICAL FIX: Overflow hidden absolutely kills position:sticky. 
       We explicitly set overflow to visible for these container sections. */
#products {
  padding: 0;
  overflow: visible !important;
}

.prod-intro-wrap {
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 55% 45% at 98% 2%,
      rgba(71, 138, 153, 0.16) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 45% 40% at 2% 98%,
      rgba(217, 173, 88, 0.09) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #0e1f30 0%, #0d1929 100%);
}

.prod-intro-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(71, 138, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 138, 153, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── filter bar ── */
.pf-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pf-btn {
  background: transparent;
  border: 1px solid rgba(71, 138, 153, 0.25);
  color: var(--dim);
  padding: 0.52rem 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pf-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: 0;
}

.pf-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.pf-btn:hover span,
.pf-btn.active span {
  color: var(--ink);
}

.pf-btn.active {
  border-color: var(--gold);
}

.pf-btn.active::before,
.pf-btn:hover::before {
  transform: scaleX(1);
}

/* ── show/hide sections ── */
.story-section {
  display: none;
  overflow: visible !important;
  /* CRITICAL FIX for sticky positioning */
}

.story-section.visible {
  display: block;
}

.acc-section {
  display: none;
}

.acc-section.visible {
  display: block;
}

/* ── section heading bar ── */
.story-heading-bar {
  padding: 56px 0 52px;
  position: relative;
}

.story-heading-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(71, 138, 153, 0.25),
    transparent
  );
}

.sht-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sht-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.sht-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
}

.sht-title em {
  font-style: normal;
  color: var(--teal-l);
}

.sht-sub a {
  position: relative;
  font-size: 0.72rem;
  color: var(--teal-l);
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
  padding-right: 1rem;
  line-height: 1.8;
  text-decoration: none;
}
.sht-sub a:after {
  content: " . ";
  position: absolute;
  right: 3%;
  bottom: -9px;
  color: var(--teal-l);
  font-size: 1.5rem;
}

/* ══════════════════════════════════════════════════
       CORE STICKY LAYOUT
    ══════════════════════════════════════════════════ */

.story-outer {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas: "img txt";
  overflow: visible !important;
  /* CRITICAL FIX */
  position: relative;
}

.story-outer.img-left {
  grid-template-areas: "img txt";
}

.story-outer.img-right {
  grid-template-areas: "txt img";
}

.sc {
  grid-area: img;
  overflow: visible !important;
  /* CRITICAL FIX */
}

.sc-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #080c10;
}

.panels-col {
  grid-area: txt;
  background: linear-gradient(180deg, #0d1929 0%, #0e1f30 100%);
}

/* ── SLIDES: Setup for GSAP clipPath wipe ── */
.sslide {
  position: absolute;
  inset: 0;
  /* Default hidden, JS handles wiping */
  clip-path: inset(100% 0 0 0);
}

.sslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) saturate(0.85);
  transform-origin: center;
}

.sslide.is-active img {
  animation: kb 10s ease-out forwards;
}

@keyframes kb {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

.img-rings {
  position: absolute;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.rg {
  position: absolute;
  border-radius: 50%;
}

.rg-gold {
  width: 42%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(217, 173, 88, 0.45);
  top: 38%;
  left: 44%;
  transform: translate(-50%, -50%);
}

.rg-teal {
  width: 30%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(71, 138, 153, 0.5);
  top: 48%;
  left: 56%;
  transform: translate(-50%, -50%);
}

.img-grad {
  position: absolute;
  inset: 0;
  z-index: 101;
  pointer-events: none;
}

.img-left .img-grad {
  background: linear-gradient(
    90deg,
    transparent 50%,
    rgba(8, 12, 16, 0.92) 100%
  );
}

.img-right .img-grad {
  background: linear-gradient(
    270deg,
    transparent 50%,
    rgba(8, 12, 16, 0.92) 100%
  );
}

.img-vig {
  position: absolute;
  inset: 0;
  z-index: 102;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 16, 0.4) 0%,
    transparent 18%,
    transparent 82%,
    rgba(8, 12, 16, 0.45) 100%
  );
}

.img-ctr {
  position: absolute;
  z-index: 105;
  top: 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(8, 12, 16, 0.7);
  border: 1px solid rgba(217, 173, 88, 0.3);
  padding: 0.28rem 0.8rem;
  backdrop-filter: blur(8px);
}

.img-left .img-ctr {
  right: 1.8rem;
}

.img-right .img-ctr {
  left: 1.8rem;
}

.img-lbl {
  position: absolute;
  z-index: 104;
  pointer-events: none;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.055);
  bottom: 2rem;
}

.img-left .img-lbl {
  left: 2rem;
}

.img-right .img-lbl {
  right: 2rem;
}

.sp {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 64px;
  border-bottom: 1px solid rgba(71, 138, 153, 0.07);
  position: relative;
}

.sp:last-child {
  border-bottom: none;
}

.img-left .sp::before,
.img-right .sp::before {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.img-left .sp::before {
  left: 0;
}

.img-right .sp::before {
  right: 0;
}

.sp.iv::before {
  opacity: 1;
}

/* Mobile Inline Image for Product Cards */
.mob-img {
  display: none;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(71, 138, 153, 0.2);
}

.mob-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  filter: brightness(0.85);
}

.sp-eye {
  font-family: var(--font-condensed);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sp-eye::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--teal-l);
}

.sp-h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.sp-h3 em {
  font-style: normal;
  color: var(--gold);
}

.sp-body {
  font-size: 0.95rem;
  color: var(--dim);
  line-height: 1.82;
  max-width: 440px;
  margin-bottom: 1.8rem;
}

.sp-body strong {
  color: var(--text);
  font-weight: 500;
}

.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sp-tag {
  font-family: var(--font-condensed);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-l);
  background: rgba(71, 138, 153, 0.1);
  border: 1px solid rgba(71, 138, 153, 0.2);
  padding: 0.24rem 0.65rem;
}

.sp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(217, 173, 88, 0.35);
  padding: 0.5rem 1.2rem;
  background: rgba(217, 173, 88, 0.07);
  transition: all 0.3s;
}

.sp-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ══ ACCESSORIES ══ */
.acc-section {
  padding: 80px 0 110px;
  background:
    radial-gradient(
      ellipse 60% 50% at 100% 0%,
      rgba(217, 173, 88, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 0% 100%,
      rgba(71, 138, 153, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0f2030 0%, #0d1929 50%, #0e1f30 100%);
  position: relative;
  overflow: hidden;
}

.acc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(71, 138, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 138, 153, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(71, 138, 153, 0.08);
  margin-top: 3rem;
}

.acc-card {
  background: linear-gradient(
    145deg,
    rgba(13, 25, 41, 0.92),
    rgba(14, 31, 48, 0.96)
  );
  display: grid;
  grid-template-columns: 185px 1fr;
  overflow: hidden;
  position: relative;
  min-height: 175px;
  transition: background 0.35s;
  cursor: default;
}

.acc-card:hover {
  background: linear-gradient(
    145deg,
    rgba(20, 36, 56, 0.96),
    rgba(16, 32, 50, 0.99)
  );
}

.acc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s;
}

.acc-card:hover::before {
  transform: scaleY(1);
}

.acc-cimg {
  width: 185px;
  overflow: hidden;
  position: relative;
}

.acc-cimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.7);
  transition:
    transform 0.5s,
    filter 0.4s;
}

.acc-card:hover .acc-cimg img {
  transform: scale(1.07);
  filter: brightness(0.82) saturate(1);
}

.acc-cimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 55%,
    rgba(13, 25, 41, 0.7) 100%
  );
}

.acc-cbody {
  padding: 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acc-cnum {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: var(--teal-l);
  margin-bottom: 0.45rem;
}

.acc-ch3 {
  font-family: var(--font-condensed);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  line-height: 1.2;
}

.acc-card:hover .acc-ch3 {
  color: var(--gold);
}

.acc-cdesc {
  font-size: 0.77rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.acc-ctags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.acc-ctag {
  font-family: var(--font-condensed);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-l);
  background: rgba(71, 138, 153, 0.1);
  border: 1px solid rgba(71, 138, 153, 0.18);
  padding: 0.18rem 0.52rem;
}

/* ── responsive ── */
@media (max-width: 991px) {
  .story-outer {
    display: flex;
    flex-direction: column;
  }

  .sc {
    display: none !important;
    /* Hide sticky area on mobile */
  }

  .mob-img {
    display: block;
    /* Show inline card images on mobile */
  }

  .panels-col {
    width: 100%;
    flex: none;
    position: relative;
    z-index: 11;
  }

  .sp {
    padding: 50px 20px;
    min-height: auto;
    border-bottom: 1px solid rgba(71, 138, 153, 0.15) !important;
  }

  .sp::before {
    display: none !important;
    /* Hide decorative line on mobile */
  }

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

@media (max-width: 600px) {
  .sp {
    padding: 45px 15px;
  }

  .acc-card {
    grid-template-columns: 1fr;
  }

  .acc-cimg {
    width: 100%;
    height: 170px;
  }
}

/* ══════════════════════════
       §5b ROLLING SHUTTERS SLIDER
    ══════════════════════════ */
#rolling-shutters-slider {
  padding: 90px 0;
  background: linear-gradient(180deg, #0e1f30 0%, #0d1929 100%);
  border-top: 1px solid rgba(71, 138, 153, 0.1);
  overflow: hidden;
}

.shutter-slider-wrapper {
  position: relative;
  width: 100%;
}

.shutter-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  padding-bottom: 1rem;
}

.shutter-slider::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.scard {
  flex: 0 0 calc(33.333% - 1rem);
  /* Show 3 cards on desktop */
  scroll-snap-align: start;
  background: linear-gradient(
    145deg,
    rgba(28, 50, 72, 0.6),
    rgba(13, 25, 41, 0.82)
  );
  border: 1px solid rgba(71, 138, 153, 0.2);
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s;
}

.scard:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    145deg,
    rgba(35, 62, 88, 0.7),
    rgba(16, 32, 50, 0.9)
  );
  border-color: var(--gold);
}

.scard-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8);
}

.scard:hover .scard-img img {
  transform: scale(1.05);
  filter: brightness(1);
}

.scard-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.scard-body h4 {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.scard:hover .scard-body h4 {
  color: var(--gold);
}

.scard-body p {
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.6;
  margin: 0;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(71, 138, 153, 0.4);
  color: var(--teal-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

@media (max-width: 991px) {
  .scard {
    flex: 0 0 calc(50% - 0.75rem);
    /* Show 2 cards on tablet */
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .shutter-slider {
    padding-left: 10%;
    padding-right: 10%;
  }

  .scard {
    flex: 0 0 80%;
    /* Center peek layout on mobile */
    scroll-snap-align: center;
  }
}

/* ══════════════════════════
       §6 WHY CHOOSE US
    ══════════════════════════ */
#why {
  background:
    radial-gradient(
      ellipse 90% 110% at 50% 50%,
      rgba(217, 173, 88, 0.14) 0%,
      transparent 65%
    ),
    linear-gradient(135deg, #182b1e 0%, #1c3248 35%, #1a2e40 65%, #0d1929 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(71, 138, 153, 0.08);
  margin-top: 3rem;
}

.why-card {
  background: linear-gradient(
    145deg,
    rgba(13, 25, 41, 0.9),
    rgba(14, 31, 48, 0.95)
  );
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.why-card:hover {
  background: linear-gradient(
    145deg,
    rgba(20, 36, 56, 0.95),
    rgba(16, 32, 50, 0.98)
  );
}

.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.why-card:hover::after {
  height: 100%;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(71, 138, 153, 0.1);
  border: 1px solid rgba(71, 138, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: all 0.35s;
}
.why-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
}

.why-card:hover .why-icon {
  background: rgba(217, 173, 88, 0.1);
  border-color: var(--gold);
}

.why-title {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.why-body {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.65;
}

/* ══════════════════════════
       §7 PROCESS
    ══════════════════════════ */
#process {
  background:
    radial-gradient(
      ellipse 60% 50% at 100% 50%,
      rgba(217, 173, 88, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 0% 0%,
      rgba(71, 138, 153, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0f2030 0%, #0d1929 50%, #0e1f30 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 4rem;
}

.steps::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(71, 138, 153, 0.35),
    var(--teal),
    rgba(71, 138, 153, 0.35),
    transparent
  );
}

.step {
  padding: 0 2rem 2.5rem;
  text-align: center;
}

.step-n {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(71, 138, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--teal-l);
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.step:hover .step-n {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(217, 173, 88, 0.3);
}

.step-t {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step-b {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.65;
}

/* ══════════════════════════
       §8 LOCATION
    ══════════════════════════ */
#location {
  padding: 90px 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 0% 50%,
      rgba(71, 138, 153, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 80%,
      rgba(217, 173, 88, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #0a1520 0%, #0d1929 42%, #0e1f30 100%);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.loc-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(71, 138, 153, 0.22);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-l);
  font-family: var(--font-condensed);
  font-weight: 600;
  transition: all 0.3s;
  cursor: default;
}

.city-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.city-tag.primary {
  border-color: rgba(217, 173, 88, 0.4);
  color: var(--gold);
}

.loc-box {
  background: linear-gradient(
    145deg,
    rgba(28, 50, 72, 0.6),
    rgba(13, 25, 41, 0.82)
  );
  border: 1px solid rgba(71, 138, 153, 0.22);
  padding: 2.8rem;
  position: relative;
  backdrop-filter: blur(8px);
}

.loc-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(71, 138, 153, 0.1);
}

.loc-row:first-of-type {
  padding-top: 0;
}

.loc-row:last-of-type {
  border-bottom: 0;
}

.lr-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(71, 138, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lr-title {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.lr-val {
  font-size: 0.8rem;
  color: var(--dim);
}

/* ══════════════════════════
       §9 FAQ
    ══════════════════════════ */
#faq {
  padding: 90px 0;
  background:
    radial-gradient(
      ellipse 55% 60% at 100% 0%,
      rgba(71, 138, 153, 0.14) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #0e1f30 0%, #080c10 100%);
}

.faq-wrap {
  max-width: 820px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(71, 138, 153, 0.12);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  gap: 1rem;
}

.faq-q h3 {
  font-family: var(--font-condensed);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-q:hover h3 {
  color: var(--gold);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(71, 138, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}

.faq-icon svg {
  transition: transform 0.4s;
}

.faq-item.open .faq-icon {
  border-color: var(--gold);
  background: rgba(217, 173, 88, 0.08);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-item.open .faq-q h3 {
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-a p {
  padding: 0 0 1.4rem;
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.78;
}

/* ══════════════════════════
       §10 CTA BAND
    ══════════════════════════ */
#cta {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(
      ellipse 100% 120% at 50% 50%,
      rgba(217, 173, 88, 0.2) 0%,
      transparent 65%
    ),
    linear-gradient(135deg, #0d1929 0%, #14273a 40%, #12202e 100%);
}

#cta::before {
  content: "Ganga";
  font-family: var(--font-heading);
  font-size: 30vw;
  color: rgba(217, 173, 88, 0.04);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

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

.cta-h {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  color: var(--white);
  line-height: 0.88;
  letter-spacing: 0.03em;
}

.cta-h span {
  color: var(--gold);
}

.cta-p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 420px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════
       §11 CONTACT
    ══════════════════════════ */
#contact {
  background:
    radial-gradient(
      ellipse 50% 60% at 100% 0%,
      rgba(71, 138, 153, 0.15) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 0% 100%,
      rgba(217, 173, 88, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0e1f30 0%, #0a1520 100%);
}

.ci-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.ci-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(71, 138, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.ci-row:hover .ci-icon {
  border-color: var(--gold);
  background: rgba(217, 173, 88, 0.08);
}

.ci-l {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.ci-v {
  font-size: 0.88rem;
  color: var(--white);
  margin-top: 0.12rem;
}

.form-box {
  background: linear-gradient(
    145deg,
    rgba(20, 34, 54, 0.8),
    rgba(13, 25, 41, 0.9)
  );
  border: 1px solid rgba(71, 138, 153, 0.18);
  padding: 2.4rem;
  position: relative;
  backdrop-filter: blur(8px);
}

.form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.fl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 0.45rem;
}

.fi {
  width: 100%;
  background: rgba(8, 12, 16, 0.5);
  border: 1px solid rgba(71, 138, 153, 0.2);
  color: var(--white);
  padding: 0.72rem 1rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  border-radius: 0;
}

.fi:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 173, 88, 0.08);
}

.fi::placeholder {
  color: var(--dim);
}

select.fi {
  -webkit-appearance: none;
  color: var(--dim);
}

.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.fg {
  margin-bottom: 1.1rem;
}

.fsub {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.95rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.fsub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-l);
  transform: translateX(-101%);
  transition: transform 0.35s;
}

.fsub:hover::before {
  transform: translateX(0);
}

.fsub span {
  position: relative;
  z-index: 1;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #060a0e, #080c10);
  border-top: 1px solid rgba(71, 138, 153, 0.1);
  padding: 5rem 0 2rem;
}

.ft-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.08em;
}

.ft-logo span {
  color: var(--gold);
}

.ft-tag {
  font-size: 0.74rem;
  color: var(--dim);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

.ft-desc {
  font-size: 0.79rem;
  color: var(--dim);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.ft-title {
  font-family: var(--font-condensed);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.ft-links {
  list-style: none;
}

.ft-links li {
  margin-bottom: 0.55rem;
}

.ft-links a {
  font-size: 0.82rem;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
}

.ft-links a:hover {
  color: var(--white);
}

.ft-bottom {
  border-top: 1px solid rgba(71, 138, 153, 0.08);
  margin-top: 3rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-copy {
  font-size: 0.72rem;
  color: var(--dim);
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.si {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(71, 138, 153, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  text-decoration: none;
  transition: all 0.3s;
}

.si:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  #nav {
    padding: 1.1rem 1.5rem;
  }

  .n-links,
  .n-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .intro-grid,
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sec-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

  .steps::before {
    display: none;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .pg,
  .why-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .hero-h1 {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  section {
    padding: 75px 0;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
}

.subPages ul {
  position: relative;
  width: 100%;
  margin: 2rem auto 2rem auto;
}
.subPages ul li {
  position: relative;
  list-style: none;
  border-bottom: 1px dotted var(--dim);
  margin: 0.6rem 0 0.6rem 0;
  padding-bottom: 0.1rem;
}
