/* ===== AL HUDHA — Premium Textile Store ===== */
/* Color palette: Deep Emerald + Gold + Warm Cream */

* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Primary — Deep Emerald (trust, premium textile) */
  --primary: #1B5E3F;
  --primary-dark: #0F3D27;
  --primary-light: #2E7D32;

  /* Gold accent (luxury, festive) */
  --gold: #D4AF37;
  --gold-bright: #F9A825;
  --gold-light: #F4E4BC;

  /* Warm neutrals */
  --bg: #FDF8F0;
  --bg-warm: #F5EBE0;
  --surface: #FFFFFF;
  --cream: #FAF4E8;

  /* Text */
  --text: #1A2620;
  --text-soft: #3D4A42;
  --text-muted: #7A8278;
  --border: #E8DFD0;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(27, 94, 63, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 94, 63, 0.12);
  --shadow-lg: 0 20px 50px rgba(27, 94, 63, 0.18);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  --radius: 16px;
  --radius-lg: 22px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
}
.italic { font-style: italic; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.announce-track {
  display: flex;
  gap: 50px;
  animation: scrollLeft 35s linear infinite;
  white-space: nowrap;
}
.announce-track span { flex-shrink: 0; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ NAVBAR ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text);
}
.brand-mark {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  z-index: -1;
}
.mark-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
}
.mark-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  align-self: center;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 1.45rem;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500; font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  list-style: none;
  display: flex; gap: 32px;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600; font-size: 0.92rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
}

