/* ============================================================
   style.css — Astrologer Nitesh Shastri Ji
   MOBILE FIRST — Pure CSS — No Framework
============================================================ */

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  overflow-x: hidden;
  background: #fff;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; color: #000; font-weight: 700; }

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

/* ===================== BUTTONS ===================== */
.btn-main {
  display: inline-block;
  background: #01203F;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-main::before {
  content: '';
  position: absolute;
  width: 0; height: 0;
  background: #db000b;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}
.btn-main:hover,
.btn-main:active { color: #fff; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.22); }
.btn-main:hover::before { width: 400px; height: 400px; }
.btn-main i { margin-left: 5px; }

.btn-gold {
  display: inline-block;
  background: #FFC00B;
  color: #01203F;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: #db000b; color: #fff; }
.btn-gold i { margin-left: 4px; }

/* ===================== SECTION HEADING ===================== */
.section-head { text-align: center; margin-bottom: 35px; }
.tagline {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #01203F;
  margin-bottom: 6px;
}
.section-head h2 { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 10px; }
.section-head h2 span { color: #db000b; }
.section-head p { font-size: 14px; color: #666; max-width: 560px; margin: 0 auto 14px; }
.testi-tagline { color: #FFC00B; }
.testi-h2 { color: #fff !important; }
.testi-h2 span { color: #FFC00B; }
.testi-p { color: #ccc !important; }

.divider {
  display: inline-block;
  width: 70px; height: 4px;
  background: #db000b;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.divider::after {
  content: '';
  position: absolute;
  left: 0; top: -1px;
  height: 6px; width: 14px;
  background: #fff;
  animation: divMove 3s linear infinite;
}
@keyframes divMove {
  0%   { transform: translateX(-5px); }
  50%  { transform: translateX(56px); }
  100% { transform: translateX(-5px); }
}

/* check list */
.check-list { margin: 14px 0 20px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 1px;
  color: #db000b;
  font-size: 14px;
}

.full-banner { width: 100%; overflow: hidden; }
.full-banner img { width: 100%; display: block; }

/* ===================== TOP NAVBAR ===================== */
.top-navbar { background: #01203F; padding: 8px 0; }
.top-navbar__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.ticker-wrap {
  background: #FFC00B;
  border-radius: 50px;
  overflow: hidden;
  padding: 4px 0;
  width: 100%;
}
.ticker-move {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 18s linear infinite;
  width: max-content;
}
.ticker-move span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  padding: 0 30px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-navbar__btn { text-align: center; }
.top-navbar__btn a {
  display: inline-block;
  background: #db000b;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 50px;
  animation: pulsBtn 1.2s infinite;
}
@keyframes pulsBtn {
  0%   { transform: scale(1); background: #db000b; color: #fff; }
  50%  { transform: scale(1.07); background: #FFC00B; color: #000; }
  100% { transform: scale(1); background: #db000b; color: #fff; }
}

/* ===================== HEADER LOGO ===================== */
.header-logo { background: #fff; padding: 0; }
.header-logo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.header-logo__item {
  width: 100%;
  text-align: center;
}
.header-logo__item a { display: block; width: 100%; }
.header-logo__item img {
  height: auto;
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* ===================== ZODIAC BAR ===================== */
.zodiac-bar { background: #000; padding: 10px 0; }
.zodiac-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.zodiac-carousel-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.zodiac-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  width: 0; /* force flex child to shrink correctly */
}
.zodiac-carousel-track {
  display: flex;
  gap: 8px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.zodiac-slide {
  flex-shrink: 0;
  flex-grow: 0;
}
.zodiac-slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.zodiac-slide img {
  width: 52px; height: 52px;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}
.zodiac-slide span {
  color: #FFC00B;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  text-align: center;
}
.zodiac-arrow {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #FFC00B;
  font-size: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background 0.3s;
  flex-shrink: 0;
}
.zodiac-arrow:hover { background: #FFC00B; color: #000; }
.zodiac-bar__title { text-align: center; }
.zodiac-bar__title a {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  display: inline-block;
  animation: bounceTxt 1s infinite alternate;
}
.zodiac-bar__title a span { color: #FFC00B; }
@keyframes bounceTxt {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* ===================== BANNER SLIDER ===================== */
.banner-slider { position: relative; overflow: hidden; width: 100%; }
.banner-slider__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  width: 100%;
}
.banner-slider__slide {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
}
.banner-slider__slide img { width: 100%; height: auto; display: block; }
.banner-slider__slide a { display: block; width: 100%; }
.banner-slider__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none; color: #fff;
  font-size: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.banner-slider__arrow:hover { background: #db000b; }
.banner-slider__arrow--prev { left: 10px; }
.banner-slider__arrow--next { right: 10px; }
.banner-slider__dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
}
.banner-slider__dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer; border: none;
  transition: background 0.3s, transform 0.3s;
}
.banner-slider__dots .dot.active { background: #FFC00B; transform: scale(1.3); }

/* ===================== ABOUT SECTION ===================== */
.about-area { padding: 40px 0; background: #fcfae7; }
.about-area__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-area__img img {
  width: 100%;
  border-radius: 8px;
  border: 3px solid #FFC00B;
}
.about-area__content .tagline { margin-bottom: 6px; }
.about-area__content h2 { font-size: 22px; color: #01203F; margin-bottom: 12px; }
.about-area__content p { font-size: 14px; color: #555; margin-bottom: 14px; }

/* ===================== SERVICES SECTION ===================== */
.services-area { padding: 40px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: #01203F;
  border: 1px solid #FFC00B;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.service-card:hover { transform: translateY(-6px); }
.service-card__img { width: 100%; height: auto !important; overflow: hidden; border-bottom: 1px solid #FFC00B; }
.service-card__img a { display: block; width: 100%; height: 100%; }
.service-card__img img { width: 100%; height: 310px !important ; object-fit: cover !important; transition: transform 0.4s; }
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__body { padding: 16px; }
.service-card__body h3 { font-size: 16px; color: #FFC00B; margin-bottom: 8px; }
.service-card__body p { font-size: 13px; color: #ccc; line-height: 1.6; margin-bottom: 12px; }

/* ===================== COUNTER SECTION ===================== */
.counter-area { background: #FFC00B; padding: 40px 0; }
.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.counter-box { text-align: center; padding: 10px; }
.counter-icon {
  width: 65px; height: 65px;
  background: #db000b;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 28px; color: #fff;
  box-shadow: 3px 3px 0 rgba(255,255,255,0.5);
}
.counter-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #01203F;
  line-height: 1;
}
.counter-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #db000b;
  margin-top: 6px;
}

/* ===================== WHY CHOOSE US ===================== */
.choose-area { padding: 40px 0; background: #fcfae7; }
.choose-area__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.choose-area__content .tagline { margin-bottom: 6px; }
.choose-area__content h2 { font-size: 22px; color: #01203F; margin-bottom: 12px; }
.choose-area__content h2 span { color: #db000b; }
.choose-area__content > p { font-size: 14px; color: #555; margin-bottom: 18px; }
.choose-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.choose-icon {
  width: 54px; height: 54px; min-width: 54px;
  background: #db000b; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.choose-item h4 { font-size: 14px; color: #01203F; margin-bottom: 4px; }
.choose-item p { font-size: 13px; color: #555; }
.choose-area__img img { width: 100%; border-radius: 8px; border: 3px solid #FFC00B; }

/* ===================== PROCESS ===================== */
.process-area { padding: 40px 0; background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.process-card { text-align: center; padding: 14px 8px; }
.process-icon {
  width: 90px; height: 90px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-icon img { width: 60px; }
.process-card h4 { font-size: 14px; color: #01203F; margin-bottom: 8px; }
.process-card p { font-size: 13px; color: #666; }

/* ===================== TESTIMONIALS ===================== */
.testi-area { padding: 40px 0; background: #01203F; position: relative; }
.testi-slider-wrap { position: relative; overflow: hidden; padding-bottom: 52px; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  margin-right: 0;
}
.testi-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-top img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid #db000b; }
.testi-top h5 { font-size: 15px; color: #01203F; margin-bottom: 2px; }
.testi-top span { font-size: 12px; color: #db000b; font-weight: 600; }
.testi-card > p { font-size: 13px; color: #444; line-height: 1.7; margin-bottom: 10px; }
.testi-stars { color: #FFC00B; font-size: 13px; }
.testi-arrow {
  position: absolute;
  bottom: 10px;
  background: #FFC00B;
  border: none; color: #000;
  font-size: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.testi-arrow:hover { background: #db000b; color: #fff; }
.testi-arrow--prev { left: 0; }
.testi-arrow--next { left: 46px; }
.testi-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.testi-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; border: none;
  transition: background 0.3s, transform 0.3s;
}
.testi-dots .dot.active { background: #FFC00B; transform: scale(1.3); }

/* ===================== OTHER SERVICES / PRICING ===================== */
.pricing-area { padding: 40px 0; background: #fcfae7; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.pricing-card {
  background: #fff;
  border-top: 4px solid #db000b;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 26px 20px;
  text-align: center;
  border-radius: 0 0 6px 6px;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card__icon {
  width: 70px; height: 70px;
  background: #db000b; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px; color: #fff;
  border: 3px solid #FFC00B;
}
.pricing-card ul { text-align: left; margin-bottom: 20px; }
.pricing-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-size: 14px; color: #333; font-weight: 500;
}
.pricing-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 3px;
  color: #db000b; font-size: 11px;
}
.pricing-card .btn-main { width: 100%; text-align: center; }

/* ===================== CTA SECTION ===================== */
.cta-area {
  padding: 50px 16px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/01.jpg') center/cover no-repeat fixed;
  text-align: center;
}
.cta-area__inner { max-width: 740px; margin: 0 auto; }
.cta-area h2 { font-size: 22px; color: #FFC00B; margin-bottom: 14px; }
.cta-area p { font-size: 14px; color: #ddd; line-height: 1.8; margin-bottom: 22px; }

/* ===================== BLOG SECTION ===================== */
.blog-area { padding: 40px 0; background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.blog-card {
  background: #fcfae7;
  border: 2px solid #db000b;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card__img { width: 100%; height: auto !important; overflow: hidden; }
.blog-card__img a { display: block; width: 100%; height: 100%; }
.blog-card__img img { width: 100%; height: 350px !important; object-fit: cover !important; transition: transform 0.4s; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 16px; }
.blog-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.blog-meta a { font-size: 12px; font-weight: 600; color: #333; }
.blog-meta a i { color: #db000b; margin-right: 3px; }
.blog-meta a:hover { color: #db000b; }
.blog-card__body h4 { font-size: 15px; color: #01203F; margin-bottom: 8px; line-height: 1.4; }
.blog-card__body h4 a { color: inherit; }
.blog-card__body h4 a:hover { color: #db000b; }
.blog-card__body p { font-size: 13px; color: #555; margin-bottom: 12px; }

/* ===================== FOOTER ===================== */
.footer { background: #0d1538; padding: 50px 0 0; }
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 30px;
}
.footer__brand h6 { font-size: 17px; color: #fff; margin-bottom: 12px; }
.footer__brand h6 span { color: #FFC00B; }
.footer__brand p { font-size: 13px; color: #bbb; line-height: 1.8; }
.footer__links h6,
.footer__contact h6 { font-size: 16px; color: #fff; margin-bottom: 14px; }
.footer__links-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer__links-cols li { margin-bottom: 8px; }
.footer__links-cols li a { font-size: 13px; color: #ccc; font-weight: 500; }
.footer__links-cols li a i { color: #FFC00B; margin-right: 5px; }
.footer__links-cols li a:hover { color: #FFC00B; }
.footer__contact ul li { margin-bottom: 9px; }
.footer__contact ul li a { font-size: 13px; color: #ccc; font-weight: 500; }
.footer__contact ul li a i { color: #FFC00B; margin-right: 7px; }
.footer__contact ul li a:hover { color: #FFC00B; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer__social a {
  width: 34px; height: 34px;
  background: #FFC00B; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #01203F; font-size: 13px;
  transition: transform 0.3s;
}
.footer__social a:hover { transform: scale(1.2) rotate(15deg); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
  text-align: center;
}
.footer__disclaimer { font-size: 12px; color: #aaa; line-height: 1.6; }
.footer__disclaimer span { color: #FFC00B; font-weight: 700; }
.footer__cta {
  display: inline-block;
  font-size: 18px !important; font-weight: 800; color: #FFC00B;
  animation: bounceTxt 1s infinite alternate;
}
.footer__copy { background: rgba(0,0,0,0.35); text-align: center; padding: 12px 0; }
.footer__copy p { font-size: 12px; color: #aaa; }

/* ===================== FLOATING BUTTONS ===================== */
.float-call,
.float-wa {
  position: fixed;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  bottom: 18px;
}
.float-call { left: 14px; background: #0049D0; animation: pulseCall 1.5s infinite; }
.float-wa   { right: 14px; background: #25D366; animation: pulseWA 1.5s infinite; }
.float-call:hover,
.float-wa:hover { transform: scale(1.15); color: #fff; }
@keyframes pulseCall {
  0%   { box-shadow: 0 0 0 0 rgba(0,73,208,0.6); }
  70%  { box-shadow: 0 0 0 13px rgba(0,73,208,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,73,208,0); }
}
@keyframes pulseWA {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 13px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   TABLET — 600px+
============================================================= */
@media (min-width: 600px) {
  .container { padding: 0 24px; }

  /* Navbar */
  .top-navbar__inner { flex-direction: row; align-items: center; gap: 14px; }
  .top-navbar__btn { flex-shrink: 0; }
  .ticker-move span { font-size: 12px; padding: 0 40px; }

  /* Header Logo — row layout on tablet+ */
  .header-logo__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .header-logo__item { flex: 1; min-width: 0; }
  .header-logo__item img { height: 110px; object-fit: contain; }

  /* Zodiac */
  .zodiac-bar__inner { flex-direction: row; gap: 16px; }
  .zodiac-bar__title { flex-shrink: 0; text-align: right; }
  .zodiac-bar__title a { font-size: 18px; }
  .zodiac-slide img { width: 60px; height: 60px; }

  /* About */
  .about-area { padding: 50px 0; }
  .about-area__content h2 { font-size: 26px; }

  /* Services — 2 col */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card__img { height: auto !important; }

  /* Counter */
  .counter-num { font-size: 36px; }
  .counter-icon { width: 72px; height: 72px; font-size: 30px; }

  /* Choose */
  .choose-area { padding: 50px 0; }
  .choose-area__content h2 { font-size: 26px; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-icon { width: 100px; height: 100px; }
  .process-icon img { width: 68px; }

  /* Testimonials */
  .testi-card { min-width: calc(50% - 10px); margin-right: 20px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card__img { height: auto !important; }

  /* Footer */
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__disclaimer { text-align: left; }
  .footer__cta { font-size: 22px; }

  /* Section head */
  .section-head h2 { font-size: 28px; }
  .cta-area h2 { font-size: 26px; }

  /* Banner arrows */
  .banner-slider__arrow { width: 42px; height: 42px; font-size: 22px; }
  .banner-slider__arrow--prev { left: 14px; }
  .banner-slider__arrow--next { right: 14px; }

  /* Testi arrows */
  .testi-arrow--prev { left: 0; bottom: 10px; }
  .testi-arrow--next { left: 46px; bottom: 10px; }
}

/* =============================================================
   DESKTOP — 900px+
============================================================= */
@media (min-width: 900px) {
  .container { padding: 0 30px; }

  /* Navbar */
  .ticker-move span { font-size: 13px; padding: 0 50px; }
  .top-navbar__btn a { font-size: 13px; padding: 7px 18px; }

  /* Header Logo */
  .header-logo__item img { height: 140px; }

  /* Zodiac */
  .zodiac-bar__title a { font-size: 24px; }
  .zodiac-slide img { width: 70px; height: 70px; }
  .zodiac-slide span { font-size: 10px; }

  /* About */
  .about-area { padding: 65px 0; }
  .about-area__inner { flex-direction: row; gap: 50px; align-items: center; }
  .about-area__img { flex: 1; }
  .about-area__content { flex: 1; }
  .about-area__content h2 { font-size: 32px; }
  .about-area__content p { font-size: 15px; }

  /* Services — 3 col */
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .service-card__img { height: auto !important; }
  .service-card__body h3 { font-size: 17px; }

  /* Counter */
  .counter-grid { grid-template-columns: repeat(4, 1fr); }
  .counter-num { font-size: 44px; }
  .counter-icon { width: 82px; height: 82px; font-size: 36px; }
  .counter-label { font-size: 14px; }

  /* Choose */
  .choose-area { padding: 65px 0; }
  .choose-area__inner { flex-direction: row; gap: 50px; align-items: center; }
  .choose-area__content { flex: 1; }
  .choose-area__img { flex: 1; }
  .choose-area__content h2 { font-size: 32px; }
  .choose-area__content > p { font-size: 15px; }
  .choose-icon { width: 62px; height: 62px; font-size: 25px; }
  .choose-item h4 { font-size: 15px; }

  /* Process */
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-icon { width: 115px; height: 115px; }
  .process-icon img { width: 76px; }
  .process-card h4 { font-size: 16px; }

  /* Testimonials */
  .testi-card { min-width: calc(33.333% - 14px); margin-right: 20px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-card__img { height: auto !important; }

  /* Section head */
  .section-head h2 { font-size: 34px; }
  .cta-area h2 { font-size: 32px; }
  .cta-area p { font-size: 15px; }

  /* Footer */
  .footer__inner { flex-direction: row; gap: 40px; }
  .footer__brand { flex: 1; }
  .footer__links { flex: 2; }
  .footer__contact { flex: 1; }
  .footer__brand h6 { font-size: 18px; }
  .footer__brand p { font-size: 14px; }
  .footer__links h6,
  .footer__contact h6 { font-size: 17px; }
  .footer__cta { font-size: 26px; }

  /* Floats */
  .float-call, .float-wa { width: 56px; height: 56px; font-size: 24px; }

  /* Testi arrows reposition */
  .testi-arrow--prev { bottom: 10px; left: 0; }
  .testi-arrow--next { bottom: 10px; left: 46px; }
}

/* =============================================================
   LARGE DESKTOP — 1200px+
============================================================= */
@media (min-width: 1200px) {
  .header-logo__item img { height: 155px; }
  .zodiac-bar__title a { font-size: 28px; }
  .section-head h2 { font-size: 38px; }
  .about-area__content h2 { font-size: 36px; }
  .choose-area__content h2 { font-size: 34px; }
  .cta-area h2 { font-size: 36px; }
  .counter-num { font-size: 48px; }
  .counter-icon { width: 86px; height: 86px; font-size: 38px; }
}