/* ============================================================
   GK Realty - Company Website
   Light "construction/architecture" theme.
   Off-white base · near-black ink · burnt-orange (#E8590C) accent.
   Sora (grotesk headings) + Inter (body). Pill + circular-arrow motif.
   ============================================================ */

*,*::before,*::after{ margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }

:root{
  --bg:#f5f4f1;            /* page off-white */
  --bg-2:#efeeea;          /* alt light section */
  --surface:#ffffff;       /* cards */
  --ink:#0b0d0d;           /* near-black text */
  --ink-2:#373a41;         /* dark slate */
  --muted:#73828f;         /* secondary text */
  --muted-2:#9aa3ab;
  --line:#e6e4df;          /* borders */
  --line-2:#d7d4cd;

  --accent:#e8590c;        /* burnt orange */
  --accent-2:#fb7a33;      /* gradient end (warm lift) */
  --accent-soft:#fdf1ea;   /* tint */

  --dark:#0b0d0d;          /* dark cards/footer */
  --dark-2:#15181a;

  --wa:#25d366;
  --ig-grad:linear-gradient(135deg,#f09433,#e6683c 30%,#dc2743 60%,#bc1888);

  --r-sm:14px; --r:20px; --r-lg:28px; --r-xl:36px;
  --shadow:0 18px 50px rgba(11,13,13,.10);
  --shadow-sm:0 8px 24px rgba(11,13,13,.07);
  --shadow-accent:0 14px 34px rgba(232,89,12,.28);

  --maxw:1200px;
  --nav-h:74px;
}

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; scroll-padding-top:96px; }
body{
  font-family:'Inter','Noto Sans Gujarati',sans-serif;
  background:var(--bg); color:var(--ink); line-height:1.6;
  overflow-x:hidden; -webkit-font-smoothing:antialiased;
}
::selection{ background:var(--accent); color:#fff; }
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:6px; }

.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }
h1,h2,h3,h4{ font-family:'Sora',sans-serif; letter-spacing:-0.02em; }

/* ── Section scaffolding ── */
.section{ padding:104px 0; position:relative; }
.section.alt{ background:var(--bg-2); }
.label{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--accent);
  font-family:'Sora',sans-serif;
}
.label::before, .label.center::after{ content:'-----'; letter-spacing:1px; color:var(--accent); opacity:.7; font-weight:800; }
.section-head{ max-width:720px; margin:0 auto 60px; text-align:center; }
.section-head .label{ margin-bottom:16px; }
.section-head h2{ font-size:clamp(30px,4.8vw,50px); font-weight:800; line-height:1.08; color:var(--ink); }
.section-head h2 em{ font-style:normal; color:var(--accent); }
.section-head p{ color:var(--muted); margin-top:16px; font-size:16px; }

