/* ===== DESIGN TOKENS ===== */
:root {
  --color-dark-bar:   #2b1a0e;
  --color-gold:       #b37f19;
  --color-gold-light: #d4a343;
  --color-cream:      #fdf7ea;
  --color-brown:      #0c2b18;
  --color-green-wa:   #028e25;
  --color-green-dark: #027a20;
  --color-text:       #2d2d2d;
  --color-muted:      #556b5c;
  --font-serif:       'Merriweather', Georgia, serif;
  --font-sans:        'Open Sans', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: #fdf7ea;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--color-dark-bar);
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar-left a,
.top-bar-right a {
  color: #f5d080;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color .2s;
}
.top-bar-left a:hover,
.top-bar-right a:hover { color: #fff; }
.top-bar-left .divider {
  color: #888;
  font-size: 16px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-right .service-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f5d080;
  font-size: 13.5px;
  font-weight: 600;
}
.top-bar-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.top-bar-icon.phone-icon { color: #f5d080; }

/* ===== NAVBAR ===== */
.main-nav {
  background: var(--color-cream);
  border-bottom: 2px solid #e8d5b0;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  object-fit: cover;
}
.brand-text h2 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-brown);
  margin: 0;
  line-height: 1.2;
}
.brand-text p {
  font-size: 11px;
  color: var(--color-gold);
  margin: 0;
  font-style: italic;
}
/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links li a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-brown);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.nav-links li a:hover {
  background: var(--color-gold);
  color: #fff;
}
/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border: 1px solid #e8d5b0;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  z-index: 999;
  padding: 6px 0;
}
.dropdown:hover .dropdown-menu-custom { display: block; }
.dropdown-menu-custom a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--color-brown) !important;
  text-decoration: none;
  transition: background .15s;
}
.dropdown-menu-custom a:hover { background: var(--color-cream); }
.dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  background: var(--color-cream);
  border-top: 1px solid #e8d5b0;
  padding: 10px 0;
}
.mobile-nav a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brown);
  text-decoration: none;
  border-bottom: 1px solid #f0e6d0;
}
.mobile-nav a:hover { background: #f5ede0; }
.mobile-nav.open { display: block; }

/* ===== HERO SECTION ===== */
.hero-section {
  background: #f5e9d0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: flex;
  align-items: stretch;
  min-height: 560px;
  background: 
    radial-gradient(circle at 60% 40%, #fdf7ea 0%, #f5e8cf 60%, #eeddb8 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}
.hero-image-col {
  flex: 0 0 52%;
  position: relative;
  overflow: hidden;
}
.hero-image-col::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25%;
  background: linear-gradient(to right, rgba(245, 232, 207, 0), #eeddb8);
  z-index: 2;
  pointer-events: none;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% bottom;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-text-col {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 40px 40px 20px;
  background: transparent;
  position: relative;
  z-index: 2;
}
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-ornament .line {
  height: 1px;
  width: 50px;
  background: var(--color-gold);
}
.hero-ornament .lotus { color: var(--color-gold); font-size: 14px; }
.hero-ornament-small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 16px;
}
.hero-ornament-small .line-small {
  height: 1px;
  width: 40px;
  background: var(--color-gold);
}
.hero-ornament-small .diamond {
  color: var(--color-gold);
  font-size: 10px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-brown);
  line-height: 1.3;
  margin-bottom: 6px;
}
.hero-title span { color: var(--color-gold); }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 24px;
  line-height: 1.4;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.trust-badge .icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brown);
  font-size: 16px;
}
.trust-badge .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-brown);
  line-height: 1.2;
}
.trust-badge-divider {
  width: 1px;
  height: 50px;
  background: #d4b87a;
  align-self: center;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-green-wa);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s, background .2s;
  width: fit-content;
  margin: 0 auto 10px;
}
.whatsapp-btn:hover {
  background: var(--color-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.whatsapp-btn i { font-size: 20px; }
.hero-helper-text {
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
}

/* ===== SERVICE CARDS STRIP ===== */
.services-strip {
  background: var(--color-cream);
  border-top: 1px solid #e8d5b0;
  border-bottom: 3px solid var(--color-gold);
  padding: 28px 0;
}
.services-strip .container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.service-card {
  background: #fff;
  border: 1px solid #e8d5b0;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
  width: 155px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(200,150,12,.2);
  border-color: var(--color-gold);
  color: var(--color-text);
}
.service-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.service-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--color-brown);
  margin: 0;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 10px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

/* ===== NADI SERVICES SECTION ===== */
.nadi-services {
  padding: 60px 0;
  background: #fff;
}
.nadi-card {
  background: var(--color-cream);
  border: 1px solid #e8d5b0;
  border-top: 4px solid var(--color-gold);
  border-radius: 12px;
  padding: 28px 20px 24px;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.nadi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(200,150,12,.15);
}
.nadi-card .icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nadi-card .icon-wrap img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}
.nadi-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 12px;
}
.nadi-card p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
  text-align: center;
}
.nadi-card p a { color: var(--color-gold); text-decoration: none; }
.nadi-card p a:hover { text-decoration: underline; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  padding: 60px 0;
  background: var(--color-cream);
}
.about-strip .img-left {
  border-radius: 12px;
  border: 3px solid var(--color-gold);
  box-shadow: 0 6px 20px rgba(200,150,12,.2);
  width: 100%;
  max-width: 320px;
  object-fit: cover;
}
.info-paragraph { padding: 0 12px; }
.info-paragraph .subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 14px;
}
.info-paragraph p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #444;
}
.info-paragraph p a { color: var(--color-gold); text-decoration: none; }
.info-paragraph p a:hover { text-decoration: underline; }

