/* ===== GLOBAL STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #f5a623;
  --dark-gold: #e8941a;
  --red: #c0392b;
  --dark-bg: #0d0d1a;
  --dark-bg2: #11112a;
  --dark-bg3: #1a1a35;
  --section-dark: #0f0f22;
  --section-light: #f9f5ef;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --text-muted: #aaa;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #0a0a1a;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,166,35,0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #ccc; font-size: 13px; transition: color 0.3s; }
.top-bar a:hover { color: var(--gold); }
.top-bar .contact-links { display: flex; gap: 20px; align-items: center; }
.top-bar .contact-links a::before {
  margin-right: 6px;
  font-size: 12px;
}
.top-bar .contact-links a.email::before { content: '✉'; }
.top-bar .contact-links a.phone::before { content: '📞'; }

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  overflow: visible;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.logo img { height: 70px; width: auto; }
.logo-text { color: var(--white); }
.logo-text h1 { font-size: 24px; color: var(--gold); font-weight: 700; }
.logo-text p { font-size: 12px; color: #ccc; }

.header-info { display: flex; gap: 30px; align-items: center; }
.header-info .info-item { text-align: center; }
.header-info .info-item strong { display: block; color: var(--gold); font-size: 13px; }
.header-info .info-item span { color: #ccc; font-size: 12px; }

/* ===== NAVIGATION ===== */
nav { background: #1a0a35; border-top: 2px solid var(--gold); }
nav .container { display: flex; justify-content: center; }

/* ===== DESKTOP GRIDS (defined here, overridden in media queries) ===== */
.services-img-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.awards-img-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nav-menu { display: flex; flex-wrap: wrap; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 14px 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); background: rgba(245,166,35,0.1); }
.nav-menu > li:hover > a { color: var(--gold); }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #1a0a35; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 999; border-top: 2px solid var(--gold); }
.nav-menu > li:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: #ccc;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.dropdown li a:hover { color: var(--gold); background: rgba(245,166,35,0.1); padding-left: 25px; }

