581 /var/www/biroumrohindonesia.com/wp-content/themes/astra-child-istanbul/assets/css/homepage.css
/* =============================================
   GALATAMA TOUR HOMEPAGE CSS — Bold Artistic Theme
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --ist-rose: #D97706;
  --ist-rose-light: #FDE68A;
  --ist-gold: #16A34A;
  --ist-gold-light: #BBF7D0;
  --ist-dark: #1a1a2e;
  --ist-dark-mid: #16213e;
  --ist-cream: #fef9ef;
  --ist-white: #ffffff;
}

html { font-size: 100% !important; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Sora', sans-serif;
  color: var(--ist-dark);
  background: var(--ist-cream);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

.ctn { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TEXT UTILITIES ===== */
.text-rose { color: var(--ist-rose); }
.text-gold { color: var(--ist-gold); }
.hero-accent { font-family: 'Caveat', cursive; font-size: 1.4em; color: var(--ist-rose-light); margin-bottom: 10px; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--ist-gold);
}
.navbar .ctn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--ist-cream);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; color: var(--ist-cream) !important; transition: color 0.2s; font-size: 0.95em; }
.nav-links a:hover { color: var(--ist-rose); }
.nav-cta {
  background: linear-gradient(135deg, #D97706, #B45309) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88em;
  transition: all 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; color: var(--ist-cream) !important; }

/* ===== HERO — Bold Artistic ===== */
.hero-istanbul {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f2419 50%, #16A34A 100%);
  padding: 100px 20px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 90vh;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--ist-rose);
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--ist-gold);
  bottom: -100px;
  left: -50px;
  animation: float2 6s ease-in-out infinite;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--ist-rose-light);
  top: 30%;
  left: 40%;
  animation: float3 10s ease-in-out infinite;
}

@keyframes float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 30px); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -20px); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-15px, 15px); } }

.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-size: 3.2em;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero-highlight {
  background: linear-gradient(135deg, #16A34A, #86EFAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-primary-ist {
  display: inline-block;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}
.btn-primary-ist:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(217, 119, 6, 0.5);
}
.btn-outline-ist {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-outline-ist:hover {
  border-color: var(--ist-gold);
  color: var(--ist-gold);
}
.btn-large { padding: 18px 48px; font-size: 1.1em; }

.hero-stats { display: flex; gap: 30px; align-items: center; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.8em; font-weight: 800; color: var(--ist-gold); }
.stat-label { font-size: 0.85em; color: rgba(255, 255, 255, 0.6); }
.stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.2); }

.hero-image-wrapper { position: relative; z-index: 1; }
.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-img-1 {
  width: 85%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
  transition: transform 0.4s;
}
.hero-img-1:hover { transform: rotate(0deg) scale(1.03); }
.hero-img-2 {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(3deg);
  border: 3px solid var(--ist-gold);
  transition: transform 0.4s;
}
.hero-img-2:hover { transform: rotate(0deg) scale(1.03); }

/* ===== SECTION STYLES ===== */
.section-title-ist {
  text-align: center;
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section-sub-ist {
  text-align: center;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1em;
}

/* ===== FEATURES — Asymmetric Grid ===== */
.feat-section { padding: 80px 20px; background: var(--ist-cream); }
.feat-asym-grid { max-width: 1000px; margin: 0 auto; }
.feat-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.feat-row.reverse {
  grid-template-columns: 1fr 1.4fr;
}
.feat-card {
  background: var(--ist-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.feat-card:hover {
  transform: translateY(-5px) rotate(0.5deg);
  box-shadow: 0 12px 36px rgba(217, 119, 6, 0.12);
}
.feat-large { padding: 40px; }
.feat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  margin-bottom: 16px;
}
.rose-bg { background: rgba(217, 119, 6, 0.1); }
.gold-bg { background: rgba(22, 163, 74, 0.12); }
.dark-bg { background: rgba(26, 26, 46, 0.08); }
.feat-card h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ist-dark);
}
.feat-card p {
  color: #64748b;
  font-size: 0.92em;
  line-height: 1.7;
}

/* ===== GALLERY — Horizontal Scroll ===== */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2419, #1a1a2e);
}
.gallery-scroll {
  overflow-x: auto;
  padding: 0 20px 20px;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--ist-gold); border-radius: 3px; }
