/* ════════════════════════════════════════════
   Multan Karobar Aasan — style.css
   ════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --gold:       #C9A84C;
  --gold-light: #F0D080;
  --dark:       #0D0A06;
  --dark2:      #1A1409;
  --dark3:      #251D0E;
  --cream:      #F5EDD8;
  --text:       #D4C4A0;
  --green:      #25D366;
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Language layers ── */
body { background: var(--dark); color: var(--cream); overflow-x: hidden; }

.ur { display: none; }
.en { display: block; }

html[lang="ur"] .ur { display: revert; }
html[lang="ur"] .en { display: none !important; }
html[lang="en"] .ur { display: none !important; }
html[lang="en"] .en { display: revert; }

span.ur, span.en, a.ur, a.en, button.ur, button.en { display: inline; }
html[lang="ur"] span.ur, html[lang="ur"] a.ur { display: inline; }
html[lang="en"] span.en, html[lang="en"] a.en { display: inline; }

/* ── RTL / LTR ── */
html[lang="ur"] body { direction: rtl; font-family: 'Noto Nastaliq Urdu', serif; }
html[lang="en"] body { direction: ltr; font-family: 'DM Sans', sans-serif; }

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] .logo-text,
html[lang="en"] .price-name,
html[lang="en"] .service-name,
html[lang="en"] .step-title,
html[lang="en"] .why-box-title,
html[lang="en"] .form-title { font-family: 'Cormorant Garamond', serif; }

/* ── Backgrounds ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(160,66,10,0.07) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(201,168,76,0.015) 60px, rgba(201,168,76,0.015) 61px),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(201,168,76,0.015) 60px, rgba(201,168,76,0.015) 61px);
  pointer-events: none; z-index: 0;
}

section, nav, footer, div.stats-bar { position: relative; z-index: 1; }

/* ══════════════════════════════════
   NAV
   ══════════════════════════════════ */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,10,6,0.88);
}

.logo { color: var(--gold); }
.logo-text { font-size: 1.5rem; font-weight: 700; display: block; }
html[lang="ur"] .logo-text { font-family: 'Noto Nastaliq Urdu', serif; }
html[lang="en"] .logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; }
.logo-sub {
  font-size: 0.68rem; color: var(--text);
  letter-spacing: 0.12em; font-family: 'DM Sans', sans-serif;
  display: block; margin-top: 2px;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; font-size: 0.9rem; }
.nav-links a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px; overflow: hidden;
}
.lang-btn {
  padding: 0.4rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  cursor: pointer; border: none;
  background: transparent; color: var(--text);
  transition: all 0.25s; letter-spacing: 0.05em;
}
.lang-btn.active { background: var(--gold); color: var(--dark); }
.lang-btn:hover:not(.active) { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--dark);
  border: none; padding: 0.65rem 1.6rem;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
}
html[lang="ur"] .nav-cta { font-family: 'Noto Nastaliq Urdu', serif; }
html[lang="en"] .nav-cta { font-family: 'DM Sans', sans-serif; letter-spacing: 0.03em; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  min-height: 91vh; display: flex; align-items: center;
  padding: 4rem 4rem; position: relative; overflow: hidden;
}
.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1.2rem; font-size: 0.83rem; color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeDown 0.8s ease both;
}
.hero-badge::before { content: '◆'; font-size: 0.45rem; }

h1.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1.35; color: var(--cream); margin-bottom: 1.4rem;
  animation: fadeUp 0.9s ease 0.1s both;
}
html[lang="en"] h1.hero-title { line-height: 1.15; }
h1.hero-title em { font-style: normal; color: var(--gold); display: block; }

.hero-sub {
  font-size: 1rem; color: var(--text); line-height: 1.95;
  margin-bottom: 2.5rem; max-width: 540px;
  animation: fadeUp 0.9s ease 0.2s both;
}
html[lang="en"] .hero-sub { line-height: 1.7; font-size: 1.05rem; }

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.3s both;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #A07828);
  color: var(--dark); border: none; padding: 1rem 2.5rem;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