/* ===== HAMBURGER ===== */
/* Hidden on desktop by default */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--gold); display: block; transition: 0.3s; border-radius: 2px; }
#mainHamburger { display: none; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; max-height: 500px; background: #0d0d1a; }
.slide { display: none; }
.slide.active { display: block; }
.slide-bg {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 50%, #0d1a0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.astrologerinindia.in/images/banner1.png') center/cover no-repeat;
  opacity: 0.7;
}
.slide-2 .slide-bg::before {
  background-image: url('https://www.astrologerinindia.in/images/banner2.png');
}
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.slide-content h2 { font-size: 42px; color: var(--gold); font-weight: 700; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }
.slide-content p { font-size: 18px; color: var(--white); margin: 10px 0 20px; text-shadow: 1px 1px 5px rgba(0,0,0,0.8); }
.btn-gold {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-gold:hover { background: var(--dark-gold); transform: translateY(-2px); }
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; border: 2px solid transparent; transition: 0.3s;
}
.slider-dot.active { background: var(--gold); border-color: var(--gold); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245,166,35,0.8);
  color: #000;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
  transition: 0.3s;
}
.slider-arrow:hover { background: var(--gold); }
.slider-prev { left: 15px; }
.slider-next { right: 15px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SECTION STYLES ===== */
.section { padding: 70px 0; }
.section-dark { background: var(--dark-bg); color: var(--white); }
.section-dark2 { background: var(--dark-bg2); color: var(--white); }
.section-dark3 { background: var(--section-dark); color: var(--white); }
.section-light { background: var(--section-light); }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-dark .section-title h2,
.section-dark2 .section-title h2,
.section-dark3 .section-title h2 { color: var(--white); }
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}
.section-title p { color: #777; margin-top: 12px; font-size: 15px; }
.section-dark .section-title p,
.section-dark2 .section-title p { color: #aaa; }

/* ===== WELCOME SECTION ===== */
.welcome-section { padding: 70px 0; background: var(--dark-bg3); }
.welcome-inner { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: center; }
.welcome-text h3 { font-size: 16px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.welcome-text h2 { font-size: 34px; color: var(--white); margin-bottom: 20px; line-height: 1.3; }
.welcome-text p { color: #bbb; line-height: 1.8; margin-bottom: 15px; font-size: 15px; }
.experience-box {
  background: var(--gold);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}
.experience-box .num { font-size: 72px; font-weight: 700; color: #000; line-height: 1; }
.experience-box .label { font-size: 16px; color: #333; font-weight: 600; margin-top: 5px; }

/* ===== FEATURES SECTION ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  background: var(--dark-bg3);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 35px 25px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.feature-icon { font-size: 48px; margin-bottom: 15px; }
.feature-card h3 { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.feature-card p { color: #bbb; font-size: 14px; line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; cursor: pointer; transition: 0.3s; border: 2px solid transparent; }
.gallery-grid img:hover { border-color: var(--gold); transform: scale(1.03); }

.cert-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.cert-grid img { width: 100%; height: 120px; object-fit: cover; border-radius: 4px; border: 1px solid rgba(245,166,35,0.2); }

.awards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.awards-grid img { width: 100%; height: 160px; object-fit: cover; border-radius: 4px; border: 2px solid rgba(245,166,35,0.3); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-card { display: flex; gap: 20px; align-items: flex-start; background: var(--dark-bg3); border: 1px solid rgba(245,166,35,0.15); border-radius: 8px; padding: 25px; transition: 0.3s; }
.service-card:hover { border-color: var(--gold); }
.service-card img { width: 120px; height: 90px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.service-card h4 { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.service-card p { color: #bbb; font-size: 13px; line-height: 1.6; }

/* ===== CONTACT FORM ===== */
.contact-form-section { background: #0a0a1f; padding: 70px 0; }
.contact-form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-text h2 { font-size: 28px; color: var(--white); margin-bottom: 15px; }
.contact-form-text p { color: #aaa; line-height: 1.7; font-size: 15px; }
.contact-form { background: var(--dark-bg3); padding: 35px; border-radius: 8px; border: 1px solid rgba(245,166,35,0.2); }
.form-group { margin-bottom: 18px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(245,166,35,0.05); }
.form-group select option { background: #1a1a35; color: #fff; }
.form-group textarea { height: 100px; resize: none; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.btn-submit:hover { background: var(--dark-gold); }

/* ===== STATS / WHY CHOOSE US ===== */
.stats-section { background: #0a0a1a; padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item img { height: 60px; width: auto; margin: 0 auto 15px; display: block; }
.stat-item .stat-icon { font-size: 48px; margin-bottom: 15px; }
.stat-item h3 { font-size: 42px; font-weight: 700; color: var(--gold); }
.stat-item p { color: #aaa; font-size: 14px; margin-top: 5px; }
.stats-intro { text-align: center; margin-bottom: 50px; }
.stats-intro p { color: #aaa; max-width: 600px; margin: 15px auto 0; line-height: 1.7; font-size: 15px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 70px 0; background: var(--dark-bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.testimonial-card {
  background: var(--dark-bg3);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 30px;
  border-radius: 8px;
  position: relative;
}
.testimonial-card::before { content: '"'; font-size: 60px; color: var(--gold); position: absolute; top: 10px; right: 20px; opacity: 0.3; line-height: 1; }
.testimonial-card p { color: #ccc; font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-info h5 { color: var(--white); font-size: 15px; }
.testimonial-info span { color: var(--gold); font-size: 12px; }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, #2c0a00 0%, #1a0a35 100%);
  padding: 60px 0;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.cta-section h2 { font-size: 28px; color: var(--white); margin-bottom: 10px; }
.cta-section p { color: #ccc; margin-bottom: 25px; font-size: 15px; }
.btn-call {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}
.btn-call:hover { background: #fff; }

/* ===== FOOTER ===== */
footer { background: #05050f; padding: 60px 0 0; color: #ccc; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 { color: var(--gold); font-size: 16px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 10px; border-bottom: 1px solid rgba(245,166,35,0.3); }
.footer-col p { font-size: 13px; line-height: 1.8; color: #999; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #999; transition: 0.3s; }
.footer-col ul li a::before { content: '›'; margin-right: 6px; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; font-size: 16px; }
.footer-contact-item span { color: #999; line-height: 1.5; }
.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #666;
}
.footer-bottom a { color: var(--gold); }

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: linear-gradient(to right, #1a0a35, #0d0d1a);
  padding: 50px 0;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.breadcrumb-section h1 { font-size: 34px; color: var(--white); margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: #aaa; }

/* ===== PAGE CONTENT ===== */
.page-content { padding: 70px 0; background: var(--dark-bg); }
.page-content .content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.content-text h2 { font-size: 26px; color: var(--gold); margin-bottom: 15px; }
.content-text h3 { font-size: 20px; color: var(--white); margin: 25px 0 10px; }
.content-text p { color: #bbb; font-size: 15px; line-height: 1.8; margin-bottom: 15px; }
.content-text ul { list-style: disc; padding-left: 20px; margin-bottom: 15px; }
.content-text ul li { color: #bbb; font-size: 14px; margin-bottom: 6px; padding-left: 5px; }
.sidebar-widget { background: var(--dark-bg3); border: 1px solid rgba(245,166,35,0.2); border-radius: 8px; padding: 25px; margin-bottom: 25px; }
.sidebar-widget h4 { color: var(--gold); font-size: 16px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(245,166,35,0.2); }
.sidebar-widget ul li { margin-bottom: 8px; }
.sidebar-widget ul li a { color: #bbb; font-size: 14px; transition: 0.3s; }
.sidebar-widget ul li a:hover { color: var(--gold); }
.sidebar-widget ul li a::before { content: '★ '; color: var(--gold); font-size: 10px; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 70px 0; background: var(--dark-bg); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 22px; color: var(--gold); margin-bottom: 25px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon { width: 45px; height: 45px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-text strong { color: var(--white); display: block; margin-bottom: 3px; font-size: 14px; }
.ci-text span, .ci-text a { color: #aaa; font-size: 14px; }
.ci-text a:hover { color: var(--gold); }
.map-placeholder { margin-top: 25px; border-radius: 8px; overflow: hidden; border: 2px solid rgba(245,166,35,0.3); }
.map-placeholder iframe { width: 100%; height: 250px; border: none; }

/* ===== RESPONSIVE ===== */

/* ── TABLET: 768px – 992px ─────────────────────────── */
@media (max-width: 992px) {

  .container { padding: 0 16px; }

  /* Header - show hamburger, hide info */
  .header-info { display: none; }
  #mainHamburger { display: flex !important; }

  /* Nav bar - hidden on mobile, only dropdown shows */
  nav { background: transparent !important; border-top: none !important; padding: 0 !important; }
  nav .container { padding: 0; }

  /* Dropdown menu - absolute from header (header is sticky = positioned) */
  .nav-menu {
    display: none !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #1a0a35 !important;
    border-top: 2px solid var(--gold) !important;
    z-index: 9999 !important;
    max-height: 75vh !important;
    overflow-y: auto !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.8) !important;
  }
  .nav-menu.open { display: flex !important; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 13px 20px !important; border-bottom: 1px solid rgba(255,255,255,0.07) !important; font-size: 15px !important; display: block !important; }
  .dropdown { position: static !important; display: none !important; background: rgba(0,0,0,0.4) !important; border: none !important; box-shadow: none !important; }
  .dropdown.open { display: block !important; }
  .dropdown li a { padding: 10px 36px !important; font-size: 13px !important; }

  /* Hero */
  section[id=heroBanner], section[id=heroBanner] ~ * { }
  #heroBanner h1, #heroBg ~ div h1 { font-size: 36px !important; }
  #heroBanner p { font-size: 15px !important; }

  /* Welcome */
  .welcome-inner { grid-template-columns: 1fr; gap: 30px; }
  .welcome-inner > div:last-child img { max-width: 300px !important; }
  .welcome-text h2 { font-size: 28px; }

  /* Grids */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .services-img-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .awards-img-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .cert-grid { grid-template-columns: repeat(4, 1fr); }

  /* Contact & forms */
  .contact-form-inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Page content (service pages) */
  .page-content .content-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* Sections padding */
  .section { padding: 50px 0; }
  .section-title h2 { font-size: 26px; }

  /* Breadcrumb */
  .breadcrumb-section { padding: 35px 0; }
  .breadcrumb-section h1 { font-size: 26px; }

  /* CTA */
  .cta-section h2 { font-size: 22px; }
}

/* ── MOBILE: max 767px ─────────────────────────────── */
@media (max-width: 767px) {

  .container { padding: 0 15px; }

  /* Top bar */
  .top-bar .container { justify-content: center; gap: 6px; flex-direction: column; text-align: center; }
  .top-bar .contact-links { gap: 12px; justify-content: center; }
  .top-bar a { font-size: 12px; }
  .top-bar > .container > div:last-child { display: none; }

  /* Header */
  .header-inner { justify-content: space-between; }
  #mainHamburger { display: flex !important; }
  .logo-text h1 { font-size: 18px !important; }
  .logo-text p { font-size: 10px !important; }

  /* Hero */
  #heroBanner { min-height: 420px !important; }
  #heroBanner h1 { font-size: 28px !important; line-height: 1.3 !important; }
  #heroBanner p { font-size: 14px !important; margin-bottom: 22px !important; }
  #heroBanner > div:last-child { padding: 50px 15px !important; }
  #heroBanner .btn-gold,
  #heroBanner a[href^="tel"] { padding: 11px 20px !important; font-size: 13px !important; }

  /* Welcome / About */
  .welcome-section { padding: 40px 0; }
  .welcome-inner { grid-template-columns: 1fr; gap: 25px; }
  .welcome-inner > div:last-child { text-align: center; }
  .welcome-inner > div:last-child img { max-width: 260px !important; }
  .welcome-text h3 { font-size: 13px; }
  .welcome-text h2 { font-size: 24px; }
  .welcome-text p { font-size: 14px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 15px; }
  .feature-card { padding: 25px 18px; }
  .feature-icon { font-size: 36px; margin-bottom: 10px; }
  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 13px; }

  /* Services grid */
  .services-img-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .services-img-grid img { height: 120px !important; }
  .services-img-grid h3 { font-size: 13px !important; margin-bottom: 4px !important; }
  .services-img-grid p { font-size: 11px !important; }
  .services-img-grid > a > div > div { padding: 10px 8px !important; }

  /* Awards */
  .awards-img-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-item h3 { font-size: 30px; }
  .stat-item .stat-icon { font-size: 36px; margin-bottom: 8px; }
  .stat-item p { font-size: 12px; }
  .stats-intro p { font-size: 13px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 15px; }
  .testimonial-card { padding: 22px 18px; }
  .testimonial-card p { font-size: 13px; }

  /* Video section */
  #videoSection { padding: 40px 0 !important; }
  #videoSection .section-title h2 { font-size: 20px; }
  #videoSection > .container > div:last-child { border-width: 2px !important; border-radius: 8px !important; }

  /* Contact form */
  .contact-form-inner { grid-template-columns: 1fr; gap: 25px; }
  .contact-form-text h2 { font-size: 22px; }
  .contact-form { padding: 25px 18px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 25px; }

  /* Page content – service pages */
  .page-content { padding: 40px 0; }
  .page-content .content-grid { grid-template-columns: 1fr; gap: 25px; }
  .content-text h2 { font-size: 20px; }
  .content-text h3 { font-size: 17px; }
  .content-text p { font-size: 14px; }
  .sidebar-widget { padding: 18px; }
  aside .sidebar-widget:first-child { display: none; } /* hide services list sidebar on mobile */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-col h4 { font-size: 14px; }
  .footer-col p, .footer-col ul li a, .footer-contact-item span { font-size: 13px; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-title { margin-bottom: 30px; }
  .section-title h2 { font-size: 22px; }
  .section-title p { font-size: 13px; }

  /* Breadcrumb */
  .breadcrumb-section { padding: 28px 0; }
  .breadcrumb-section h1 { font-size: 20px; }
  .breadcrumb { font-size: 12px; }

  /* CTA */
  .cta-section { padding: 40px 0; }
  .cta-section h2 { font-size: 18px; }
  .cta-section p { font-size: 13px; }
  .btn-call { padding: 12px 28px; font-size: 14px; }

  /* Floating WA button */
  a[href*="wa.me"] { width: 52px !important; height: 52px !important; bottom: 18px !important; right: 18px !important; }
  a[href*="wa.me"] svg { width: 26px !important; height: 26px !important; }
  a[href*="wa.me"] span { width: 52px !important; height: 52px !important; }
}

/* ── SMALL MOBILE: max 420px ───────────────────────── */
@media (max-width: 420px) {
  #heroBanner h1 { font-size: 24px !important; }
  .services-img-grid { grid-template-columns: 1fr !important; }
  .awards-img-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .welcome-text h2 { font-size: 20px; }
  .section-title h2 { font-size: 20px; }
}