/* ── Buttons (pill + circular arrow) ── */
.btn{
  display:inline-flex; align-items:center; gap:12px;
  font-family:'Sora',sans-serif; font-weight:600; font-size:14px; letter-spacing:.3px;
  padding:8px 8px 8px 22px; border-radius:50px; border:1px solid transparent; cursor:pointer;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .25s, color .25s;
  white-space:nowrap; text-transform:uppercase;
}
.btn .ba{
  width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:transform .25s;
}
.btn .ba svg{ width:17px; height:17px; }
.btn:hover .ba{ transform:rotate(45deg); }
.btn:active{ transform:scale(.97); }
.btn-accent{ background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; box-shadow:var(--shadow-accent); }
.btn-accent .ba{ background:var(--ink); color:#fff; }
.btn-accent:hover{ transform:translateY(-2px); box-shadow:0 18px 40px rgba(232,89,12,.4); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark .ba{ background:var(--accent); color:#fff; }
.btn-dark:hover{ transform:translateY(-2px); }
.btn-light{ background:var(--surface); color:var(--ink); border-color:var(--line); box-shadow:var(--shadow-sm); }
.btn-light .ba{ background:var(--accent); color:#fff; }
.btn-light:hover{ transform:translateY(-2px); }
.btn-wa{ background:linear-gradient(135deg,#25d366,#128c7e); color:#fff; }
.btn-wa .ba{ background:rgba(255,255,255,.25); color:#fff; }
.btn-wa:hover{ transform:translateY(-2px); }
.btn-lg{ font-size:15px; padding:10px 10px 10px 26px; }
.btn-lg .ba{ width:44px; height:44px; }
.btn-block{ width:100%; justify-content:center; }

/* round icon arrow (used standalone on cards) */
.arrow-btn{ width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .25s; }
.arrow-btn svg{ width:18px; height:18px; }
a:hover > .arrow-btn, .card:hover .arrow-btn{ transform:rotate(45deg); }

/* ════════════ NAVBAR (floating pill) ════════════ */
.nav{ position:sticky; top:14px; z-index:1000; margin-bottom:-74px; }
.nav .container{ display:flex; }
.nav-inner{
  flex:1; display:flex; align-items:center; justify-content:space-between; gap:18px;
  height:62px; padding:8px 8px 8px 18px; border-radius:50px;
  background:rgba(255,255,255,.82); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.7); box-shadow:var(--shadow-sm); transition:box-shadow .3s;
}
.nav.scrolled .nav-inner{ box-shadow:var(--shadow); background:rgba(255,255,255,.95); }
.brand{ display:flex; align-items:center; gap:11px; }
.brand img{ width:38px; height:38px; object-fit:contain; }
.brand .bn{ font-family:'Sora',sans-serif; font-weight:800; font-size:19px; line-height:1; color:var(--ink); }
.brand .bn small{ display:block; font-size:8.5px; font-weight:700; letter-spacing:2px; color:var(--accent); margin-top:3px; }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-size:14px; font-weight:600; color:var(--ink-2); transition:color .2s; }
.nav-links a:hover{ color:var(--accent); }
.nav-cta{ display:flex; align-items:center; gap:10px; }
.btn-cta{
  display:inline-flex; align-items:center; gap:9px; padding:9px 9px 9px 18px; border-radius:50px;
  font-family:'Sora',sans-serif; font-weight:700; font-size:13.5px; text-transform:uppercase; letter-spacing:.4px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; box-shadow:var(--shadow-accent);
  transition:transform .2s, box-shadow .2s;
}
.btn-cta .lk{ width:30px; height:30px; border-radius:50%; background:var(--ink); display:flex; align-items:center; justify-content:center; }
.btn-cta .lk svg{ width:14px; height:14px; }
.btn-cta:hover{ transform:translateY(-2px); box-shadow:0 16px 36px rgba(232,89,12,.4); }
.nav-toggle{ display:none; width:46px; height:46px; border-radius:50%; background:var(--ink); border:none; cursor:pointer; align-items:center; justify-content:center; flex-shrink:0; }
.nav-toggle span{ display:block; width:18px; height:2px; background:#fff; position:relative; }
.nav-toggle span::before,.nav-toggle span::after{ content:''; position:absolute; left:0; width:18px; height:2px; background:#fff; transition:.25s; }
.nav-toggle span::before{ top:-6px; } .nav-toggle span::after{ top:6px; }
body.menu-open .nav-toggle span{ background:transparent; }
body.menu-open .nav-toggle span::before{ transform:rotate(45deg); top:0; }
body.menu-open .nav-toggle span::after{ transform:rotate(-45deg); top:0; }

/* ════════════ HERO ════════════ */
.hero{ padding:0; }
.hero-card{
  position:relative; margin:0 14px; border-radius:var(--r-xl); overflow:hidden;
  min-height:90vh; display:flex; align-items:flex-end;
  padding:64px clamp(24px,5vw,72px) clamp(48px,6vw,72px);
}
.hero-card::before{ content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg,rgba(11,13,13,.72) 0%,rgba(11,13,13,.42) 42%,rgba(11,13,13,.12) 100%),
             linear-gradient(0deg,rgba(11,13,13,.55),transparent 45%); }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-inner{ position:relative; z-index:2; max-width:760px; width:100%; }
.hero-badges{ display:flex; gap:10px; margin-bottom:22px; flex-wrap:wrap; }
.chip{ display:inline-flex; align-items:center; gap:8px; font-family:'Sora',sans-serif; font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#fff; padding:8px 14px; border-radius:50px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.28); backdrop-filter:blur(6px); }
.chip.live{ background:var(--accent); border-color:var(--accent); }
.chip.live::before{ content:''; width:7px; height:7px; border-radius:50%; background:#fff; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.25);opacity:.55} }
.hero h1{ color:#fff; font-size:clamp(40px,6.6vw,80px); font-weight:800; line-height:1.02; margin-bottom:20px; }
.hero h1 em{ font-style:normal; color:var(--accent); }
.hero .lead{ color:rgba(255,255,255,.82); font-size:clamp(15px,2vw,18px); max-width:540px; margin-bottom:30px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.hero-reviews{ position:absolute; top:clamp(96px,12vw,120px); right:clamp(24px,5vw,72px); z-index:2;
  display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.92); border-radius:50px; padding:8px 16px 8px 8px; box-shadow:var(--shadow); }
.avatars{ display:flex; }
.avatars span{ width:34px; height:34px; border-radius:50%; border:2px solid #fff; margin-left:-10px; background:var(--accent-soft); display:flex; align-items:center; justify-content:center; font-size:13px; }
.avatars span:first-child{ margin-left:0; }
.hero-reviews .rv b{ font-family:'Sora',sans-serif; font-size:14px; font-weight:700; display:block; line-height:1; }
.hero-reviews .stars{ color:var(--accent); font-size:12px; letter-spacing:1px; }
.hero-social{ position:absolute; left:clamp(8px,2vw,24px); top:50%; transform:translateY(-50%); z-index:2; display:flex; flex-direction:column; gap:14px; align-items:center; }
.hero-social::after{ content:''; width:1px; height:54px; background:rgba(255,255,255,.4); margin-top:6px; }
.hero-social a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.4); display:flex; align-items:center; justify-content:center; color:#fff; transition:.2s; }
.hero-social a:hover{ background:var(--accent); border-color:var(--accent); }
.hero-social svg{ width:15px; height:15px; }

/* ════════════ STATS / ABOUT ════════════ */
.about-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:60px; align-items:center; }
.about-visual{ position:relative; }
.about-visual .main-img{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); }
.about-visual .main-img img{ width:100%; aspect-ratio:4/3.4; object-fit:cover; }
.stat-card{ position:absolute; left:-18px; bottom:-26px; background:var(--surface); border-radius:var(--r); padding:22px 26px; box-shadow:var(--shadow); min-width:190px; }
.stat-card .n{ font-family:'Sora',sans-serif; font-size:42px; font-weight:800; line-height:1; display:flex; align-items:flex-start; gap:4px; }
.stat-card .n .dot{ width:9px; height:9px; border-radius:50%; background:var(--accent); margin-top:6px; }
.stat-card hr{ border:none; border-top:1px solid var(--line); margin:12px 0; }
.stat-card p{ font-size:12.5px; color:var(--muted); font-weight:500; }
.dark-card{ position:absolute; right:-14px; top:-22px; background:var(--dark); color:#fff; border-radius:var(--r); padding:20px 22px; box-shadow:var(--shadow); }
.dark-card .t{ font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted-2); font-weight:700; }
.dark-card .b{ font-family:'Sora',sans-serif; font-size:30px; font-weight:800; margin-top:6px; }
.about-copy .label{ margin-bottom:16px; }
.about-copy h2{ font-size:clamp(28px,4.2vw,44px); font-weight:800; line-height:1.1; margin-bottom:20px; }
.about-copy h2 em{ font-style:normal; color:var(--accent); }
.about-copy p{ color:var(--muted); margin-bottom:16px; font-size:15.5px; }
.about-points{ display:grid; grid-template-columns:1fr 1fr; gap:12px 22px; margin:24px 0 30px; }
.about-points li{ display:flex; gap:11px; align-items:flex-start; font-size:14.5px; color:var(--ink-2); font-weight:500; }
.about-points .tick{ flex:0 0 22px; width:22px; height:22px; border-radius:50%; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:12px; margin-top:1px; }

/* ════════════ OFFERINGS / AMENITIES (cards) ════════════ */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:28px 26px; transition:transform .25s, box-shadow .25s, border-color .25s; position:relative; }
.card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
.ic-circle{ width:54px; height:54px; border-radius:50%; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:18px; transition:.25s; }
.ic-circle svg{ width:26px; height:26px; }
.card:hover .ic-circle{ background:var(--accent); color:#fff; }
.card h3{ font-family:'Sora',sans-serif; font-size:17px; font-weight:700; margin-bottom:8px; }
.card .divider{ height:1px; background:var(--line); margin:14px 0; }
.card p{ font-size:13.5px; color:var(--muted); }

/* ════════════ PROJECT (Bilipatra) ════════════ */
.project-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:54px; align-items:center; }
.project-media{ position:relative; }
.project-media .pm-main{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); transform:rotate(-2deg); }
.project-media .pm-main img{ width:100%; aspect-ratio:4/4.6; object-fit:cover; }
.project-media .pm-badge{ position:absolute; top:18px; left:18px; z-index:2; background:var(--accent); color:#fff; font-family:'Sora',sans-serif; font-size:11px; font-weight:700; letter-spacing:1.2px; padding:9px 16px; border-radius:50px; }
.project-logo{ display:inline-flex; background:#fff; border:1px solid var(--line); border-radius:16px; padding:12px 16px; margin-bottom:20px; box-shadow:var(--shadow-sm); }
.project-logo img{ height:50px; width:auto; }
.project-info h2{ font-size:clamp(30px,4.4vw,46px); font-weight:800; line-height:1.06; margin-bottom:8px; }
.project-info .sub{ color:var(--accent); font-family:'Sora',sans-serif; font-weight:600; margin-bottom:18px; font-size:15px; }
.project-info p{ color:var(--muted); font-size:15.5px; margin-bottom:26px; }
.hl-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-bottom:30px; }
.hl{ display:flex; gap:13px; align-items:center; background:var(--surface); border:1px solid var(--line); border-radius:var(--r-sm); padding:13px 15px; transition:.2s; }
.hl:hover{ border-color:var(--accent); transform:translateY(-2px); }
.hl .ic{ flex:0 0 40px; width:40px; height:40px; border-radius:11px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; }
.hl .ic svg{ width:21px; height:21px; }
.hl .tx b{ display:block; font-family:'Sora',sans-serif; font-size:14px; font-weight:600; }
.hl .tx span{ font-size:12px; color:var(--muted); }
.project-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ════════════ DIFFERENT (feature cards on watermark) ════════════ */
.diff{ position:relative; }
.diff .feat-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:18px; }
.diff .photo-card{ grid-row:span 2; border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow); min-height:280px; }
.diff .photo-card img{ width:100%; height:100%; object-fit:cover; }
.feat{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:24px; box-shadow:var(--shadow-sm); }
.feat .ic-circle{ margin-bottom:14px; }
.feat h3{ font-family:'Sora',sans-serif; font-size:16px; font-weight:700; margin-bottom:12px; }
.feat .divider{ height:1px; background:var(--line); margin:10px 0 12px; }
.feat p{ font-size:13px; color:var(--muted); }

/* ════════════ GALLERY ════════════ */
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:16px; }
.gitem{ position:relative; overflow:hidden; border-radius:var(--r); cursor:zoom-in; box-shadow:var(--shadow-sm); }
.gitem img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.gitem:hover img{ transform:scale(1.07); }
.gitem .cap{ position:absolute; left:14px; bottom:12px; z-index:2; font-family:'Sora',sans-serif; font-size:12.5px; font-weight:600; color:#fff; opacity:0; transform:translateY(8px); transition:.3s; }
.gitem::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(11,13,13,.55),transparent 55%); opacity:0; transition:.3s; }
.gitem:hover::after, .gitem:hover .cap{ opacity:1; transform:none; }
.gitem .za{ position:absolute; top:12px; right:12px; z-index:2; width:34px; height:34px; border-radius:50%; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; opacity:0; transition:.3s; }
.gitem:hover .za{ opacity:1; }
.gitem .za svg{ width:15px; height:15px; }
.gitem.tall{ grid-row:span 2; } .gitem.wide{ grid-column:span 2; }
/* Lightbox */
.lightbox{ position:fixed; inset:0; z-index:2000; background:rgba(11,13,13,.9); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; padding:30px; opacity:0; pointer-events:none; transition:opacity .25s; }
.lightbox.open{ opacity:1; pointer-events:auto; }
.lb-stage{ display:flex; align-items:center; justify-content:center; }
.lightbox img{ max-width:92vw; max-height:86vh; border-radius:14px; box-shadow:var(--shadow); }
.lightbox .lb-close,.lightbox .lb-nav{ position:absolute; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.3); color:#fff; width:48px; height:48px; border-radius:50%; font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.lightbox .lb-close{ top:22px; right:22px; }
.lightbox .lb-nav.prev{ left:22px; top:50%; transform:translateY(-50%); }
.lightbox .lb-nav.next{ right:22px; top:50%; transform:translateY(-50%); }

/* ════════════ LOCATION ════════════ */
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:stretch; }
.loc-map{ border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line); min-height:400px; position:relative; background:var(--bg-2); box-shadow:var(--shadow-sm); }
.loc-map iframe{ width:100%; height:100%; min-height:400px; border:0; }
.loc-map .map-ph{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:var(--muted); font-size:13px; }
.loc-info .label{ margin-bottom:16px; }
.loc-info h2{ font-size:clamp(26px,3.8vw,42px); font-weight:800; line-height:1.1; margin-bottom:14px; }
.loc-info h2 em{ font-style:normal; color:var(--accent); }
.loc-info > p{ color:var(--muted); margin-bottom:26px; font-size:15px; }
.conn-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.conn{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-sm); padding:18px 12px; text-align:center; transition:.2s; }
.conn:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); border-color:transparent; }
.conn .ic-wrap{ width:44px; height:44px; margin:0 auto 8px; border-radius:12px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; }
.conn .ic-wrap svg{ width:22px; height:22px; }
.conn .name{ font-family:'Sora',sans-serif; font-size:12.5px; font-weight:600; }
.conn .dist{ color:var(--accent); font-family:'Sora',sans-serif; font-weight:700; font-size:14px; margin-top:3px; }