/* ===== TRUST SCORE BAR ===== */
.trust-bar {
  background: linear-gradient(135deg, var(--color-brown), #3d2008);
  padding: 30px 0;
  color: #fff;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  text-align: center;
}
.trust-item h5 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-gold-light);
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 13px;
  color: #ddd;
  margin: 0;
}

/* ===== TEAM MEMBER ===== */
.team-section {
  padding: 40px 0 20px;
  background: #fff;
  text-align: center;
}
.team-card {
  display: inline-block;
  background: var(--color-cream);
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 20px 40px;
}
.team-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-brown);
  margin-bottom: 4px;
}
.team-card p {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #fdf6ec, #f0e4c8);
  padding: 60px 0;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border-left: 5px solid var(--color-gold);
  position: relative;
  margin: 0 auto;
  max-width: 650px;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 72px;
  color: var(--color-gold);
  opacity: .3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-brown);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
}
.stars { color: var(--color-gold); font-size: 14px; margin-bottom: 8px; }
/* Carousel controls */
.carousel-ctrl {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.carousel-ctrl button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: #fff;
  color: var(--color-gold);
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
}
.carousel-ctrl button:hover {
  background: var(--color-gold);
  color: #fff;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 60px 0;
  background: #fff;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: #f7eed7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  border-top: 1px solid #e8d5b0;
  padding: 60px 0;
}
.faq-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 36px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--color-gold);
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.faq-item .subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
.faq-item p a { color: var(--color-gold); text-decoration: none; }
.faq-item p a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  background: #1a1008;
  color: #ccc;
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}
footer h5 {
  color: var(--color-gold-light);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
footer p { font-size: 13px; line-height: 1.7; margin-bottom: 6px; color: #bbb; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 7px; }
footer ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
footer ul li a:hover { color: var(--color-gold-light); }
.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 20px 0;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #555;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}
.social-links a:hover { border-color: var(--color-gold); color: var(--color-gold); }
.footer-copy {
  background: #000;
  text-align: center;
  padding: 14px;
  font-size: 12.5px;
  color: #888;
}
.footer-copy a { color: var(--color-gold-light); text-decoration: none; }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.floating-wa a {
  width: 58px;
  height: 58px;
  background: var(--color-green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: transform .2s;
}
.floating-wa a:hover { transform: scale(1.1); }
.floating-wa a i { color: #fff; font-size: 26px; }
.floating-wa .wa-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-green-dark);
  background: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.75); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .top-bar .container { justify-content: center; }
}
@media (max-width: 900px) {
  .hero-inner { min-height: 480px; }
  .hero-image-col { flex: 0 0 50%; }
  .hero-text-col { flex: 0 0 50%; padding: 30px 24px 30px 16px; }
  .hero-title { font-size: 22px; }
  .hero-subtitle { font-size: 16px; }
  .trust-badges { gap: 10px; }
}
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: row;
    min-height: unset;
  }
  .hero-image-col {
    flex: 0 0 42%;
    width: auto;
    max-height: none;
    overflow: hidden;
  }
  .hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% bottom;
  }
  .hero-text-col {
    flex: 0 0 58%;
    width: auto;
    padding: 16px 12px 16px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .hero-subtitle {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .hero-ornament {
    margin-bottom: 6px;
    gap: 6px;
  }
  .hero-ornament .line {
    width: 20px;
  }
  .hero-ornament .lotus {
    font-size: 10px;
  }
  .hero-ornament-small {
    margin-top: 6px;
    margin-bottom: 10px;
    gap: 4px;
  }
  .hero-ornament-small .line-small {
    width: 25px;
  }
  .hero-ornament-small .diamond {
    font-size: 8px;
  }
  .hero-divider {
    width: 40px;
    height: 2px;
    margin: 0 auto 10px;
  }
  .trust-badges {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
  }
  .trust-badge {
    gap: 2px;
  }
  .trust-badge .icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
    border-width: 1px;
  }
  .trust-badge .label {
    font-size: 7.5px;
    line-height: 1.1;
  }
  .trust-badge-divider {
    height: 22px;
    width: 1px;
    background: #d4b87a;
    display: block;
    align-self: center;
  }
  .whatsapp-btn {
    font-size: 11px;
    padding: 7px 14px;
    gap: 6px;
    border-radius: 25px;
    margin: 0 auto 4px;
    box-shadow: 0 2px 8px rgba(37,211,102,.25);
  }
  .whatsapp-btn i {
    font-size: 13px;
  }
  .hero-helper-text {
    font-size: 9px;
  }

  /* Top Bar */
  .top-bar .container {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }
  .top-bar-left {
    gap: 6px;
  }
  .top-bar-left a,
  .top-bar-right .service-badge {
    font-size: 10px;
  }
  .top-bar-left .divider {
    font-size: 12px;
  }

  /* Service Cards Strip */
  .services-strip {
    padding: 16px 0;
  }
  .services-strip .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
  }
  .service-card {
    width: 100%;
    padding: 12px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
  }
  .service-card img {
    width: 48px;
    height: 48px;
  }
  .service-card h3 {
    font-size: 11px;
  }

  /* Footer Grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .hero-image-col {
    flex: 0 0 45%;
  }
  .hero-text-col {
    flex: 0 0 55%;
    padding: 12px 8px 12px 2px;
  }
  .hero-title {
    font-size: 13.5px;
  }
  .hero-subtitle {
    font-size: 10px;
  }
  .trust-badges {
    gap: 4px;
  }
  .trust-badge .icon {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }
  .trust-badge .label {
    font-size: 6.5px;
  }
  .trust-badge-divider {
    height: 16px;
  }
  .whatsapp-btn {
    font-size: 10px;
    padding: 6px 12px;
  }
  .whatsapp-btn i {
    font-size: 11px;
  }
  .hero-helper-text {
    font-size: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ARTICLES LIBRARY STYLES ===== */
#articles-library a.hover-gold {
  color: var(--color-text);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
#articles-library a.hover-gold:hover {
  color: var(--color-gold-light) !important;
  padding-left: 4px;
}
#articles-library .card-library {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(179, 127, 25, 0.15) !important;
}
#articles-library .card-library:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(12, 43, 24, 0.08) !important;
}