.gallery-track {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  width: max-content;
}
.gallery-track img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery-track img:hover {
  transform: scale(1.05) rotate(1deg);
  border-color: var(--ist-gold);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.3);
}

/* ===== PRICING — Bold Cards ===== */
.pricing-section { padding: 80px 20px; background: var(--ist-cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--ist-white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.price-card.featured {
  border-color: var(--ist-gold);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.2);
  transform: scale(1.05);
}
.price-card.featured:hover { transform: scale(1.08) translateY(-5px); }
.price-badge {
  display: inline-block;
  background: var(--ist-rose);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.gold-badge { background: var(--ist-gold); color: var(--ist-dark); }
.price-card h3 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 12px;
}
.price-tag {
  font-size: 2em;
  font-weight: 800;
  color: var(--ist-rose);
  margin-bottom: 20px;
}
.featured .price-tag { color: var(--ist-gold); }
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.price-list li {
  padding: 8px 0;
  color: #64748b;
  font-size: 0.9em;
  border-bottom: 1px solid #f1f5f9;
}
.price-list li:last-child { border-bottom: none; }
.price-cta {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  background: var(--ist-dark);
  color: #fff;
  transition: all 0.3s;
}
.price-cta:hover { background: var(--ist-rose); transform: translateY(-2px); }
.gold-cta { background: var(--ist-gold); color: var(--ist-dark); }
.gold-cta:hover { background: #b8931f; }

/* ===== TESTIMONIALS ===== */
.testi-section-ist {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2419, #1a1a2e);
}
.testi-carousel { max-width: 600px; margin: 0 auto; text-align: center; }
.testi-card-ist {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 20px;
}
.testi-stars { font-size: 1.2em; margin-bottom: 16px; }
.testi-quote {
  font-size: 1.05em;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testi-author strong { display: block; color: #fff; font-size: 1em; }
.testi-author span { color: var(--ist-gold); font-size: 0.85em; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s;
}
.testi-btn:hover { background: var(--ist-rose); border-color: var(--ist-rose); }
.testi-counter { color: rgba(255, 255, 255, 0.6); font-size: 0.9em; }

/* ===== CTA — Full Width Gradient ===== */
.cta-section-ist {
  padding: 80px 20px;
  background: linear-gradient(135deg, #16A34A, #D97706, #1a1a2e);
  text-align: center;
}
.cta-content-ist h2 {
  font-size: 2.2em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-content-ist p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.05em;
}

/* ===== FOOTER ===== */
.footer-ist {
  background: var(--ist-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 20px 25px;
}
.footer-grid-ist {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-ist h4 { color: #fff; font-size: 1em; margin-bottom: 14px; }
.footer-ist p, .footer-ist li { font-size: 0.88em; line-height: 1.8; }
.footer-ist ul { list-style: none; }
.footer-ist a { color: rgba(255, 255, 255, 0.5); transition: color 0.2s; }
.footer-ist a:hover { color: var(--ist-gold); }
.footer-bottom-ist {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82em;
}

/* ===== WA FLOAT ===== */
.wa-float-ist {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: waB 2s infinite;
}
.wa-float-ist:hover {
  transform: translateY(-4px) scale(1.05);
  animation: none;
}
.wa-float-ist svg { width: 30px; height: 30px; }
@keyframes waB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-istanbul {
    grid-template-columns: 1fr;
    padding: 80px 20px 60px;
    min-height: auto;
    text-align: center;
  }
  .hero-image-wrapper { display: none; }
  .hero-desc { margin: 0 auto 30px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
}

@media (max-width: 921px) {
  .navbar .nav-toggle { display: block !important; }
  .navbar .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e !important;
    flex-direction: column;
    padding: 16px 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    gap: 4px !important;
    z-index: 9999;
    border-top: 2px solid #16A34A;
  }
  .navbar .nav-links.active { display: flex !important; }
  .navbar .nav-links a {
    color: #fef9ef !important;
    font-weight: 500 !important;
    font-size: 1em !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    transition: background 0.2s, color 0.2s !important;
  }
  .navbar .nav-links a:hover,
  .navbar .nav-links a:active {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FDE68A !important;
  }
  .navbar .nav-cta {
    width: 100% !important;
    text-align: center !important;
    margin-top: 8px !important;
    padding: 14px 22px !important;
    font-size: 0.95em !important;
    border-radius: 10px !important;
  }
}
  .feat-row, .feat-row.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title-ist { font-size: 1.6em !important; }
  .hero-title { font-size: 2.2em !important; }
  .hero-accent { font-size: 1.1em; }
  .stat-num { font-size: 1.4em; }
  .gallery-track img { width: 260px; height: 200px; }
  .cta-content-ist h2 { font-size: 1.6em !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8em !important; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid-ist { grid-template-columns: 1fr !important; gap: 24px !important; }
  .section-title-ist { font-size: 1.4em !important; }
  .nav-brand { font-size: 1em !important; }
  .wa-float-ist { bottom: 16px !important; right: 16px !important; width: 54px !important; height: 54px !important; }
}

/* ===== VIDEO SECTION ===== */
.video-section-ist{padding:80px 0;background:#1a1a2e}
.video-grid-ist{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.video-card-ist{border-radius:12px;overflow:hidden;background:#16213e;box-shadow:0 4px 20px rgba(0,0,0,.3);transition:transform .3s,box-shadow .3s}
.video-card-ist:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(225,29,72,.2)}
.video-thumb-ist{position:relative;aspect-ratio:16/9;overflow:hidden}
.video-thumb-ist img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.video-card-ist:hover .video-thumb-ist img{transform:scale(1.05)}
.video-play-ist{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:52px;height:52px;background:rgba(225,29,72,.85);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all .3s}
.video-play-ist svg{width:22px;height:22px;fill:#fff;margin-left:3px}
.video-card-ist:hover .video-play-ist{background:var(--ist-rose);transform:translate(-50%,-50%) scale(1.1)}
.video-badge-ist{position:absolute;top:10px;right:10px;background:#ff0000;color:#fff;font-size:.7em;font-weight:600;padding:3px 8px;border-radius:4px}
.video-card-body-ist{padding:14px 16px}
.video-card-body-ist h4{font-size:.95em;font-weight:600;margin-bottom:4px;color:#fff}
.video-card-body-ist .video-meta-ist{font-size:.78em;color:rgba(255,255,255,.5)}
@media(max-width:768px){.video-grid-ist{grid-template-columns:1fr}}
/* =============================================
   TEXT COLOR FIXES - Override Astra inline CSS
   ============================================= */

/* Body and headings - dark on light bg */
body.home,
body.home h1, body.home h2, body.home h3,
body.home h4, body.home h5, body.home h6,
body.home p, body.home li, body.home span,
body.home .entry-title, body.home .entry-content,
body.home .section-title-ist,
body.home .section-sub-ist {
  color: #1a1a2e !important;
}
/* Override: inside dark sections, title/subtitle must be white */
body.home .hero-istanbul .section-title-ist,
body.home .hero-istanbul .section-sub-ist,
body.home .gallery-section .section-title-ist,
body.home .gallery-section .section-sub-ist,
body.home .testi-section-ist .section-title-ist,
body.home .testi-section-ist .section-sub-ist,
body.home .cta-section-ist .section-title-ist,
body.home .cta-section-ist .section-sub-ist {
  color: #ffffff !important;
}
body.home .testi-section-ist .section-sub-ist {
  color: rgba(255,255,255,0.7) !important;
}

/* Hero - white text on dark bg */
.hero-istanbul,
.hero-istanbul h1, .hero-istanbul h2, .hero-istanbul h3,
.hero-istanbul p, .hero-istanbul span {
  color: #ffffff !important;
}
.hero-desc, .stat-label {
  color: rgba(255,255,255,0.75) !important;
}
.hero-accent {
  color: #FDE68A !important;
}
.hero-highlight {
  background: linear-gradient(135deg, #FDE68A, #86EFAC) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.stat-num {
  color: #FDE68A !important;
}

/* Feature cards - dark text on white */
.feat-card h3 {
  color: #1a1a2e !important;
}
.feat-card p {
  color: #475569 !important;
}

/* Testimonials - white on dark */
.testi-section-ist,
.testi-section-ist h2, .testi-section-ist h3,
.testi-section-ist p, .testi-section-ist span {
  color: #ffffff !important;
}

/* Footer - white on dark */
.footer-ist,
.footer-ist h4, .footer-ist p,
.footer-ist li, .footer-ist a {
  color: rgba(255,255,255,0.88) !important;
}
.footer-ist a:hover {
  color: #FDE68A !important;
}
.footer-bottom-ist {
  color: rgba(255,255,255,0.55) !important;
}

/* Gallery section */
.gallery-section h2, .gallery-section p {
  color: #ffffff !important;
}

/* CTA section */
section[style*="linear-gradient"] h2 {
  color: #ffffff !important;
}
section[style*="linear-gradient"] p {
  color: rgba(255,255,255,0.85) !important;
}

/* Nav hover */
.nav-links a:hover {
  color: #FDE68A !important;
}

/* ===== TESTIMONIAL CARD TEXT FIX ===== */
.testi-section-ist .testi-card p,
.testi-section-ist [style*="color:#555"] {
  color: #475569 !important;
}
.testi-section-ist [style*="font-weight:600"] {
  color: #1a1a2e !important;
}
.testi-section-ist [style*="background:#fff"] p {
  color: #475569 !important;
}
.testi-section-ist [style*="background:#fff"] [style*="font-weight:600"] {
  color: #1a1a2e !important;
}
/* Stars */
.testi-section-ist [style*="color:#F59E0B"] {
  color: #F59E0B !important;
}


/* =============================================
   READABILITY FIX — Cards on dark sections
   ============================================= */

/* Testimonial cards: dark text on white bg inside dark section */
body.home .testi-section-ist .testi-card,
body.home .testi-section-ist .testi-card p,
body.home .testi-section-ist .testi-card span,
body.home .testi-section-ist .testi-card div {
  color: #334155 !important;
}
body.home .testi-section-ist .testi-card .testi-author {
  color: #1a1a2e !important;
}

/* Pricing cards: dark text on white bg */
body.home .pricing-section .price-card,
body.home .pricing-section .price-card h3,
body.home .pricing-section .price-card p,
body.home .pricing-section .price-card li,
body.home .pricing-section .price-card div {
  color: #334155 !important;
}

/* Pricing section title/subtitle on light bg */
body.home .pricing-section .section-title-ist,
body.home .pricing-section .section-sub-ist {
  color: #1a1a2e !important;
}

/* Section subtitles on light backgrounds */
body.home .feat-section .section-sub-ist,
body.home .pricing-section .section-sub-ist {
  color: #64748b !important;
}

/* Footer: 4 columns */
body.home .footer-grid-ist {
  grid-template-columns: 2fr 1fr 1fr 1.2fr !important;
}

/* Testimonial section subtitle */
body.home .testi-section-ist .section-sub-ist {
  color: rgba(255,255,255,0.7) !important;
}

/* CTA section subtitle */
body.home .cta-section-ist .section-sub-ist {
  color: rgba(255,255,255,0.7) !important;
}

/* ===== FOOTER BACKGROUND FIX - Override Astra white bg ===== */
footer.footer-ist,
body.home footer.footer-ist,
body.home .ast-plain-container footer.footer-ist,
body.home #page footer.footer-ist {
  background: #1a1a2e !important;
  background-color: #1a1a2e !important;
}
footer.footer-ist *,
body.home footer.footer-ist * {
  color: #ffffff !important;
}
footer.footer-ist h4 {
  color: #ffffff !important;
  font-size: 1em !important;
  margin-bottom: 14px !important;
}
footer.footer-ist p,
footer.footer-ist li {
  color: #e2e8f0 !important;
  font-size: 0.88em !important;
  line-height: 1.8 !important;
}
footer.footer-ist a {
  color: #93c5fd !important;
}
footer.footer-ist a:hover {
  color: #FDE68A !important;
}
footer.footer-ist .footer-bottom-ist {
  color: #94a3b8 !important;
}

/* ===== TESTIMONIAL SECTION TITLE FIX ===== */
body.home .testi-section-ist h2.section-title-ist,
body.home .testi-section-ist h2.section-title-ist span {
  color: #ffffff !important;
}
body.home .testi-section-ist h2.section-title-ist .text-gold {
  color: #FDE68A !important;
}
body.home .testi-section-ist .section-sub-ist {
  color: rgba(255,255,255,0.7) !important;
}
