*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0d0d0d;
  --ink:     #14141f;
  --gold:    #c9a84c;
  --gold-lt: #e8d5a3;
  --cream:   #fcfbf8;
  --white:   #ffffff;
  --muted:   #6b6b7b;
  --card-bg: #ffffff;
  --border:  #e2ddd5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.logo span {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .btn-nav {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.15s;
}

.nav-links .btn-nav:hover {
  background: var(--gold-lt);
  color: var(--black);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--ink) 60%, #16213e 100%);
  padding: 110px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 15px 38px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 38px;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── STATS STRIP ── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ── SECTION HEADERS & COMMON ── */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-header p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SEO CONTENT SECTION ── */
.seo-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 50px 60px;
  margin-bottom: 80px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.seo-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.seo-article h2:first-of-type { margin-top: 0; }

.seo-article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 28px 0 12px;
}

.seo-article p {
  font-size: 0.98rem;
  color: #3d3d4e;
  margin-bottom: 20px;
  line-height: 1.85;
}

.seo-article a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted var(--gold);
  transition: color 0.2s, border-color 0.2s;
}

.seo-article a:hover {
  color: var(--ink);
  border-bottom-style: solid;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.seo-box {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 4px;
}

.seo-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--muted);
}

/* ── PROFILE GRID ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.profile-card {
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.card-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.card-body { padding: 20px; }

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.card-origin {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.card-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-stats {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
}

.card-stat strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
}

.card-cta {
  display: block;
  margin-top: 16px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 10px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.card-cta:hover { background: var(--gold); color: var(--black); }

.grad-1 { background: linear-gradient(145deg, #2b2b36, #14141f); }
.grad-2 { background: linear-gradient(145deg, #3d3428, #1f1a14); }
.grad-3 { background: linear-gradient(145deg, #362b2b, #1f1414); }
.grad-4 { background: linear-gradient(145deg, #28363d, #141f24); }

.grad-5 { background: linear-gradient(145deg, #2b2b36, #14141f); }
.grad-6 { background: linear-gradient(145deg, #3d3428, #1f1a14); }
.grad-7 { background: linear-gradient(145deg, #362b2b, #1f1414); }
.grad-8 { background: linear-gradient(145deg, #28363d, #141f24); }

/* ── SERVICES SECTION ── */
.services-section {
  background: var(--ink);
  padding: 90px 24px;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 36px 30px;
  transition: background 0.2s, border-color 0.2s;
}

.service-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.3);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--black);
  padding: 90px 24px;
  color: var(--white);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 15px 18px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form select option { background: var(--black); }
.contact-form textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 24px 30px;
  color: var(--white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 20px 60px; }
  .seo-article { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .profile-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ── FLOATING CONTACT BUTTONS (RIGHT SIDE) ── */
.floating-contact-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
  }
  
  .float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s, background-color 0.25s;
    cursor: pointer;
    border: 1px solid rgba(201, 168, 76, 0.4);
  }
  
  .float-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4);
  }
  
  /* Call Button - Dark Ink with Gold Icon */
  .call-btn {
    background: var(--ink);
    color: var(--gold);
  }
  
  .call-btn:hover {
    background: var(--gold);
    color: var(--black);
  }
  
  /* WhatsApp Button - Golden Luxury Tint */
  .wa-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #a88930 100%);
    color: var(--black);
    border-color: var(--white);
  }
  
  .wa-btn:hover {
    background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
    color: var(--black);
  }
  
  /* Mobile Screens ke liye thoda compact size */
  @media (max-width: 480px) {
    .floating-contact-wrap {
      bottom: 18px;
      right: 18px;
      gap: 12px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
    }
    .float-btn svg {
      width: 22px;
      height: 22px;
    }
  }
  /* ── SEO BENEFITS BOX SVG ICON STYLING ── */
.box-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(201, 168, 76, 0.12); /* Light Golden Tint Background */
    color: var(--gold); /* Royal Gold Color for Icon */
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.25s ease;
  }
  
  .seo-box:hover .box-icon-wrap {
    background: var(--gold);
    color: var(--black); /* Hover par icon black aur circle golden ho jayega */
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
  }