html[lang="ur"] .btn-primary { font-family: 'Noto Nastaliq Urdu', serif; }
html[lang="en"] .btn-primary { font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }

.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(201,168,76,0.4); padding: 1rem 2.5rem;
  font-size: 0.95rem; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s;
}
html[lang="ur"] .btn-outline { font-family: 'Noto Nastaliq Urdu', serif; }
html[lang="en"] .btn-outline { font-family: 'DM Sans', sans-serif; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* Hero visual / rings */
.hero-visual {
  position: absolute; left: 4rem; top: 50%;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  animation: fadeUp 1s ease 0.4s both;
}
html[lang="en"] .hero-visual { left: auto; right: 4rem; }

.hero-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: spin 20s linear infinite;
}
.hero-ring:nth-child(2) { inset: 30px; border-color: rgba(201,168,76,0.1); animation-duration: 15s; animation-direction: reverse; }
.hero-ring:nth-child(3) { inset: 60px; border-color: rgba(201,168,76,0.2); animation-duration: 25s; }

.hero-center {
  position: absolute; inset: 90px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), rgba(201,168,76,0.02));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 3.8rem; filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}

.stat-chips {
  position: absolute; display: flex; flex-direction: column;
  gap: 0.9rem; left: -1.5rem; top: 50%; transform: translateY(-50%);
}
html[lang="en"] .stat-chips { left: auto; right: -1.5rem; }

.chip {
  background: rgba(25,20,10,0.92);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.55rem 1.1rem; font-size: 0.82rem;
  color: var(--gold); white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  animation: pulse 3s ease infinite;
}
.chip:nth-child(2) { animation-delay: 1s; }
.chip:nth-child(3) { animation-delay: 2s; }

/* ══════════════════════════════════
   STATS BAR
   ══════════════════════════════════ */
.stats-bar {
  background: var(--dark3);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2rem 4rem;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item { text-align: center; padding: 1rem; border-left: 1px solid rgba(201,168,76,0.1); }
html[lang="en"] .stat-item { border-left: none; border-right: 1px solid rgba(201,168,76,0.1); }
.stat-item:last-child { border: none; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900;
  color: var(--gold); line-height: 1; direction: ltr;
}
.stat-label { font-size: 0.88rem; color: var(--text); margin-top: 0.5rem; }

/* ══════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════ */
.section-label {
  font-size: 0.75rem; color: var(--gold);
  letter-spacing: 0.2em; font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 0.8rem; line-height: 1.35; }
html[lang="en"] .section-title { line-height: 1.15; }
.section-desc { color: var(--text); font-size: 0.93rem; line-height: 1.95; max-width: 500px; margin-bottom: 3rem; }
html[lang="en"] .section-desc { line-height: 1.65; }

/* ══════════════════════════════════
   SERVICES
   ══════════════════════════════════ */
.services { padding: 6rem 4rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5px; background: rgba(201,168,76,0.1);
}
.service-card {
  background: var(--dark2); padding: 2.5rem;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0;
  right: 0; width: 0; height: 3px;
  background: var(--gold); transition: width 0.4s;
}
html[lang="en"] .service-card::before { right: auto; left: 0; }
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--dark3); }
.service-icon { font-size: 2.4rem; margin-bottom: 1.1rem; display: block; }
.service-name { font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.7rem; }
.service-desc { font-size: 0.86rem; color: var(--text); line-height: 1.9; }
html[lang="en"] .service-desc { line-height: 1.6; }
.service-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.72rem; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.2rem 0.8rem;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.08em;
}

/* ══════════════════════════════════
   PROCESS
   ══════════════════════════════════ */
.process {
  padding: 6rem 4rem;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 3.5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 2rem; right: 12%; left: 12%;
  height: 1px; background: linear-gradient(to left, transparent, var(--gold), transparent);
}
.step { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 3.8rem; height: 3.8rem;
  background: var(--dark); border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: var(--gold);
  position: relative; z-index: 1; transition: all 0.3s;
}
.step:hover .step-num { background: var(--gold); color: var(--dark); transform: scale(1.1); }
.step-title { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.83rem; color: var(--text); line-height: 1.9; }
html[lang="en"] .step-desc { line-height: 1.55; }