@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 500px) {
  .nav-cta span { display: none; }
  .brand small { display: none; }
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #FDF8F0 0%, #F5EBE0 50%, #F0E4D3 100%);
  padding: 70px 0 110px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.15), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(27, 94, 63, 0.1), transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(27, 94, 63, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 100px;
  background: white;
  border: 1px solid var(--gold);
  color: var(--primary-dark);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05; margin-bottom: 22px;
  color: var(--text);
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lede {
  font-size: 1.15rem; color: var(--text-soft);
  margin-bottom: 36px; max-width: 540px;
  line-height: 1.7;
}
.lede strong { color: var(--primary-dark); font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 10px 28px rgba(27, 94, 63, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(27, 94, 63, 0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(212, 175, 55, 0.45); }
.btn-ghost {
  background: white;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: white; }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: white;
}
.btn-ghost-light:hover { background: white; color: var(--primary-dark); border-color: white; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn.full { width: 100%; justify-content: center; }

.trust-row {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: fit-content;
}
.trust-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.trust-item span, .trust-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 0.95;
}
.hero-card-stack {
  position: absolute; inset: 0;
}
.hero-card {
  position: absolute;
  width: 75%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.card-back {
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: rotate(8deg);
  opacity: 0.7;
}
.card-mid {
  top: 8%; right: 8%;
  background: linear-gradient(135deg, #F5EBE0, var(--gold-light));
  transform: rotate(-4deg);
}
.card-front {
  top: 14%; left: 8%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex; flex-direction: column;
  padding: 22px;
  overflow: hidden;
}
.card-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 100px;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 1px;
  align-self: flex-start;
  margin-bottom: 16px;
}
.card-content {
  margin-top: auto;
}
.card-fabric {
  width: 100%; height: 100px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(45deg, rgba(212,175,55,0.3) 0, rgba(212,175,55,0.3) 6px, transparent 6px, transparent 14px),
    linear-gradient(135deg, var(--gold), var(--gold-bright));
  margin-bottom: 16px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}
.card-front p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.floating-badge {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 5;
  animation: floatUp 4s ease-in-out infinite;
}
.floating-badge.top {
  top: 20%; right: -10px;
  animation-delay: 0.5s;
}
.floating-badge.bottom {
  bottom: 10%; left: -10px;
  animation-delay: 1s;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-emoji { font-size: 1.5rem; }
.floating-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.2;
}
.floating-badge small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 30px auto 0; }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: white;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
}
.trust-card .ti {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: grid; place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trust-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}
.trust-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
@media (max-width: 800px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head.left { text-align: left; margin: 0 0 36px; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
  line-height: 1.1;
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ============ CATEGORIES ============ */
.categories { padding: 100px 0; background: white; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s;
  border: 1px solid transparent;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.cat-image {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
.cat-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15));
}
.cat-1 { background: linear-gradient(135deg, #FCE4EC 0%, #EC407A 100%); }
.cat-2 { background: linear-gradient(135deg, #E3F2FD 0%, #1976D2 100%); }
.cat-3 { background: linear-gradient(135deg, #FFF3E0 0%, #FB8C00 100%); }
.cat-4 { background: linear-gradient(135deg, #F3E5F5 0%, #8E24AA 100%); }
.cat-5 { background: linear-gradient(135deg, #E8F5E9 0%, #2E7D32 100%); }
.cat-6 { background: linear-gradient(135deg, #FFF8E1 0%, #F9A825 100%); }
.cat-info {
  padding: 22px 24px;
}
.cat-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--text);
}
.cat-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.cat-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
}

/* ============ OFFER BANNER ============ */
.offer-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.2), transparent 50%),
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15), transparent 40%);
}
.offer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  color: white;
}
.offer-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.offer-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 14px;
  font-weight: 800;
}
.offer-highlight { color: var(--gold); }
.offer-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 26px;
  max-width: 500px;
}
.offer-pattern {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  margin-left: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}
.offer-pattern::before {
  content: ""; position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.offer-pattern span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.offer-pattern small {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary-dark);
  margin-top: -8px;
}
@media (max-width: 800px) {
  .offer-inner { grid-template-columns: 1fr; }
  .offer-pattern { margin: 20px auto 0; max-width: 200px; }
}

/* ============ PRODUCTS ============ */
.products { padding: 100px 0; background: var(--bg); }
.product-section { margin-bottom: 80px; }
.product-section:last-child { margin-bottom: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}
.product {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex; flex-direction: column;
  position: relative;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 2;
  text-transform: uppercase;
}
.product-badge.sale { background: linear-gradient(135deg, #FF5252, #D32F2F); color: white; }
.product-badge.new { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--primary-dark); }
.product-badge.featured { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--gold); }
.product-badge.bestseller { background: white; color: var(--primary-dark); border: 1.5px solid var(--gold); }

.product-img {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
}
.product-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 40%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.08));
}
.product-body {
  padding: 18px 20px 22px;
  flex: 1; display: flex; flex-direction: column;
}
.product h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--text);
}
.meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.price-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px; margin-top: auto;
}
.price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.discount {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-bright);
  padding: 3px 8px;
  background: rgba(249, 168, 37, 0.12);
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  text-decoration: none;
  font-weight: 700; font-size: 0.85rem;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-buy::before {
  content: "💬";
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--bg-warm) 100%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testimonial {
  background: white;
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid var(--border);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: 0;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.testimonial.featured p,
.testimonial.featured small {
  color: rgba(255,255,255,0.9);
}
.testimonial.featured strong { color: white; }
.testimonial.featured .stars { color: var(--gold); }
.stars {
  color: var(--gold-bright);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 22px;
}
.reviewer {
  display: flex; align-items: center; gap: 12px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
}
.reviewer strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}
.reviewer small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text-col h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 22px;
}
.about-text {
  font-size: 1.02rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-text:last-of-type { margin-bottom: 30px; }
.about-text strong { color: var(--primary); font-weight: 700; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat-box {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-md);
}
.stat-box strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.stat-box span {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  opacity: 0.9;
  font-weight: 500;
}
.gradient-1 { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.gradient-2 { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--primary-dark); }
.gradient-3 { background: linear-gradient(135deg, #C2185B, #7B1FA2); }
.gradient-4 { background: linear-gradient(135deg, #8B4513, #5D2E0C); }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ CONTACT ============ */
.contact { padding: 100px 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  position: relative;
}
.info-card:hover {
  transform: translateX(4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.info-card.primary {
  background: linear-gradient(135deg, #F0FFF0 0%, #E8F5E9 100%);
  border-color: #25D366;
}
.info-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.info-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.info-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 2px 0;
}
.info-card .strong-line {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}
.info-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.info-card .arrow {
  margin-left: auto;
  align-self: center;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.25s;
}
.info-card:hover .arrow {
  transform: translateX(4px);
  color: var(--primary);
}

.contact-map-col {
  position: sticky;
  top: 100px;
}
.map-frame {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-header {
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex; align-items: center; gap: 10px;
}
.map-pin { font-size: 1.3rem; }
.map-header strong {
  font-size: 0.95rem;
}
.map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}
.map-frame .btn {
  margin: 16px;
  width: calc(100% - 32px);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-col { position: static; }
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 70px 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15), transparent 50%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}
.final-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 30px;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: white;
  margin-bottom: 8px;
  font-weight: 800;
}
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(135deg, #0F2A1F 0%, #0A1F17 100%);
  color: white;
  padding: 80px 0 30px;
}
.footer .brand { color: white; }
.footer .brand-name { color: white; }
.footer .brand small { color: rgba(255,255,255,0.6); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-tagline {
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer li { margin-bottom: 10px; }
.footer a, .footer p {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer a:hover { color: var(--gold); }
.footer p { margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1DA851);
  display: grid; place-items: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all 0.25s;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.65);
}
.float-wa::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-wa:hover .wa-tooltip { opacity: 1; }
.wa-tooltip::after {
  content: ""; position: absolute;
  right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--primary-dark);
}
