:root {
  --bg: #0f0d12;
  --bg-2: #17131b;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-2: rgba(255, 255, 255, 0.08);
  --gold: #d8b46b;
  --gold-dark: #b78d41;
  --rose: #e8c9b8;
  --text: #f5efe9;
  --muted: #cbbfaf;
  --line: rgba(216, 180, 107, 0.18);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.5);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(216, 180, 107, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(232, 201, 184, 0.09),
      transparent 22%
    ),
    linear-gradient(180deg, #0f0d12, #131017 45%, #0c0a0f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

/* Header & Nav */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 9, 13, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1b1510;
  font-weight: 900;
  font-size: 22px;
  box-shadow: var(--shadow);
}
.brand-copy h1 {
  font-size: 22px;
  color: #fff9f2;
  line-height: 1.05;
  margin-bottom: 4px;
}
.brand-copy p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.phone-chip {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn-primary {
  color: #1a140e;
  background: linear-gradient(135deg, var(--gold), #f0d7a0);
}
.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero Section */
.hero {
  padding: 56px 0 30px;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(216, 180, 107, 0.1);
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  color: #fff;
  margin-bottom: 18px;
}
.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 690px;
  margin-bottom: 26px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.mini-stat:hover {
  transform: translateY(-3px);
}
.mini-stat strong {
  display: block;
  font-size: 21px;
  color: #fff;
  margin-bottom: 5px;
}
.mini-stat span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.48)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-box {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(12, 10, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 24px;
}
.glass-box h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.glass-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.quick-list {
  display: grid;
  gap: 12px;
}
.quick-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #f3ece3;
}

/* Common Section */
.section-head {
  max-width: 800px;
  margin-bottom: 28px;
}
.section-head h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 180, 107, 0.4);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #1a140e;
  background: linear-gradient(135deg, var(--gold), #f0d8a4);
  margin-bottom: 18px;
}
.service-card h4 {
  font-size: 23px;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}
.service-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-card li {
  position: relative;
  padding-left: 24px;
  color: #f4ede6;
  font-size: 15px;
}
.service-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Features */
.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-tile {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.feature-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 180, 107, 0.3);
}
.feature-tile strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
}
.feature-tile span {
  color: var(--muted);
  font-size: 15px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
}
.about-panel {
  min-height: 440px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.35)),
    url("https://images.unsplash.com/photo-1507652313519-d4e9174996dd?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.about-copy {
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}
.about-copy h3 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}
.about-copy p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 22px;
}
.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-list div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(216, 180, 107, 0.08);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 700;
}

/* CTA Section */
.cta {
  border-radius: 34px;
  padding: 36px;
  background: linear-gradient(
    135deg,
    rgba(216, 180, 107, 0.16),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta h3 {
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin-bottom: 10px;
}
.cta p {
  max-width: 760px;
  color: var(--muted);
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
}
.contact-card {
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-row:last-child {
  border-bottom: 0;
}
.contact-badge {
  min-width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(216, 180, 107, 0.12);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 20px;
}
.contact-row h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 4px;
}
.contact-row p,
.contact-row a {
  color: var(--muted);
  font-size: 15px;
  word-break: break-word;
}
.contact-row a:hover {
  color: var(--gold);
}

.map-box {
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: #111;
}
.map-box iframe {
  width: 100%;
  min-height: 480px;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
footer {
  padding: 42px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 24px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px;
}
.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
  font-size: 15px;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links,
.footer-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.copy {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: #aa9e8d;
  font-size: 14px;
}

/* Floaters */
.floaters {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 12px;
  z-index: 70;
}
.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.fab:hover {
  transform: scale(1.1);
}
.fab-call {
  background: linear-gradient(135deg, #d8b46b, #a3792f);
  color: #1a140e;
}
.fab-chat {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-wrap,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-card {
    min-height: 520px;
  }
}
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }
  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .phone-chip,
  .btn {
    width: 100%;
    text-align: center;
  }
  .hero-strip,
  .service-grid,
  .feature-band,
  .about-list {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding-top: 40px;
  }
  .cta {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    width: 100%;
  }
  .map-box iframe {
    min-height: 350px;
  }
}

/* Default: Choti screens (mobile/tablet) par hide rakhein */
.nav-actions {
  display: none; 
}

/* LG screens (1024px aur usse upar) par show karein */
@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