/* ══════════════════════════════════
   WHY US
   ══════════════════════════════════ */
.why { padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-visual { position: relative; height: 400px; }
.why-box {
  position: absolute; background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2); padding: 1.4rem; transition: all 0.3s;
}
.why-box:hover { border-color: var(--gold); transform: translate(-4px,-4px); box-shadow: 4px 4px 0 var(--gold); }
html[lang="en"] .why-box:hover { transform: translate(4px,-4px); box-shadow: -4px 4px 0 var(--gold); }
.why-box:nth-child(1) { top:0; right:0; width:58%; }
.why-box:nth-child(2) { top:30%; left:0; width:55%; }
.why-box:nth-child(3) { bottom:0; right:10%; width:50%; }
html[lang="en"] .why-box:nth-child(1) { right:auto; left:0; }
html[lang="en"] .why-box:nth-child(2) { left:auto; right:0; }
html[lang="en"] .why-box:nth-child(3) { right:auto; left:10%; }
.why-box-icon { font-size: 1.7rem; margin-bottom: 0.4rem; }
.why-box-title { font-size: 0.93rem; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem; }
.why-box-text { font-size: 0.8rem; color: var(--text); line-height: 1.75; }
.why-points { list-style: none; margin-top: 2rem; }
.why-point { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.why-point-icon {
  width: 2.4rem; height: 2.4rem;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.why-point-text strong { display: block; color: var(--cream); font-size: 0.93rem; margin-bottom: 0.2rem; }
.why-point-text span { font-size: 0.81rem; color: var(--text); }
html[lang="en"] .why-point-text span { line-height: 1.5; }

/* ══════════════════════════════════
   PRICING
   ══════════════════════════════════ */
.pricing {
  padding: 6rem 4rem;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3.5rem; align-items: start;
}
.price-card {
  background: var(--dark); border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem; position: relative; transition: all 0.4s;
}
.price-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.price-card.featured { border-color: var(--gold); background: linear-gradient(160deg,var(--dark3),var(--dark)); transform: scale(1.04); }
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.featured-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: 0.73rem; font-weight: 700; padding: 0.3rem 1.2rem;
  white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.price-tier { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.2em; font-family: 'DM Sans', sans-serif; margin-bottom: 0.5rem; }
.price-name { font-size: 1.35rem; font-weight: 700; color: var(--cream); margin-bottom: 1.1rem; }
.price-amount { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; direction: ltr; justify-content: flex-end; }
html[lang="en"] .price-amount { justify-content: flex-start; }
.price-currency { font-size: 0.95rem; color: var(--gold); font-family: 'DM Sans', sans-serif; }
.price-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.price-period { font-size: 0.78rem; color: var(--text); margin-bottom: 1.5rem; direction: ltr; }
html[lang="ur"] .price-period { text-align: left; }
.price-divider { height: 1px; background: rgba(201,168,76,0.15); margin: 1.2rem 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.85rem; color: var(--text); line-height: 1.6; }
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-features li.off { opacity: 0.32; }
.price-features li.off::before { content: '✗'; color: var(--text); }
.price-btn {
  width: 100%; padding: 0.88rem; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
html[lang="ur"] .price-btn { font-family: 'Noto Nastaliq Urdu', serif; }
html[lang="en"] .price-btn { font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em; }
.price-btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); }
.price-btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.price-btn-fill { background: linear-gradient(135deg,var(--gold),#A07828); color: var(--dark); border: none; box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
.price-btn-fill:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.45); transform: translateY(-2px); }
.price-note { text-align: center; margin-top: 2.5rem; font-size: 0.84rem; color: var(--text); }
.price-note span { color: var(--gold); }

/* ══════════════════════════════════
   CONTACT
   ══════════════════════════════════ */
.contact { padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info-side p { font-size: 0.9rem; color: var(--text); line-height: 1.95; margin-bottom: 2.5rem; }
html[lang="en"] .contact-info-side p { line-height: 1.65; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12); transition: all 0.3s; cursor: pointer;
}
.contact-method:hover { border-color: var(--gold); background: var(--dark3); }
.contact-method-icon {
  width: 2.8rem; height: 2.8rem; background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-method-info strong { display: block; font-size: 0.88rem; color: var(--cream); margin-bottom: 0.2rem; }
.contact-method-info span { font-size: 0.8rem; color: var(--text); direction: ltr; display: block; }

/* Form */
.form-card { background: var(--dark2); border: 1px solid rgba(201,168,76,0.18); padding: 3rem; }
.form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--cream); }
.form-subtitle { font-size: 0.83rem; color: var(--text); margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--gold); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream); padding: 0.82rem 1rem;
  font-size: 0.86rem; outline: none; transition: border-color 0.3s;
}
html[lang="ur"] .form-group input,
html[lang="ur"] .form-group select,
html[lang="ur"] .form-group textarea { font-family: 'Noto Nastaliq Urdu', serif; direction: rtl; }
html[lang="en"] .form-group input,
html[lang="en"] .form-group select,
html[lang="en"] .form-group textarea { font-family: 'DM Sans', sans-serif; direction: ltr; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-group select option { background: var(--dark2); }
.form-submit {
  width: 100%; padding: 1.05rem;
  background: linear-gradient(135deg,var(--gold),#A07828);
  color: var(--dark); border: none;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(201,168,76,0.3); margin-top: 0.5rem;
}
html[lang="ur"] .form-submit { font-family: 'Noto Nastaliq Urdu', serif; }
html[lang="en"] .form-submit { font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.3rem; color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.88rem; color: var(--text); line-height: 1.9; }

/* ══════════════════════════════════
   CTA SECTION
   ══════════════════════════════════ */
.cta-section {
  margin: 0 4rem 6rem;
  background: linear-gradient(135deg,var(--dark3),rgba(201,168,76,0.07));
  border: 1px solid rgba(201,168,76,0.25);
  padding: 5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '◆'; position: absolute; font-size: 20rem;
  color: rgba(201,168,76,0.02); top: -4rem; left: 50%;
  transform: translateX(-50%); pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; line-height: 1.4; }
.cta-section p { color: var(--text); font-size: 0.95rem; line-height: 1.9; max-width: 480px; margin: 0 auto 2.5rem; }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
footer {
  background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand p { font-size: 0.83rem; color: var(--text); line-height: 1.9; margin-top: 1rem; }
.footer-col h4 { font-size: 0.88rem; color: var(--gold); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 0.83rem; color: var(--text); padding: 0.3rem 0; cursor: pointer; transition: color 0.3s; }
.footer-col ul li:hover { color: var(--cream); }
.footer-bottom {
  grid-column: 1/-1; border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text);
}
.contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.83rem; color: var(--text); margin-top: 0.4rem; }
html[lang="en"] .contact-item { direction: ltr; }

/* ══════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.65rem;
  background: #25D366; color: white;
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; border: none;
  animation: waFloat 3s ease infinite;
}
html[lang="en"] .wa-float { left: auto; right: 2rem; font-family: 'DM Sans', sans-serif; }
html[lang="ur"] .wa-float { font-family: 'Noto Nastaliq Urdu', serif; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ══════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px) }  to { opacity:1; transform:translateY(0) } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-18px) } to { opacity:1; transform:translateY(0) } }
@keyframes spin     { from { transform:rotate(0deg) }   to { transform:rotate(360deg) } }
@keyframes pulse    { 0%,100% { opacity:0.7 }  50% { opacity:1 } }
@keyframes waFloat  { 0%,100% { box-shadow:0 4px 20px rgba(37,211,102,0.4) } 50% { box-shadow:0 4px 30px rgba(37,211,102,0.7) } }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 3rem 1.5rem; }
  .hero-visual { display: none; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 2rem 1.5rem; }
  .services, .process, .why, .pricing, .contact { padding: 4rem 1.5rem; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .why, .contact { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
  .cta-section { margin: 0 1.5rem 4rem; padding: 3rem 2rem; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
}