/* ===================================================
   PEER ALTAF SHAH — ISTIKHARA SERVICES
   style.css — All styles for index.html
   =================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1a5c38;
  --green-dark:  #0f3a23;
  --green-light: #236b44;
  --gold:        #c9a84c;
  --gold-light:  #e0be72;
  --cream:       #fdfbf7;
  --card-bg:     #f4f0e8;
  --text:        #0a2616;
  --muted:       #5a7263;
  --border:      #ddd4b3;
  --white:       #ffffff;
  --wa-green:    #25D366;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(26,92,56,.10);
  --shadow-lg:   0 8px 40px rgba(26,92,56,.15);
  --font-head:   'Amiri', serif;
  --font-body:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: hidden; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--green); line-height: 1.25; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { color: var(--muted); }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media(min-width:768px){ .container{ padding: 0 32px; } }

/* ---------- SECTION ---------- */
.section { padding: 80px 0; position: relative; overflow: hidden; }
@media(min-width:768px){ .section{ padding: 120px 0; } }
.bg-white { background: var(--white); }
.bg-card  { background: var(--card-bg); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-sub { font-size: 1.1rem; margin-top: 12px; }

.section-label { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.section-label.centered { justify-content: center; }
.section-label span { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; white-space: nowrap; }
.label-line { height: 1px; width: 48px; background: var(--gold); flex-shrink: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all .25s ease; border: none; text-align: center;
  white-space: nowrap;
}
.btn-primary   { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(26,92,56,.25); }
.btn-primary:hover { background: var(--green-light); box-shadow: 0 6px 24px rgba(26,92,56,.35); transform: translateY(-1px); }
.btn-gold      { background: var(--gold); color: var(--green-dark); box-shadow: 0 4px 16px rgba(201,168,76,.3); }
.btn-gold:hover{ background: var(--gold-light); transform: translateY(-1px); }
.btn-whatsapp  { background: var(--wa-green); color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #20bd5a; box-shadow: 0 6px 24px rgba(37,211,102,.4); transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: rgba(26,92,56,.08); }
.btn-lg        { padding: 16px 40px; font-size: 1.05rem; }
.w-full        { width: 100%; justify-content: center; }

/* ---------- ISLAMIC PATTERN OVERLAY ---------- */
.islamic-pattern-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a5c38' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* =====================================================
   HEADER
   ===================================================== */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 20px 0;
}
#main-header.scrolled {
  background: rgba(253,251,247,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,92,56,.10);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo { cursor: pointer; display: flex; flex-direction: column; flex-shrink: 0; }
.logo-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--green); white-space: nowrap; line-height: 1.1; transition: color .2s; }
.logo:hover .logo-name { color: var(--gold); }
.logo-sub  { font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-top: 2px; }
@media(min-width:1024px){ .logo-name { font-size: 1.5rem; } }

.desktop-nav { display: none; gap: 32px; }
@media(min-width:1024px){ .desktop-nav { display: flex; align-items: center; } }
.desktop-nav a { font-size: .9rem; font-weight: 500; color: var(--text); transition: color .2s; white-space: nowrap; }
.desktop-nav a:hover { color: var(--gold); }

.nav-wa-btn { display: none; padding: 10px 22px; font-size: .88rem; }
@media(min-width:1024px){ .nav-wa-btn { display: inline-flex; } }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: all .3s; display: block; }
@media(min-width:1024px){ .hamburger { display: none; } }
.hamburger.open span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26,92,56,.08);
  padding: 16px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 8px; font-weight: 500; color: var(--text); border-radius: 8px; transition: background .2s; font-size: 1rem; }
.mobile-nav a:hover { background: rgba(26,92,56,.06); }
.mobile-nav-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1584551246679-0daf3d275d0f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.72) 0%, rgba(26,92,56,.75) 60%, rgba(26,92,56,.92) 100%);
}
.hero-glow {
  position: absolute; top: 35%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: rgba(201,168,76,.12); border-radius: 50%; filter: blur(100px);
  pointer-events: none;
}
.hero-curve {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: var(--cream); border-radius: 50% 50% 0 0 / 80px 80px 0 0;
  transform: scaleX(1.1);
}

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: 20px; padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,.5); background: rgba(201,168,76,.1);
  color: var(--gold); border-radius: 100px;
  padding: 6px 16px; font-size: .82rem; font-weight: 600;
  backdrop-filter: blur(6px); margin-bottom: 28px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.6; transform:scale(.8); } }

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--white);
  max-width: 900px; margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.text-gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88); max-width: 720px;
  margin-bottom: 40px; line-height: 1.75;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 60px; }