/* ════════════ PRICING ════════════ */
.price-grid{ display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:center; }
.plan-media{ border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line); background:#fff; box-shadow:var(--shadow-sm); }
.plan-media img{ width:100%; object-fit:contain; }
.price-cards{ display:grid; gap:16px; }
.price-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:24px; display:flex; align-items:center; gap:18px; transition:.2s; }
.price-card:hover{ box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.price-card .ic-circle{ margin-bottom:0; flex-shrink:0; }
.price-card .tx h3{ font-family:'Sora',sans-serif; font-size:20px; font-weight:700; }
.price-card .tx p{ font-size:13.5px; color:var(--muted); margin-top:2px; }
.price-card .tag{ margin-left:auto; font-family:'Sora',sans-serif; font-size:11px; font-weight:700; letter-spacing:.6px; color:var(--accent); background:var(--accent-soft); padding:8px 14px; border-radius:50px; white-space:nowrap; }
.price-note{ font-size:13px; color:var(--muted-2); margin-top:8px; }

/* ════════════ CTA STRIP ════════════ */
.cta-strip{ background:var(--dark); color:#fff; border-radius:var(--r-xl); padding:clamp(40px,6vw,72px); display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; position:relative; overflow:hidden; }
.cta-strip::after{ content:''; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle,rgba(232,89,12,.35),transparent 70%); }
.cta-strip h2{ font-size:clamp(26px,3.6vw,42px); font-weight:800; line-height:1.1; max-width:620px; position:relative; z-index:1; }
.cta-strip h2 em{ font-style:normal; color:var(--accent); }
.cta-strip .ca{ position:relative; z-index:1; display:flex; gap:14px; flex-wrap:wrap; }

/* ════════════ CONTACT ════════════ */
.contact-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:50px; align-items:start; }
.contact-info .label{ margin-bottom:16px; }
.contact-info h2{ font-size:clamp(28px,4.2vw,44px); font-weight:800; line-height:1.1; margin-bottom:16px; }
.contact-info h2 em{ font-style:normal; color:var(--accent); }
.contact-info > p{ color:var(--muted); margin-bottom:28px; font-size:15.5px; }
.contact-methods{ display:grid; gap:12px; }
.cm{ display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:16px 18px; transition:.2s; }
.cm:hover{ transform:translateX(4px); box-shadow:var(--shadow-sm); border-color:transparent; }
.cm .ic{ width:46px; height:46px; border-radius:13px; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#fff; }
.cm .ic svg{ width:22px; height:22px; }
.cm.wa .ic{ background:var(--wa); } .cm.ig .ic{ background:var(--ig-grad); } .cm.call .ic{ background:var(--accent); }
.cm .tx b{ display:block; font-family:'Sora',sans-serif; font-size:15px; } .cm .tx span{ font-size:12.5px; color:var(--muted); }

.lead-form{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:34px; box-shadow:var(--shadow); }
.lead-form h3{ font-family:'Sora',sans-serif; font-size:24px; font-weight:800; margin-bottom:6px; }
.lead-form .fh{ font-size:13.5px; color:var(--muted); margin-bottom:24px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-family:'Sora',sans-serif; font-size:12px; font-weight:600; letter-spacing:.4px; color:var(--ink-2); margin-bottom:7px; }
.field input,.field select,.field textarea{ width:100%; font-family:inherit; font-size:15px; color:var(--ink); background:var(--bg); border:1px solid var(--line-2); border-radius:12px; padding:13px 15px; transition:.2s; }
.field input::placeholder,.field textarea::placeholder{ color:var(--muted-2); }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--accent); background:#fff; box-shadow:0 0 0 3px rgba(232,89,12,.1); }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23e8590c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 15px center; padding-right:40px; }
.field textarea{ resize:vertical; min-height:90px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-note{ font-size:11.5px; color:var(--muted-2); margin-top:14px; text-align:center; }
.form-note a{ color:var(--accent); }

/* ════════════ FOOTER (dark) ════════════ */
.footer{ background:var(--dark); color:#fff; padding:72px 0 28px; margin-top:0; }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.1fr; gap:40px; margin-bottom:46px; }
.footer .f-brand .fl{ display:flex; align-items:center; gap:11px; margin-bottom:16px; }
.footer .f-brand .fl img{ width:40px; height:40px; background:#fff; border-radius:10px; padding:5px; }
.footer .f-brand .fl b{ font-family:'Sora',sans-serif; font-size:19px; font-weight:800; }
.footer .f-brand p{ font-size:13.5px; color:var(--muted-2); max-width:280px; }
.footer h4{ font-family:'Sora',sans-serif; font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--accent); margin-bottom:18px; font-weight:700; }
.footer ul li{ margin-bottom:11px; }
.footer ul a{ font-size:14px; color:var(--muted-2); transition:.2s; }
.footer ul a:hover{ color:#fff; }
.f-reach svg{ width:15px; height:15px; vertical-align:-2px; margin-right:8px; color:var(--accent); }
.f-socials{ display:flex; gap:10px; margin-top:6px; }
.f-socials a{ width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; color:#fff; transition:.2s; }
.f-socials a:hover{ background:var(--accent); border-color:var(--accent); transform:translateY(-3px); }
.f-socials svg{ width:18px; height:18px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-top:24px; display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-bottom p{ font-size:12.5px; color:var(--muted-2); }
.site-ver{ display:inline-block; margin-left:8px; padding:1px 8px; border-radius:50px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:var(--muted-2); font-size:11px; font-weight:600; letter-spacing:.3px; }
.footer-bottom .fb-links{ display:flex; gap:20px; }
.footer-bottom .fb-links a{ font-size:12.5px; color:var(--muted-2); transition:.2s; }
.footer-bottom .fb-links a:hover{ color:var(--accent); }

/* ════════════ MOBILE STICKY BAR ════════════ */
.mobile-bar{ display:none; position:fixed; bottom:0; left:0; right:0; z-index:900; padding:10px 12px calc(10px + env(safe-area-inset-bottom,0px)); gap:8px; background:rgba(255,255,255,.96); backdrop-filter:blur(14px); border-top:1px solid var(--line); box-shadow:0 -10px 30px rgba(11,13,13,.1); }
.mobile-bar a{ flex:1; display:flex; align-items:center; justify-content:center; gap:7px; min-height:46px; border-radius:13px; font-family:'Sora',sans-serif; font-size:13px; font-weight:600; border:1px solid transparent; }
.mobile-bar svg{ width:16px; height:16px; }
.mb-b{ background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; }
.mb-w{ background:var(--wa); color:#fff; }
.mb-c{ background:var(--bg-2); color:var(--ink); border-color:var(--line); }

/* ════════════ ICONS / MOTION ════════════ */
.ic-ln{ fill:none; stroke:currentColor; stroke-width:1.85; stroke-linecap:round; stroke-linejoin:round; }
.magnetic{ will-change:transform; }
.tilt{ transition:transform .35s cubic-bezier(.22,1,.36,1); }
.count{ font-variant-numeric:tabular-nums; }
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
  html{ scroll-behavior:auto; }
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width:1024px){
  .about-grid,.project-grid,.loc-grid,.price-grid,.contact-grid{ grid-template-columns:1fr; gap:46px; }
  .about-visual{ max-width:520px; }
  .diff .feat-grid{ grid-template-columns:1fr 1fr; }
  .diff .photo-card{ grid-row:span 1; }
  .gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:768px){
  .section{ padding:68px 0; }
  .nav-links{ position:fixed; inset:88px 14px auto 14px; flex-direction:column; align-items:stretch; gap:0;
    background:rgba(255,255,255,.97); backdrop-filter:blur(18px); border:1px solid var(--line); border-radius:var(--r);
    padding:8px 18px; box-shadow:var(--shadow); transform:translateY(-12px); opacity:0; pointer-events:none; transition:.25s; }
  body.menu-open .nav-links{ transform:none; opacity:1; pointer-events:auto; }
  .nav-links a{ padding:14px 0; border-bottom:1px solid var(--line); font-size:16px; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-cta{ display:none; }
  .card-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .card{ padding:22px 18px; }
  .hl-grid{ grid-template-columns:1fr; }
  .conn-grid{ grid-template-columns:repeat(3,1fr); }
  .diff .feat-grid{ grid-template-columns:1fr; }
  .about-points{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .mobile-bar{ display:flex; }
  body{ padding-bottom:74px; }
  .hero-card{ min-height:auto; padding:120px 22px 56px; border-radius:var(--r-lg); }
  .hero-reviews{ display:none; }
  .hero-social{ display:none; }
  .hero-card::before{ background:linear-gradient(0deg,rgba(11,13,13,.7),rgba(11,13,13,.3)); }
  .cta-strip{ flex-direction:column; align-items:flex-start; text-align:left; }
  .stat-card{ left:0; }
}
@media (max-width:460px){
  .container{ padding:0 16px; }
  .card-grid{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:1fr 1fr; grid-auto-rows:140px; }
  .conn-grid{ grid-template-columns:1fr 1fr; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; justify-content:space-between; }
  .field-row{ grid-template-columns:1fr; }
  .lead-form{ padding:24px 20px; }
}