.hero-stats {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 0; color: rgba(255,255,255,.7); font-size: .85rem;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 20px; }
.stat-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: .78rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
@media(max-width:480px){
  .stat-divider:nth-child(4) { display: none; }
  .stat:last-child { display: none; }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid { display: grid; gap: 48px; align-items: center; }
@media(min-width:768px){ .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 420px; order: 2;
  box-shadow: var(--shadow-lg);
}
@media(min-width:768px){ .about-img-wrap { order: 1; } }
.about-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,92,56,.85) 0%, rgba(26,92,56,.2) 50%, transparent 100%);
}
.about-img-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px; color: var(--white);
  display: flex; align-items: center; gap: 14px;
}
.badge-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(201,168,76,.25); border: 1px solid rgba(201,168,76,.4);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.about-img-badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.about-img-badge p { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: 2px; }
.about-img-border { position: absolute; inset: 16px; border: 1px solid rgba(201,168,76,.3); border-radius: 12px; pointer-events: none; }

.about-text { order: 1; }
@media(min-width:768px){ .about-text { order: 2; } }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 1.05rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
@media(max-width:480px){ .about-features { grid-template-columns: 1fr; } }
.feature-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px;
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(26,92,56,.1); display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.feature-card h4 { font-size: .95rem; color: var(--text); margin-bottom: 4px; }
.feature-card p  { font-size: .82rem; margin: 0; }

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid { display: grid; gap: 20px; }
@media(min-width:600px){ .services-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:992px){ .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  z-index: 1;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(201,168,76,.06);
  transform: translate(30px, -30px);
  transition: background .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.4); }
.service-card:hover::before { background: rgba(201,168,76,.12); }
.service-card:hover h3 { color: var(--gold); }

.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,92,56,.1); display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 20px;
  transition: background .3s;
}
.service-card:hover .svc-icon { background: rgba(26,92,56,.18); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--green); transition: color .3s; }
.service-card p  { font-size: .92rem; line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--gold);
  transition: color .2s; width: 100%;
}
.svc-link:hover { color: var(--green); }

/* =====================================================
   MID CTA
   ===================================================== */
.mid-cta { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.mid-cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1591608516485-7b0a7f7e0f35?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
.mid-cta-overlay { position: absolute; inset: 0; background: rgba(26,92,56,.82); }
.mid-cta-pattern {
  position: absolute; inset: 0; opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mid-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; background: rgba(201,168,76,.15);
  border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.mid-cta-content { position: relative; z-index: 10; }
.mid-cta-content h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin: 16px 0 20px; }
.mid-cta-content p  { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 640px; margin: 0 auto 36px; }
.mid-cta-stats { display: flex; justify-content: center; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.stat.white .stat-val   { color: var(--gold); }
.stat.white .stat-label { color: rgba(255,255,255,.65); }

/* =====================================================
   ARTICLE
   ===================================================== */
.article-section .section-header h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.article-body { max-width: 820px; margin: 0 auto; }
.article-body p  { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.article-body h3 { font-size: 1.4rem; margin: 40px 0 14px; color: var(--green); }
.article-body strong { color: var(--text); }
.article-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); margin: 36px 0; object-fit: cover; max-height: 420px; }
.quran-quote {
  margin-top: 40px; padding: 24px 28px;
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.quran-quote p { font-family: var(--font-head); font-size: 1.1rem; color: var(--muted); font-style: italic; text-align: center; margin: 0; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid { display: grid; gap: 48px; max-width: 1100px; margin: 0 auto; align-items: start; }
@media(min-width:768px){ .why-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.why-text h2 { margin-bottom: 16px; }
.why-text p  { font-size: 1.05rem; }
.why-quote-box { margin-top: 32px; background: rgba(26,92,56,.08); border: 1px solid rgba(26,92,56,.18); border-radius: var(--radius); padding: 24px; }
.why-quote-title  { font-family: var(--font-head); font-size: 1.05rem; color: var(--green); font-weight: 700; margin-bottom: 10px; }
.why-quote-text   { font-size: .95rem; font-style: italic; line-height: 1.7; margin-bottom: 12px; }
.why-quote-author { font-size: .9rem; font-weight: 700; color: var(--green); }

.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
}
.why-item:hover { border-color: rgba(201,168,76,.4); box-shadow: var(--shadow); }
.why-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.why-item p   { font-size: .93rem; font-weight: 500; color: var(--text); margin: 0; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(201,168,76,.4); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-head); font-size: 1.05rem;
  color: var(--text); font-weight: 600; transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-arrow { flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 24px 20px;
  font-size: .95rem; line-height: 1.75; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }

/* =====================================================
   CONTACT + TESTIMONIALS
   ===================================================== */
.contact-grid { display: grid; gap: 40px; }
@media(min-width:992px){ .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; } }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { margin-bottom: 6px; font-size: 1.5rem; }
.form-sub { font-size: .88rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--card-bg);
  transition: border-color .2s, box-shadow .2s; outline: none; resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: .7; }

.testimonials { display: flex; flex-direction: column; gap: 20px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); transition: border-color .3s, box-shadow .3s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,.4); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: .9rem; font-style: italic; line-height: 1.75; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(26,92,56,.1); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--green);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--text); }
.testimonial-author span  { font-size: .78rem; color: var(--muted); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--green); color: var(--white); padding: 70px 0 0; }
.footer-grid {
  display: grid; gap: 40px;
  padding-bottom: 48px;
}
@media(min-width:600px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:992px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
.footer-about p  { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 20px; }
.footer-wa-btn   { padding: 10px 20px; font-size: .85rem; }

.footer-col h4 { font-size: 1rem; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li span { font-size: .85rem; color: rgba(255,255,255,.65); transition: color .2s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-list { gap: 16px !important; }
.footer-contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.4);
  max-width: 1200px; margin: 0 auto;
}
@media(min-width:768px){ .footer-bottom { padding: 24px 32px; } }

/* =====================================================
   FLOATING + STICKY
   ===================================================== */
.float-wa {
  position: fixed; bottom: 90px; right: 20px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa-green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
@media(min-width:768px){ .float-wa { bottom: 30px; right: 28px; } }

.sticky-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; font-size: .85rem; font-weight: 600;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sticky-call-bar svg { color: var(--gold); flex-shrink: 0; }
.sticky-call-bar a { color: var(--white); font-size: .85rem; font-weight: 600; flex: 1; }
.sticky-wa-btn {
  margin-left: auto; background: var(--wa-green); color: var(--white);
  padding: 6px 14px; border-radius: 100px; font-size: .78rem; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
}
@media(min-width:768px){ .sticky-call-bar { display: none; } }

/* =====================================================
   SECTION GLOW AMBIENT
   ===================================================== */
.section-glow {
  position: absolute; width: 500px; height: 500px;
  background: rgba(201,168,76,.05); border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.section-glow.right { top: 0; right: -100px; }

/* =====================================================
   UTILITIES
   ===================================================== */
@media(max-width:767px){
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-stats .stat-divider:nth-child(6),
  .hero-stats .stat:last-child { display: none; }
  .mid-cta-stats { gap: 24px; }
  .contact-form-wrap { padding: 24px 20px; }
  .about-img-wrap { min-height: 320px; }
}

/* =========================================
   IMAGE DISPLAY FIXES
   ========================================= */

/* All images responsive */
img{
  max-width:100%;
  height:auto;
  display:block;
}

/* Article images */
.article-img{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  border-radius:20px;
  display:block;
}

/* About section image */
.about-img-wrap{
  width:100%;
  overflow:hidden;
}

.about-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Prevent image cutting on tablets/mobile */
@media(max-width:768px){

  .article-img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:16px;
  }

  .about-img-wrap{
    min-height:auto;
  }

  .about-img-wrap img{
    position:relative;
    width:100%;
    height:auto;
    object-fit:contain;
  }

}

/* Large images proper spacing */
.article-body img{
  margin:40px auto;
}

/* Remove unwanted crop */
.article-body{
  overflow:hidden;
}

/* Better rendering */
img{
  image-rendering:auto;
}
