/* ===============================
   RESET & GLOBAL
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  animation: bodyFade 0.8s ease;
  padding-top: 64px; /* space for fixed header */
  overflow-x: hidden;
}

@keyframes bodyFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===============================
   HEADER (FIXED – NO GAP)
================================ */
 .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px; /* REDUCED */

  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 40px;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header img {
  height: 42px;
  width: auto;
  max-width: 100%;
  display: block;
}

.header nav {
  display: flex;
  gap: 28px;
}

.header nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.header nav a:hover {
  color: #fdf254;
}

.header-btn {
  background: #fdf254;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}


/* ===============================
   HERO
================================ */
.hero {
  min-height: calc(100vh - 64px);
  padding: 40px 20px 60px; /* reduced top padding */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)),
    url("https://friendscaraccessories.com/assets/images/about.png");

  background-size: cover;
  background-position: center;
}



.hero-content {
  max-width: 900px;
  margin: auto;
  animation: heroRise 1s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #e0e0e0;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 30px;
}

.hero-services span {
  color: #FDF254;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  padding: 16px 34px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn.primary {
  background: transparent;
  color: #FDF254;
  border: 2px solid #FDF254;
}

.btn.whatsapp {
  background: #25D366;
  color: #000;
}

.btn:hover {
  transform: translateY(-4px) scale(1.04);
}

/* ===============================
   SERVICES
================================ */
.section {
  padding: px 50px;
  text-align: center;
}

.service-list {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.service-item {
  display: flex;
  background: #0d0d0d;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-item:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 60px rgba(253,242,84,0.15);
}

.service-img {
  width: 45%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  width: 55%;
  padding: 40px;
}

.service-content h3 {
  color: #FDF254;
  margin-bottom: 12px;
}

.service-content p {
  color: #d1d1d1;
  font-size: 15.5px;
  line-height: 1.9;
}

/* ===============================
   LOCATIONS
================================ */
.locations-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}


.location-card {
  background: #0d0d0d;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(253,242,84,0.15);
}

.location-card iframe {
  width: 100%;
  height: 260px;
  border-radius: 14px;
}

/* Coming Soon */
.location-card.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
}

.coming-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffe84d;
}

.coming-desc {
  font-size: 15px;
  color: #ccc;
  margin-top: 8px;
}

.notify-btn {
  margin-top: 22px;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  background: #ffe84d;
  color: #000;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255,232,77,0.55);
  transition: transform 0.3s ease;
}

.notify-btn:hover {
  transform: translateY(-3px);
}

/* ===============================
   TESTIMONIALS
================================ */
.testimonials-section {
  padding: 80px 20px;
  background: #000;
  text-align: center;
}

.testimonial-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow:
    0 0 6px rgba(255,215,0,.55),
    0 0 18px rgba(255,200,0,.45),
    0 0 36px rgba(255,190,0,.35);
}

.testimonial-subtitle {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 40px;
}

.testimonial-embed {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0b0b0b, #151515);
}

/* ===============================
   RANK BADGE
================================ */
.rank-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.rank-badge {
  padding: 22px 60px;
  background: linear-gradient(135deg, #ffea00, #ffb800);
  border-radius: 16px;
  box-shadow:
    0 25px 80px rgba(255,200,0,0.75),
    inset 0 -6px 0 rgba(0,0,0,0.25);
}

.rank-text {
  font-size: 65px;
  font-weight: 900;
  color: #111;
}

.rank-sub {
  font-size: 12px;
  letter-spacing: 3px;
}

/* ===============================
   FLOATING WHATSAPP
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  box-shadow: 0 12px 30px rgba(37,211,102,0.6);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

.whatsapp-float i {
  font-size: 30px;
  color: #fff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 12px;
  }

  .hero-title {
    font-size: 34px;
  }

  .service-item {
    flex-direction: column;
  }

  .service-img,
  .service-content {
    width: 100%;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}
.service-desc {
  max-height: 130px;
  overflow: hidden;
}
/* REMOVE FCA LOGO FROM HERO */
.hero-brand {
  display: none !important;
}
/* REMOVE TOP LEFT WHATSAPP CHAT */
#global-whatsapp {
  display: none !important;
}
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.88),
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.9)
    ),
    url("https://friendscaraccessories.com/assets/images/about.png");

  background-size: cover;
  background-position: center;
}
/* PERFECT CENTER FOR NO.1 BADGE */
.rank-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rank-badge {
  margin: 0 auto 25px;
}
/* FEATURE TAGS – PREMIUM PILL STYLE */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.feature-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #111;
  background: linear-gradient(135deg, #ffe84d, #ffcc00);

  box-shadow: 0 8px 20px rgba(255,200,0,0.35);
  transition: all 0.3s ease;
  cursor: default;
}

/* Hover effect */
.feature-tags span:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 35px rgba(255,200,0,0.6);
}
/* AUTO ICONS FOR FEATURE TAGS */
.feature-tags span::before {
  content: "✔";
  margin-right: 6px;
  font-size: 12px;
}
/* SERVICE CTA LINKS – PREMIUM */
.service-cta {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 15px;
  color: #ffe84d;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* underline animation */
.service-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ffe84d;
  transition: width 0.35s ease;
}

.service-cta:hover::after {
  width: 100%;
}

.service-cta:hover {
  letter-spacing: 0.5px;
}
.service-item:nth-child(2) .feature-tags span {
  background: linear-gradient(135deg, #ffd000, #ff9f00);
}
/* ===============================
   TRUSTED PARTNERS – PREMIUM STRIP
================================ */

#partners {
  padding: 80px 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #111, #000);
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
}

.partner-card {
  min-width: 180px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.03);
  border-radius: 14px;

  padding: 14px 20px;
  transition: all 0.35s ease;
}

.partner-card img {
  max-height: 55px;
  max-width: 140px;
  object-fit: contain;
  filter: none;
  transition: all 0.35s ease;
}


/* Hover effect */
.partner-card:hover {
  background: rgba(255,232,77,0.08);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 20px 40px rgba(255,200,0,0.25);
}

.partner-card:hover img {
  filter: grayscale(0%) brightness(1.1);
}

/* Auto scroll animation */
@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* PREMIUM TESTIMONIALS */
.testimonials-premium {
  background: radial-gradient(circle at top, #111, #000);
  padding: 90px 30px;
  text-align: center;
}

.review-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 50px;
  flex-wrap: wrap;
}

.review-btn {
  background: linear-gradient(135deg, #ffe84d, #ffcc00);
  color: #111;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(255,200,0,0.5);
}

.outline-btn {
  border: 2px solid #ffe84d;
  color: #ffe84d;
  background: transparent;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
}

.testimonial-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(145deg, #0b0b0b, #151515);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.review-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  background: #ffe84d;
  color: #111;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  color: #ffd700;
  font-size: 14px;
}
/* TESTIMONIAL SLIDER */
.testimonial-slider-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #111, #000);
  text-align: center;
}

.slider-wrapper {
  overflow: hidden;
  margin-top: 50px;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slideReviews 40s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideReviews {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  width: 320px;
  background: linear-gradient(145deg, #0b0b0b, #161616);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  text-align: left;
}

.review-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffe84d;
  color: #111;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  color: gold;
  font-size: 14px;
}

.review-card p {
  font-size: 14.5px;
  color: #ddd;
  line-height: 1.6;
}
/* FINAL PREMIUM TESTIMONIALS */
.testimonial-final {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #111, #000);
  text-align: center;
}

.testimonial-actions {
  margin: 30px 0 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-review-primary {
  background: linear-gradient(135deg, #ffe84d, #ffcc00);
  color: #111;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255,200,0,0.5);
}

.btn-review-outline {
  border: 2px solid #ffe84d;
  color: #ffe84d;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.review-slider {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: reviewScroll 45s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  width: 320px;
  background: linear-gradient(145deg, #0b0b0b, #171717);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
  text-align: left;
}

.review-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffe84d;
  color: #111;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  color: gold;
  font-size: 14px;
}

.review-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #ddd;
}
/* ===============================
   POPUP OVERLAY (COMMON)
================================ */
.popup-overlay,
.notify-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ACTIVE STATE */
.popup-overlay.active,
.notify-overlay.active {
  display: flex;
}

/* ===============================
   POPUP BOX
================================ */
.popup-box,
.notify-popup {
  background: #0f0f0f;
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  text-align: center;
}

/* TITLES */
.popup-box h3,
.notify-popup h3 {
  color: #ffe84d;
  margin-bottom: 12px;
}

/* ===============================
   FORM INPUTS
================================ */
.popup-box input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

/* ===============================
   BUTTONS
================================ */
.whatsapp-btn,
.notify-whatsapp {
  display: block;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: #000;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
}

.notify-close,
.popup-back-btn {
  margin-top: 14px;
  background: transparent;
  border: 1px solid #777;
  color: #ccc;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}
/* ===============================
   FOOTER (FINAL FIXED VERSION)
================================ */

.footer {
  width: 100%;
  background: radial-gradient(circle at top, #111, #000);
  padding: 80px 70px 30px;
}

/* MAIN GRID */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 80px;

  align-items: flex-start;
}

/* HEADINGS */
.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

/* TEXT */
.footer-col p {
  font-size: 15px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 14px;
}

/* LISTS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 12px;
}

/* LINKS */
.footer-col ul li a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fdf254;
}

/* REVIEW BUTTON */
.footer-review-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 30px;
  background: #fdf254;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(253,242,84,0.45);
  transition: transform 0.3s ease;
}

.footer-review-btn:hover {
  transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 25px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }
}


/* BRAND */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: #fdf254;
  color: #000;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand h3 {
  color: #fff;
  font-size: 20px;
}

.brand h3 span {
  color: #fdf254;
}

.brand p {
  margin-bottom: 22px;
}

/* REVIEW BUTTON */
.footer-review-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #fdf254;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(253,242,84,0.5);
}

.footer-review-btn:hover {
  transform: translateY(-3px);
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 12px;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 25px 25px;
  }
}
#ultra-intro {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: none !important;
}

/* ===============================
   MORE SERVICES – PREMIUM CTA
================================ */

.more-services-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at top, #111, #000);
}

.more-services-card {
  max-width: 600px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;

  background: linear-gradient(145deg, #0b0b0b, #161616);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.8),
    0 0 40px rgba(255,232,77,0.08);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.more-services-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.9),
    0 0 70px rgba(255,232,77,0.25);
}

.more-services-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.more-services-card p {
  font-size: 16px;
  color: #cfcfcf;
  margin-bottom: 30px;
}

/* CTA BUTTON */
.more-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 34px;
  border-radius: 40px;

  background: linear-gradient(135deg, #ffe84d, #ffcc00);
  color: #111;

  font-size: 16px;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(255,200,0,0.45);
  transition: all 0.3s ease;
}

.more-services-btn span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.more-services-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.more-services-btn:hover span {
  transform: translateX(6px);
}
/* ===============================
   TRUSTED PARTNERS – PREMIUM
================================ */

.partners-premium {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(255,232,77,0.12), transparent 60%),
    radial-gradient(circle at bottom, #111, #000);
  overflow: hidden;
}

/* HEADER */
.partners-header {
  text-align: center;
  margin-bottom: 70px;
}

.partners-header h2 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #fff;
}

.partners-header p {
  font-size: 16px;
  color: #bdbdbd;
}

/* GLOW STRIP */
.partners-glow-wrap {
  position: relative;
  padding: 50px 0;
}

.partners-glow-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,232,77,0.15),
    transparent
  );
  filter: blur(40px);
  pointer-events: none;
}

/* TRACK */
.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: partnerScroll 30s linear infinite;
}

/* CARD */
.partner-card {
  min-width: 190px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(145deg, #0b0b0b, #151515);
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.6),
    inset 0 0 0 rgba(255,232,77,0);

  transition: all 0.4s ease;
}

/* LOGO */
.partner-card img {
  max-height: 70px;
  max-width: 180px;
  object-fit: contain;

  filter: saturate(1.05) contrast(1.05);

  transition: transform 0.4s ease;
}


/* HOVER MAGIC */
.partner-card:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.9),
    0 0 45px rgba(255,232,77,0.45);
}

.partner-card:hover img {
  filter: grayscale(0%) brightness(1.15);
}

/* AUTO SCROLL */
@keyframes partnerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ===============================
   FINAL CTA SECTION
================================ */
.final-cta {
  background: radial-gradient(circle at top, #111, #000);
  padding: 90px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.final-cta-inner {
  max-width: 900px;
  margin: auto;
}

.final-cta h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 17px;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 36px;
}

.final-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.cta-primary {
  background: linear-gradient(135deg, #ffe84d, #ffcc00);
  color: #111;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(255,200,0,0.45);
  transition: transform 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-4px);
}

.cta-outline {
  border: 2px solid #ffe84d;
  color: #ffe84d;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}
.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,232,77,0.6),
    transparent
  );
}
/* ===============================
   LOCATIONS SECTION FIX
================================ */

.locations-section {
  padding: 80px 6%;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #bbb;
  margin-bottom: 50px;
}

/* GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.location-card {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05),
              0 25px 60px rgba(0,0,0,0.7);
  transition: transform .35s ease, box-shadow .35s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 90px rgba(253,242,84,0.12);
}

/* MAP FIX */
.location-card iframe {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  margin-top: 18px;
}

/* COMING SOON */
.coming-soon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #111, #000);
}

.coming-soon h3 {
  color: #fdf254;
  font-size: 32px;
  margin-bottom: 10px;
}

.coming-soon p {
  color: #ccc;
  max-width: 320px;
}

/* BUTTON */
.coming-soon .btn,
.location-card .btn {
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   LOCATIONS GRID – FORCE SAME ROW
================================ */

/* Desktop: ALL 4 IN ONE ROW */
.locations-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 FORCE 4 CARDS */
  gap: 35px;
  align-items: stretch;
}

/* Card consistency */
.location-card,
.location-card.coming-soon {
  min-height: 460px; /* 👈 SAME HEIGHT */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Map wrapper consistency */
.map-wrap iframe,
.location-card iframe {
  width: 100%;
  height: 260px; /* 👈 SAME MAP HEIGHT */
  border-radius: 14px;
  border: 0;
}

/* COMING SOON CENTER FIX */
.location-card.coming-soon {
  justify-content: center;
  text-align: center;
}

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

/* Tablet */
@media (max-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
.location-card.coming-soon {
  box-shadow: 0 0 45px rgba(255,232,77,0.35);
}
/* ===============================
   CITY ROAD ANIMATION
================================ */

.city-road {
  position: relative;
  height: 60px;
  margin: 40px auto 60px;
  overflow: hidden;
  max-width: 1400px;
}

.road-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,232,77,0.4),
    transparent
  );
  transform: translateY(-50%);
}

.car-icon {
  position: absolute;
  top: 50%;
  left: -60px;
  font-size: 32px;
  transform: translateY(-50%);
  animation: driveCar 14s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255,232,77,0.7));
}

/* Car movement */
@keyframes driveCar {
  0% { left: -60px; }
  100% { left: 100%; }
}

/* ===============================
   LOCATION CARD PREMIUM EFFECTS
================================ */

.location-card {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(255,232,77,0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.location-card:hover {
  transform: translateY(-10px);
}

.location-card:hover::after {
  box-shadow: 0 0 45px rgba(255,232,77,0.35);
}

/* Map hover zoom */
.location-card iframe {
  transition: transform 0.6s ease;
}

.location-card:hover iframe {
  transform: scale(1.03);
}

/* ===============================
   COMING SOON SPECIAL PULSE
================================ */

.location-card.coming-soon {
  background:
    radial-gradient(circle at top, #222, #000);
}

.location-card.coming-soon .notify-btn {
  animation: pulseGlow 2.2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(255,232,77,0.6); }
  70% { box-shadow: 0 0 35px rgba(255,232,77,0.6); }
  100% { box-shadow: 0 0 0 rgba(255,232,77,0.6); }
}

/* ===============================
   MOBILE SAFETY
================================ */
@media (max-width: 768px) {
  .city-road {
    display: none;
  }
}
/* ===============================
   LOCATION CARD HEADER UPGRADE
================================ */

.location-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
}

/* Yellow accent bar */
.location-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 80%;
  background: #ffe84d;
  border-radius: 10px;
}

/* Address text polish */
.location-card p {
  color: #d0d0d0;
  font-size: 14.8px;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Divider line */
.location-card p::after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, #ffe84d, transparent);
  margin-top: 16px;
}

/* Phone button style */
.location-card .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 232, 77, 0.12);
  color: #ffe84d;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 232, 77, 0.35);
}

.location-card .call-btn:hover {
  background: #ffe84d;
  color: #000;
  box-shadow: 0 0 25px rgba(255,232,77,.6);
  transform: translateY(-2px);
}

/* Small phone icon bounce */
.location-card .call-btn::before {
  content: "📞";
  animation: ring 1.5s infinite ease-in-out;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
}
.location-card.coming-soon {
  position: relative;
  overflow: hidden;
  animation: cardBreath 6s ease-in-out infinite;
  box-shadow:
    0 0 40px rgba(255, 221, 51, 0.08),
    inset 0 0 40px rgba(255, 221, 51, 0.04);
}

/* Smooth breathing glow */
@keyframes cardBreath {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(255, 221, 51, 0.08),
      inset 0 0 40px rgba(255, 221, 51, 0.04);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 0 70px rgba(255, 221, 51, 0.18),
      inset 0 0 60px rgba(255, 221, 51, 0.08);
    transform: translateY(-4px);
  }
}
.location-card.coming-soon::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 4px;
  height: 60px;
  background: linear-gradient(
    180deg,
    transparent,
    #ffdd33,
    transparent
  );
  box-shadow: 0 0 20px #ffdd33;
}
.notify-btn {
  background: #ffeb3b;
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  animation: buttonBreath 3s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(255, 235, 59, 0.6);
}

/* Button breathing pulse */
@keyframes buttonBreath {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 235, 59, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 235, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 235, 59, 0);
  }
}

/* Hover lift */
.notify-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(255, 235, 59, 0.4);
}
.location-card.coming-soon {
  animation:
    cardBreath 6s ease-in-out infinite,
    floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.testimonial-title {
  color: #ffeb3b;
  text-align: center;
  text-shadow: 0 0 25px rgba(255,235,59,0.35);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% {
    text-shadow: 0 0 20px rgba(255,235,59,0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(255,235,59,0.7);
  }
}
.btn-review-primary,
.btn-review-outline {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift */
.btn-review-primary:hover,
.btn-review-outline:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255,235,59,0.4);
}

/* Shine effect */
.btn-review-primary::after,
.btn-review-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: all 0.6s ease;
}

.btn-review-primary:hover::after,
.btn-review-outline:hover::after {
  left: 120%;
}
.review-slider {
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  gap: 24px;
  animation: reviewScroll 40s linear infinite;
}

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 22px;
  transition: all 0.35s ease;
  box-shadow: inset 0 0 0 rgba(255,235,59,0);
}

.review-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 30px rgba(255,235,59,0.25),
    inset 0 0 20px rgba(255,235,59,0.15);
}
.stars {
  color: #ffeb3b;
  animation: starTwinkle 1.8s infinite alternate;
}

@keyframes starTwinkle {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
/* TUNNEL CONTAINER */
.review-tunnel {
  position: relative;
  margin: 60px auto 0;
  padding: 40px 20px;
  max-width: 1400px;
  border-radius: 24px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.4)),
    radial-gradient(circle at center, rgba(255,235,59,0.08), transparent 60%);

  box-shadow:
    inset 0 0 60px rgba(255,235,59,0.08),
    0 0 40px rgba(0,0,0,0.8);
}

/* FADE EDGES (START & END) */
.review-tunnel::before,
.review-tunnel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.review-tunnel::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.review-tunnel::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}
.review-track {
  display: flex;
  gap: 28px;
  animation: reviewScroll 45s linear infinite;
}

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  min-width: 320px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(0,0,0,0.7)
  );
  border-radius: 20px;
  padding: 24px;

  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.review-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 0 35px rgba(255,235,59,0.35),
    0 20px 40px rgba(0,0,0,0.8);
}
.review-road {
  border-top: 2px dashed rgba(255,235,59,0.3);
  margin-top: 30px;
  position: relative;
}
/* CALL ICON SHAKE */
.shake {
  display: inline-block;
  animation: callShake 0.5s infinite;
}

/* KEYFRAMES */
@keyframes callShake {
  0%   { transform: rotate(0deg); }
  5%   { transform: rotate(8deg); }
  10%  { transform: rotate(-8deg); }
  15%  { transform: rotate(6deg); }
  20%  { transform: rotate(-6deg); }
  25%  { transform: rotate(4deg); }
  30%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
.hero-buttons {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* COMMON CTA */
.cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.cta .icon {
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* =====================
   CALL NOW (PRIMARY)
===================== */
.call-now {
  background: linear-gradient(135deg, #1ed760, #22ff77);
  color: #000;
  box-shadow: 0 12px 30px rgba(34, 255, 119, 0.35);
}

.call-now:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px rgba(34, 255, 119, 0.55);
}

.call-now:hover .icon {
  animation: phoneShake 0.6s;
}

/* =====================
   VISIT BRANCH (OUTLINE)
===================== */
.visit-branch {
  background: rgba(255, 255, 255, 0.04);
  color: #ffe95a;
  border: 2px solid rgba(255, 233, 90, 0.6);
  backdrop-filter: blur(6px);
}

.visit-branch:hover {
  background: rgba(255, 233, 90, 0.12);
  box-shadow: 0 0 25px rgba(255, 233, 90, 0.45);
  transform: translateY(-2px);
}

.visit-branch:hover .icon {
  transform: translateY(-3px);
}

/* =====================
   PHONE SHAKE
===================== */
@keyframes phoneShake {
  0% { transform: rotate(0); }
  20% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(8deg); }
  80% { transform: rotate(-8deg); }
  100% { transform: rotate(0); }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .cta {
    justify-content: center;
    width: 100%;
  }
}
.more-services {
  background: linear-gradient(135deg, #ffcc00, #ffea70);
  color: #000;
  box-shadow: 0 12px 30px rgba(255, 220, 70, 0.35);
}

.more-services:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 45px rgba(255, 220, 70, 0.6);
}

.more-services:hover .icon {
  animation: toolBounce 0.6s ease;
}
.main-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ffd400, #fff2a8);
  box-shadow: 0 0 10px #ffd400;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.main-nav a:hover::after {
  width: 70%;
}
.main-nav a:hover {
  color: #ffd400;
  transform: translateY(-2px);
}
.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 212, 0, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-nav a:hover::before {
  opacity: 1;
}
.main-nav a.active {
  color: #ffd400;
}

.main-nav a.active::after {
  width: 80%;
}
.headlight-sweep-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.headlight-sweep-box::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -120%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    rgba(255, 212, 0, 0.35),
    transparent
  );
  transform: rotate(15deg);
  transition: left 0.8s ease;
  pointer-events: none;
}
.headlight-sweep-box:hover::before {
  left: 160%;
}
.headlight-sweep-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(255, 212, 0, 0.25);
}
.service-img img {
  transition: transform 0.6s ease;
}

.headlight-sweep-box:hover .service-img img {
  transform: scale(1.05);
}
.service-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.9)
    ),
    url("https://friendscaraccessories.com/assets/images/about.png");

  background-size: cover;
  background-position: center;
}

.service-hero h1 {
  font-size: 56px;
  font-weight: 900;
  color: #fdf254;
  margin-bottom: 14px;
}

.service-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}
.services-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, #0b0b0b, #161616);
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  text-decoration: none;
  color: #fff;

  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fdf254;
}

.service-card p {
  font-size: 14.5px;
  color: #ccc;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 35px 90px rgba(253,242,84,0.25);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 120px auto;
  max-width: 1200px;
}

.service-row img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.service-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fdf254;
  margin-bottom: 14px;
}

.service-text p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 22px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #ccc;
}

.feature-list .tick {
  margin-right: 8px;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse .service-text {
  direction: ltr;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}
/* SERVICES WRAPPER FIX */
.services-wrapper {
  max-width: 1200px;
  margin: 80px auto 0;
}

/* STOP CENTER ALIGN FOR SERVICE CONTENT */
.services-section {
  padding: 120px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #111, #000);
}
.service-row {
  margin: 80px auto; /* instead of 120px */
}
.service-row img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 1;
}
@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px auto;
  }
}


.services-title {
  font-size: 42px;
  font-weight: 800;
  color: #fdf254;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.services-subtitle {
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 17px;
  line-height: 1.7;
  color: #cfcfcf;
}

.services-subtitle::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, #fdf254, transparent);
  border-radius: 10px;
}
.services-wrapper {
  margin-top: 40px; /* instead of big gaps */
}
/* ===============================
   OUR WORK – PREMIUM ANIMATED
================================ */

.work-section {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(255,235,59,0.12), transparent 60%),
    linear-gradient(180deg, #0b0b0b, #000);
  overflow: hidden;
}

/* HEADER */
.work-header {
  text-align: center;
  margin-bottom: 60px;
}

.work-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #ffeb3b;
  margin-bottom: 12px;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.work-header p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 26px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* SOCIAL BUTTONS */
.work-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.work-btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, #ffeb3b, #ffcc00);
  box-shadow: 0 12px 35px rgba(255,235,59,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 45px rgba(255,235,59,0.65);
}

/* ===============================
   CAROUSEL
================================ */

.work-carousel {
  overflow: hidden;
  margin-top: 60px;
}

.work-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: workScroll 40s linear infinite;
}

/* pause on hover */
.work-carousel:hover .work-track {
  animation-play-state: paused;
}

/* VIDEO CARD */
.work-card {
  min-width: 320px;
  height: 560px;
  background: linear-gradient(145deg, #0b0b0b, #151515);
  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.8),
    inset 0 0 0 rgba(255,235,59,0);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* hover lift */
.work-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    0 35px 90px rgba(0,0,0,0.9),
    0 0 45px rgba(255,235,59,0.35);
}

/* iframe full fit */
.work-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* AUTO SCROLL */
@keyframes workScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* INTRO ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE SAFETY
================================ */
@media (max-width: 768px) {
  .work-card {
    min-width: 280px;
    height: 480px;
  }
}
/* FOOTER LOGO */
.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.15);
}

.footer-socials img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

/* HOVER EFFECT */
.footer-socials a:hover {
  background: #FFD700;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.footer-socials a:hover img {
  filter: invert(0);
}
/* WHATSAPP CTA BUTTON */
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 40px;
  background: #25D366;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.cta-whatsapp img {
  width: 20px;
  height: 20px;
}

.cta-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.7);
}
.btn-call-yellow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 36px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #FFD700,
    #FFC400,
    #FFB800
  );

  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;

  box-shadow:
    0 10px 25px rgba(255, 200, 0, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.25);

  transition: all 0.35s ease;
}

.btn-call-yellow .call-icon {
  font-size: 18px;
}

/* Hover – premium lift + glow */
.btn-call-yellow:hover {
  transform: translateY(-4px) scale(1.04);

  box-shadow:
    0 18px 45px rgba(255, 200, 0, 0.75),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}

/* Click feedback */
.btn-call-yellow:active {
  transform: scale(0.97);
}
@keyframes phoneShake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(12deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(8deg); }
}

.btn-call-yellow .call-icon {
  animation: phoneShake 1.8s infinite;
}
.call-btn,
.call-btn:visited,
.call-btn:hover,
.call-btn:active {
  text-decoration: none;
}
/* ===============================
   WHAT WE OFFER – ALIGNMENT FIX
================================ */

.offers-section {
  padding: 80px 8% 60px;
  text-align: center;
}

.offers-title {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 50px;
  position: relative;
}

/* subtle underline */
.offers-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
  display: block;
  margin: 14px auto 0;
  opacity: 0.8;
}

/* GRID ALIGNMENT */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* CARD CENTERING */
.service-card {
  text-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .offers-title {
    font-size: 30px;
  }

  .offers-section {
    padding: 60px 6%;
  }
}
/* ===============================
   PREMIUM FLOATING WHATSAPP
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 9999;

  width: 64px;
  height: 64px;
  border-radius: 50%;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 0 rgba(37, 211, 102, 0.6),
    0 18px 45px rgba(37, 211, 102, 0.55);

  animation: whatsappPulse 2.5s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover lift */
.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 0 35px rgba(37, 211, 102, 0.8),
    0 25px 60px rgba(37, 211, 102, 0.8);
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  left: 76px;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

/* Tooltip show */
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse animation */
@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.6),
      0 18px 45px rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(37, 211, 102, 0),
      0 18px 45px rgba(37, 211, 102, 0.5);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 18px 45px rgba(37, 211, 102, 0.5);
  }
}

/* Mobile safety */
@media (max-width: 600px) {
  .whatsapp-tooltip {
    display: none;
  }
}
.whatsapp-icon {
  width: 30px;
  height: 30px;
  color: #fff;
}
/* ===============================
   CHAT BOT STYLES
================================ */

.chat-bot {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

/* Floating Button */
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 26px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Chat Box */
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: #0f0f0f;
  border-radius: 16px;
  overflow: hidden;
  display: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* Header */
.chat-header {
  background: #FFD700;
  color: #000;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chat-header button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Body */
.chat-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-msg {
  font-size: 14px;
  color: #ccc;
}

/* Inputs */
.chat-body input,
.chat-body textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  font-size: 14px;
}

.chat-body textarea {
  resize: none;
  height: 60px;
}

/* Send Button */
.send-btn {
  margin-top: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}
.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.85)
    ),
    url("/demo/bg.jpg") center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* ===============================
   CONTACT – CLEAN PREMIUM STYLE
================================ */
.contact-premium {
  padding: 110px 40px;
  background: radial-gradient(circle at top, #111, #000);
}

.contact-wrap {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

/* CARD */
.contact-card {
  position: relative;
  padding: 42px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0e0e0e, #161616);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* SOFT HOVER (NOT BRIGHT) */
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 80px rgba(0,0,0,0.85),
    0 0 25px rgba(253,242,84,0.15);
}

/* TITLES */
.contact-card h2,
.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 26px;
  color: #fdf254;
}

/* INPUTS – FIXED & CLICKABLE */
.contact-card input {
  width: 100%;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card input::placeholder {
  color: #9a9a9a;
}

.contact-card input:focus {
  outline: none;
  border-color: #fdf254;
  box-shadow: 0 0 0 2px rgba(253,242,84,0.18);
}

/* BUTTON – CLEAN & CLICKABLE */
.contact-card .notify-btn {
  width: 100%;
  padding: 16px;
  border-radius: 36px;
  font-size: 16px;
  font-weight: 700;
  background: #fdf254;
  color: #111;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card .notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(253,242,84,0.35);
}

/* INFO TEXT */
.contact-info p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
}

/* MAP */
.contact-info iframe {
  margin-top: 22px;
  width: 100%;
  height: 250px;
  border-radius: 16px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

/* INFO LIST */
.contact-info p {
  font-size: 15.5px;
  color: #ddd;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info iframe {
  margin-top: 25px;
  width: 100%;
  height: 260px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   CONTACT RIGHT SIDE – PREMIUM PANEL
================================ */
.contact-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

/* POINT LIST */
.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-points li {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

/* STATS */
.contact-stats {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.contact-stats div {
  background: rgba(255,255,255,0.04);
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  flex: 1;
}

.contact-stats strong {
  display: block;
  font-size: 22px;
  color: #fdf254;
  font-weight: 800;
}

.contact-stats span {
  font-size: 13px;
  color: #bbb;
}

/* CTA BUTTONS */
.contact-cta {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.side-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.side-btn.call {
  background: transparent;
  border: 1px solid #fdf254;
  color: #fdf254;
}

.side-btn.whatsapp {
  background: #25D366;
  color: #111;
}

.side-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
/* ===============================
   COMING SOON – PREMIUM UPGRADE
================================ */
.premium-soon {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  overflow: hidden;
}

/* ICON */
.soon-icon {
  font-size: 46px;
  margin-bottom: 6px;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

/* BADGE */
.soon-badge {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #fdf254;
}

/* TITLE */
.soon-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}

/* TEXT */
.soon-text {
  font-size: 15.5px;
  color: #ccc;
  line-height: 1.7;
  max-width: 260px;
}

/* DIVIDER */
.soon-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fdf254, transparent);
  margin: 14px 0 6px;
}

/* BUTTON BIGGER */
.notify-big {
  padding: 18px 44px;
  font-size: 17px;
  border-radius: 40px;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(253,242,84,0.45);
}

/* SUBTLE BOTTOM GLOW (FILLS EMPTY SPACE) */
.soon-glow {
  position: absolute;
  bottom: -40px;
  width: 140%;
  height: 120px;
  background: radial-gradient(circle, rgba(253,242,84,0.18), transparent 70%);
  filter: blur(35px);
}

/* PULSE ANIMATION */
@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}
.soon-divider {
  display: none !important;
}


/* ===============================
   WORK PAGE – SEPARATED SECTIONS
================================ */

.work-section {
  padding: 80px 6%;
  background: #000;
}

.work-header {
  text-align: center;
  margin-bottom: 60px;
}

.work-header h2 {
  color: #fdf254;
  font-size: 42px;
}

.work-header p {
  color: #bbb;
}

/* BLOCKS */
.work-block {
  margin-bottom: 80px;
}

.work-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.work-block-header h3 {
  color: #fff;
  font-size: 26px;
}

/* BUTTONS */
.work-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.work-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.work-btn.youtube {
  background: #ff0000;
  color: #fff;
}

/* CAROUSEL */
.work-carousel {
  overflow-x: auto;
}

.work-track {
  display: flex;
  gap: 22px;
}

/* CARDS */
.work-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.work-card iframe {
  border: 0;
}

/* INSTAGRAM REELS */
.work-card.reel {
  width: 280px;
  height: 500px;
}

.work-card.reel iframe {
  width: 100%;
  height: 100%;
}

/* YOUTUBE VIDEOS */
.work-card.video {
  width: 420px;
  height: 240px;
}

.work-card.video iframe {
  width: 100%;
  height: 100%;
}

/* HIDE SCROLLBAR (CLEAN LOOK) */
.work-carousel::-webkit-scrollbar {
  height: 0;
}
/* ===============================
   PLATFORM HEADINGS (IG / YT)
================================ */

.platform-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.platform-title img {
  width: 34px;
  height: 34px;
}

/* Instagram styling */
.instagram-title h3 {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-title img {
  filter: drop-shadow(0 0 6px rgba(221,42,123,0.6));
}

/* YouTube styling */
.youtube-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.youtube-title img {
  filter: drop-shadow(0 0 6px rgba(255,0,0,0.7));
}
/* ===============================
   PLATFORM SECTION SEPARATION
================================ */

/* Give each platform its own space */
.work-block {
  margin-top: 80px;
}

/* Extra space after Instagram reels */
.instagram-block {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* YouTube section starts clean */
.youtube-block {
  padding-top: 60px;
}

/* Headings alignment */
.work-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Platform title alignment */
.platform-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Prevent overlap from embeds */
.work-carousel {
  position: relative;
  z-index: 1;
}
/* YouTube section visual emphasis */
.youtube-title {
  padding-left: 16px;
  border-left: 4px solid #ff0000;
}

.instagram-title {
  padding-left: 16px;
  border-left: 4px solid #dd2a7b;
}
/* ===============================
   FIX SVG LOGO VISIBILITY (IG / YT)
================================ */

/* Force SVG color on dark background */
.platform-title img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1); /* makes SVG white */
}

/* Instagram brand glow */
.instagram-title img {
  filter: brightness(0) invert(1)
          drop-shadow(0 0 6px rgba(221,42,123,0.8))
          drop-shadow(0 0 14px rgba(221,42,123,0.4));
}

/* YouTube brand glow */
.youtube-title img {
  filter: brightness(0) invert(1)
          drop-shadow(0 0 6px rgba(255,0,0,0.8))
          drop-shadow(0 0 14px rgba(255,0,0,0.4));
}
/* ===============================
   INSTAGRAM THUMBNAIL GRID
================================ */

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* Card */
.thumb-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Thumbnail image */
.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  opacity: 0.9;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover effects */
.thumb-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 80px rgba(221,42,123,0.45);
}

.thumb-card:hover .play-overlay {
  background: rgba(0,0,0,0.15);
  transform: scale(1.1);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .play-overlay {
    font-size: 56px;
  }
}
/* ===============================
   REMOVE UNCOMFORTABLE GAP
================================ */

/* Tighten Instagram section bottom */
.instagram-block {
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
}
/* Pull YouTube section closer */
.youtube-block {
  margin-top: 40px !important;   /* was too large before */
  padding-top: 0 !important;
}
.youtube-block::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: rgba(255,0,0,0.6);
  margin-bottom: 24px;
}
/* ===============================
   YOUTUBE PORTRAIT VIDEOS (9:16)
================================ */

.work-card.video {
  width: 280px;          /* portrait width */
  height: 500px;         /* portrait height */
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.work-card.video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* ===============================
   INSTAGRAM & YOUTUBE PORTRAIT SIZE
================================ */

/* Instagram thumbnail cards */
.thumb-card {
  width: 260px;
  height: 460px;           /* shorter than before */
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image fit */
.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* YouTube portrait thumbnails (match IG) */
.video-thumb {
  width: 260px;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

/* ===============================
   FIX EXCESS HORIZONTAL SPACE
================================ */

/* If using GRID */
.thumbnail-grid {
  gap: 18px !important;   /* reduce from large gap */
  justify-content: start;
}

/* If using FLEX (carousel style) */
.work-track {
  gap: 18px !important;   /* tighten spacing */
  justify-content: flex-start !important;
}
.thumb-card,
.video-thumb {
  margin: 0 !important;
}
.thumbnail-grid {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
}
/* ===============================
   YOUTUBE BACKGROUND RECTANGLE
================================ */
.youtube-wrapper {
  margin: 60px auto;
  padding: 28px 24px 34px;
  max-width: 95%;

  border-radius: 22px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.75)),
    #000;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 0 1px rgba(255,0,0,0.18),
    0 20px 60px rgba(0,0,0,0.85);
}

/* Header alignment */
.youtube-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.youtube-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.yt-icon {
  color: #ff0000;
  font-size: 30px;
}

/* Visit button */
.youtube-btn {
  background: #ff0000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255,0,0,0.5);
}

/* ===============================
   INSTAGRAM SECTION ALIGNMENT
================================ */
.instagram-section {
  padding: 60px 0 50px;
}
.reels-header {
  max-width: 95%;
  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reels-header h3 {
  margin: 0;
  line-height: 1;
}
.reels-wrapper {
  max-width: 95%;
  margin: 0 auto;
}

.reels-track {
  display: flex;
  align-items: center;     /* 🔑 vertical alignment */
  gap: 18px;
  padding: 10px 0;

  overflow: hidden;
}
.reel-card {
  width: 220px;
  aspect-ratio: 9 / 16;
  flex-shrink: 0;

  border-radius: 18px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}
.reels-track::after {
  content: "";
  display: block;
  width: 1px;
}
.reel-card:hover {
  transform: translateY(-6px);
  transition: 0.25s ease;
}
/* ===============================
   INSTAGRAM REELS – AUTO MOVE
================================ */

.instagram-block {
  margin-top: 60px;
}

/* viewport */
.instagram-block .thumbnail-grid {
  display: flex;
  gap: 18px;
  width: max-content;

  overflow: hidden;
  white-space: nowrap;

  animation: instaScroll 35s linear infinite;
}

/* pause on hover */
.instagram-block .thumbnail-grid:hover {
  animation-play-state: paused;
}

/* thumbnail cards */
.instagram-block .thumb-card {
  width: 220px;
  aspect-ratio: 9 / 16;
  flex-shrink: 0;

  border-radius: 18px;
  overflow: hidden;
  position: relative;

  background: #111;
  box-shadow:
    0 12px 35px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* image fit */
.instagram-block .thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* play overlay */
.instagram-block .play-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.75)
  );
}

.instagram-block .play-overlay::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 54px;
  color: white;
  opacity: 0.9;
}

/* animation */
@keyframes instaScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===============================
   INFINITE LOOP BASE (IG + YT)
================================ */

.loop-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.loop-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: loopScroll 40s linear infinite;
}

.loop-wrapper:hover .loop-track {
  animation-play-state: paused;
}

@keyframes loopScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.instagram-block .thumbnail-grid {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: loopScroll 35s linear infinite;
}

.instagram-block .thumbnail-grid:hover {
  animation-play-state: paused;
}
.youtube-loop {
  overflow: hidden;
  width: 100%;
}

.youtube-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: loopScroll 45s linear infinite;
}

.youtube-loop:hover .youtube-track {
  animation-play-state: paused;
}
/* ===============================
   TRUE SEAMLESS INSTAGRAM LOOP
================================ */

.instagram-loop {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.instagram-track {
  display: flex;
  gap: 18px;
  width: fit-content;

  animation: insta-marquee 30s linear infinite;
}

/* pause on hover */
.instagram-loop:hover .instagram-track {
  animation-play-state: paused;
}

/* cards */
.thumb-card {
  width: 220px;
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
}

/* 👑 THE MAGIC */
@keyframes insta-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 9px));
  }
}
/* ===============================
   INSTAGRAM RECTANGLE CONTAINER
================================ */

.instagram-rect {
  margin: 80px auto;
  padding: 40px 28px 46px;
  max-width: 96%;

  border-radius: 26px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(0,0,0,0.85)
    ),
    #000;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 0 1px rgba(255, 0, 150, 0.15),
    0 30px 80px rgba(0,0,0,0.85);
}
.instagram-rect .thumbnail-grid {
  margin-top: 26px;
  padding: 12px 0;

  overflow: hidden;
}
.instagram-rect::before,
.instagram-rect::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

.instagram-rect::before {
  left: 0;
  background: linear-gradient(to right, #000 30%, transparent);
}

.instagram-rect::after {
  right: 0;
  background: linear-gradient(to left, #000 30%, transparent);
}
.thumb-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.thumb-card:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}
/* ================= INSTAGRAM RECT BACKGROUND ================= */
.instagram-rect {
  margin: 90px auto;
  padding: 36px 28px 42px;
  max-width: 95%;
  border-radius: 26px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.95)),
    #000;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.9),
    inset 0 0 0 1px rgba(255,0,140,0.15);

  position: relative;
}

/* ================= VIEWPORT ================= */
.instagram-block .thumbnail-grid {
  display: flex;
  gap: 22px;
  width: max-content;

  animation: instaScroll 45s linear infinite;
}

/* Hide overflow cleanly */
.instagram-block {
  overflow: hidden;
  position: relative;
}

/* ================= EDGE FADE ================= */
.instagram-block::before,
.instagram-block::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 5;
  pointer-events: none;
}

.instagram-block::before {
  left: 0;
  background: linear-gradient(to right, #000 25%, transparent);
}

.instagram-block::after {
  right: 0;
  background: linear-gradient(to left, #000 25%, transparent);
}

/* ================= ANIMATION ================= */
@keyframes instaScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= THUMB CARD ================= */
.thumb-card {
  width: 230px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.7);

  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.thumb-card:hover {
  transform: scale(1.05);
}

/* ================= PLAY ICON ================= */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-overlay::before {
  content: "▶";
  font-size: 42px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.instagram-block::before,
.instagram-block::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;                 /* 🔽 VERY SHORT */
  z-index: 2;
  pointer-events: none;
}

.instagram-block::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45),           /* 🔽 much lighter */
    transparent
  );
}

.instagram-block::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.45),           /* 🔽 much lighter */
    transparent
  );
}

.work-block-header {
  position: relative;
  z-index: 5;
}
.youtube-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.youtube-title .yt-icon {
  width: 32px;
  height: 32px;
  filter: invert(17%) sepia(96%) saturate(7486%) hue-rotate(356deg)
          brightness(95%) contrast(115%); /* Real YouTube Red */
}

.youtube-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.youtube-title .yt-icon {
  filter: invert(17%) sepia(96%) saturate(7486%) hue-rotate(356deg)
          brightness(95%) contrast(115%);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
}
/* GALLERY HERO */
.gallery-hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.gallery-hero h1 {
  font-size: 52px;
  color: #fdf254;
  margin-bottom: 10px;
}

.gallery-hero p {
  color: #ccc;
  font-size: 18px;
}


/* CATEGORIES */
.gallery-categories {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-categories button {
  background: #111;
  color: #fff;
  border: 1px solid #222;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
}

.gallery-categories button.active,
.gallery-categories button:hover {
  background: #fdf254;
  color: #000;
}


/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  padding: 0 40px 80px;
}


/* CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}


/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fdf254;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: #ddd;
  font-size: 14px;
}


/* CTA */
.gallery-cta {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #111, #000);
}

.gallery-cta h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallery-cta p {
  color: #bbb;
  margin-bottom: 25px;
}

.cta-btn {
  background: #fdf254;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 10px;
}

.cta-whatsapp {
  background: #25d366;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
}
.blog-hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.blog-hero h1 {
  font-size: 48px;
  color: #fdf254;
  margin-bottom: 10px;
}

.blog-hero p {
  color: #ccc;
  font-size: 18px;
}

.blog-list {
  max-width: 900px;
  margin: auto;
  padding: 0 20px 80px;
}

.blog-card {
  background: linear-gradient(180deg, #111, #000);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 0 40px rgba(0,0,0,.6);
}

.blog-card h2 {
  color: #fdf254;
  margin-bottom: 8px;
}

.blog-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.blog-card p,
.blog-card li {
  color: #ddd;
  line-height: 1.8;
}

.blog-card ul {
  margin: 15px 0 15px 20px;
}

.blog-cta {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #111, #000);
}

.blog-cta h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.blog-cta p {
  color: #bbb;
  margin-bottom: 25px;
}
.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= BLOG IMAGES ================= */
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

/* ===============================
   MOBILE CLEAN & PROFESSIONAL MODE
================================ */
@media (max-width: 768px) {

  /* 2️⃣ Stop reveal effects (mobile = instant) */
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  /* 3️⃣ Header cleanup */
  .header {
    padding: 10px 16px;
    height: auto;
  }

  .header nav {
    display: none; /* hamburger later if needed */
  }

  .header-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* 4️⃣ Hero cleanup */
  .hero {
    min-height: auto;
    padding: 110px 16px 60px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 15px;
  }

  /* 5️⃣ Services section cleanup */
  .services-section {
    padding: 70px 16px 40px;
    text-align: left;
  }

  .services-title {
    font-size: 30px;
    text-align: center;
  }

  .services-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
    text-align: center;
  }

  /* 6️⃣ Service rows → clean stack */
  .service-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px auto;
  }

  .service-row img {
    border-radius: 14px;
    box-shadow: none;
  }

  .service-text h2 {
    font-size: 22px;
  }

  .service-text p {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .feature-list li {
    font-size: 14px;
  }

  /* 7️⃣ Remove hover-only effects */
  .headlight-sweep-box::before,
  .headlight-sweep-box:hover,
  .service-item:hover,
  .partner-card:hover,
  .review-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* 9️⃣ Buttons clean */
  .cta,
  .btn,
  .btn-review-primary,
  .btn-review-outline {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  /* 🔟 Footer cleanup */
  .footer {
    padding: 50px 20px 25px;
  }
}


/* ===============================
   MOBILE MENU – FINAL FIX
================================ */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fdf254;
  cursor: pointer;
  z-index: 10001;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .header nav {
    display: none;
  }
}

/* FULLSCREEN MENU - FIXED */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;

  display: none; /* fully hidden */

  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

/* ACTIVE */
.mobile-nav.active {
  display: flex;
}

/* LINKS */
.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: #fdf254;
}

/* CLOSE BUTTON */
.close-mobile-nav {
  position: absolute;
  top: 20px;
  right: 20px;

  background: none;
  border: none;
  font-size: 28px;
  color: #fdf254;
  cursor: pointer;
}
/* =============================
   FIX MOBILE MENU OVER HEADER
================================ */


/* Make sure menu is above everything */
.mobile-nav {
  z-index: 9999;
}

/* Force close button always visible */
.close-mobile-nav {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;

  background: rgba(0,0,0,0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: #fdf254;
  border: none;
  cursor: pointer;
}
/* ===============================
   PREMIUM MOBILE MENU UI
================================ */

.mobile-nav {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  padding: 80px 20px 40px;
}

/* Brand */
.mobile-menu-brand {
  text-align: center;
  margin-bottom: 35px;
}

.mobile-menu-brand img {
  width: 120px;
  margin-bottom: 10px;
}

.mobile-menu-brand p {
  font-size: 13px;
  letter-spacing: 1px;
  color: #aaa;
}

/* Divider feel */
.mobile-menu-brand::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fdf254, transparent);
  margin: 16px auto 0;
}

/* Menu links */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}

.mobile-menu-links a {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
}

/* Cute underline on tap */
.mobile-menu-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fdf254;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-menu-links a:active::after {
  width: 40%;
}

/* Bottom action buttons */
.mobile-menu-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.mobile-menu-actions a {
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.menu-call {
  background: #fdf254;
  color: #000;
}

.menu-whatsapp {
  background: #25d366;
  color: #000;
}
/* ===============================
   MOBILE SERVICES CLEANUP
================================ */
@media (max-width: 768px) {

  /* Section spacing */
  .services-section {
    padding: 50px 16px;
  }

  /* Each service card */
  .service-row {
    margin-bottom: 40px;
  }

  /* Card container */
  .service-row .service-text {
    padding: 22px 18px;
  }

  /* Headings smaller & cleaner */
  .service-text h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  /* Description text */
  .service-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
}
@media (max-width: 768px) {

  /* Hide extra feature pills */
  .feature-list li:nth-child(n+3) {
    display: none;
  }

  /* Center remaining pills */
  .feature-list {
    justify-content: center;
    gap: 10px;
  }

}
@media (max-width: 768px) {

  .service-row img {
    border-radius: 14px;
    margin-bottom: 16px;
    filter: brightness(0.9);
  }

}
@media (max-width: 768px) {

  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 54px;
    height: 54px;
  }

}
@media (max-width: 768px) {

  .service-text a {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px 18px;
  }

}
/* =====================================
   FORCE MOBILE SERVICES CLEAN DESIGN
   (OVERRIDES EVERYTHING)
===================================== */
@media (max-width: 768px) {

  /* FORCE section spacing */
  .services-section {
    padding: 40px 14px !important;
  }

  /* FORCE card spacing */
  .service-row {
    margin-bottom: 36px !important;
  }

  /* FORCE image size */
  .service-row img {
    max-height: 220px !important;
    object-fit: cover !important;
    margin-bottom: 14px !important;
    border-radius: 14px !important;
  }

  /* FORCE text container */
  .service-text {
    padding: 18px 16px !important;
  }

  /* FORCE title size */
  .service-text h2 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  /* FORCE description SHORT */
  .service-text p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;

    /* LIMIT TEXT */
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* FORCE feature pills layout */
  .feature-list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  /* HIDE EXTRA PILLS */
  .feature-list li:nth-child(n+3) {
    display: none !important;
  }

  /* FORCE pill size */
  .feature-list li {
    font-size: 13px !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
  }

  /* FORCE CTA link */
  .service-text a {
    display: inline-block !important;
    margin-top: 8px !important;
    font-size: 14px !important;
    padding: 10px 18px !important;
  }

  /* FIX WhatsApp overlap */
  .whatsapp-float {
    bottom: 16px !important;
    left: 16px !important;
    width: 52px !important;
    height: 52px !important;
  }
}
/* =================================================
   MOBILE UX POLISH – CLEAN & PROFESSIONAL
================================================= */
@media (max-width: 768px) {

  /* Global text rhythm */
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Section spacing */
  .section,
  .services-section,
  .work-section,
  .testimonials-section,
  .locations-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* Headings hierarchy */
  h1 { font-size: 30px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }

  p {
    font-size: 14.5px !important;
    color: #cfcfcf;
  }
}
@media (max-width: 768px) {

  .service-row {
    background: #0d0d0d;
    border-radius: 18px;
    padding: 14px;
    margin: 28px auto !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .service-row img {
    border-radius: 14px;
  }

  .service-text {
    padding: 14px 6px !important;
  }

  .service-text h2 {
    margin-top: 6px;
    color: #fdf254;
  }
}
@media (max-width: 768px) {

  /* Disable heavy animations */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }

  /* Remove glow-heavy effects */
  .rank-badge,
  .partner-card,
  .review-card,
  .location-card {
    box-shadow: none !important;
  }
}
@media (max-width: 768px) {

  .feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }

  .feature-list li {
    background: rgba(255,255,255,0.06);
    padding: 6px 10px;
    border-radius: 14px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {

  .btn,
  .cta,
  .service-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 15px;
  }

  .btn + .btn {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 14px;
    left: 14px;
  }

  .chat-bot {
    bottom: 14px;
    right: 14px;
  }
}
/* MOBILE: hide Contact Us button */
@media (max-width: 768px) {
  .header-btn {
    display: none !important;
  }
}
/* MOBILE HEADER LAYOUT FIX */
@media (max-width: 768px) {

  .header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 16px !important;
  }

  /* Logo center feel */
  .header img {
    height: 38px;
  }

  /* Hamburger positioning */
  .mobile-menu-btn {
    position: static !important;
    margin-left: auto;
    font-size: 28px;
  }
}
/* MOBILE: remove extra spacing under header */
@media (max-width: 768px) {
  .hero {
    padding-top: 90px !important;
  }
}
/* ===============================
   MOBILE: BACKGROUND BEHIND NO.1
================================ */
@media (max-width: 768px) {

  .hero-content {
    background:
      linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.9)
      ),
      url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c")
      center top / cover no-repeat;

    border-radius: 22px;
    padding: 40px 18px 50px;
    margin-top: 20px;
  }

}
@media (max-width: 768px) {

  .rank-badge {
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  }

}
/* =====================================
   MOBILE SERVICES – PREMIUM CARD STYLE
   (MOBILE ONLY – DESKTOP SAFE)
===================================== */
@media (max-width: 768px) {

  /* Section title spacing */
  .services-title {
    margin-bottom: 28px !important;
    letter-spacing: 0.5px;
  }

  /* Service card */
  .service-row {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.02)
    );
    border-radius: 22px;
    padding: 14px;
    margin: 28px auto !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  }

  /* Image */
  .service-row img {
    border-radius: 18px;
    max-height: 210px;
    object-fit: cover;
  }

  /* Text container */
  .service-text {
    padding: 18px 10px 10px !important;
    text-align: center;
  }

  /* Title */
  .service-text h2 {
    font-size: 20px !important;
    margin-bottom: 8px;
    color: #fdf254;
  }

  /* Description – make it breathable */
  .service-text p {
    font-size: 14.5px !important;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 14px;

    /* limit text visually */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Feature buttons container */
  .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Feature buttons */
  .feature-list li {
    background: #fdf254;
    color: #000;
    font-size: 13.5px;
    padding: 8px 14px;
    border-radius: 22px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(253,242,84,0.35);
  }

  /* Hide extra feature buttons */
  .feature-list li:nth-child(n+4) {
    display: none;
  }

  /* Remove excess glow */
  .service-row *,
  .service-row *::before,
  .service-row *::after {
    box-shadow: none !important;
  }
}
/* =====================================
   MOBILE SERVICE DESCRIPTION EXPAND
===================================== */
@media (max-width: 768px) {

  /* Description default */
  .service-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 3;   /* same height for all */
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: all 0.35s ease;
  }

  /* Expanded state */
  .service-desc.expanded {
    -webkit-line-clamp: unset;
  }

  /* Read more button */
  .read-more-btn {
    background: none;
    border: none;
    color: #fdf254;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    cursor: pointer;
  }

  /* Align pills neatly */
  .feature-list {
    justify-content: center;
    margin-top: 10px;
  }
}
/* =====================================
   READ MORE – MOBILE ONLY
===================================== */

/* Hide Read More by default (DESKTOP) */
.read-more-btn {
  display: none;
}

/* Show Read More ONLY on mobile */
@media (max-width: 768px) {
  .read-more-btn {
    display: inline-block;
  }
}

/* =====================================
   MOBILE – EQUAL HEIGHT SERVICE CARDS
===================================== */
@media (max-width: 768px) {

  /* Card container */
  .service-item,
  .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px; /* adjust if needed */
  }

  /* Image fixed height */
  .service-img img,
  .service-image img {
    height: 180px;
    object-fit: cover;
  }

  /* Content grows evenly */
  .service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  /* Buttons always at bottom */
  .service-content .cta,
  .service-content .read-more-btn {
    margin-top: auto;
  }
}
/* =====================================
   MOBILE – READ MORE ANIMATION
===================================== */
@media (max-width: 768px) {

  .service-desc {
    max-height: 110px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
  }

  .service-desc.expanded {
    max-height: 1000px; /* enough for full text */
  }

  .read-more-btn {
    background: none;
    border: none;
    color: #fdf254;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
  }
}
/* ===============================
   MOBILE SCROLL FIX (CRITICAL)
================================ */
@media (max-width: 768px) {

  html, body {
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  body {
    position: relative !important;
    touch-action: pan-y !important;
  }

  section,
  .section,
  .partners-premium,
  .testimonials-section,
  .testimonial-final,
  .work-section {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
    position: relative !important;
  }
}
@media (max-width: 768px) {


  /* Allow manual scroll instead */
  .partners-slider,
  .review-slider,
  .work-carousel,
  .instagram-loop,
  .youtube-loop {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {

  /* Partner cards */
  .partner-card {
    min-height: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Review cards */
  .review-card {
    min-height: 160px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 768px) {

  .partner-card,
  .review-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .partner-card:active,
  .review-card:active {
    transform: scale(0.97);
  }
}
/* =====================================
   MOBILE AUTO SCROLL – SAFE VERSION
===================================== */
@media (max-width: 768px) {

  /* 🔹 Prevent page freeze */
  html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
  }

  /* =========================
     PARTNERS AUTO MOVE
  ========================== */
  .partners-slider {
    overflow: hidden;
    position: relative;
  }

  .partners-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: partnersMoveMobile 25s linear infinite;
    will-change: transform;
  }

  @keyframes partnersMoveMobile {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  /* =========================
     REVIEWS AUTO MOVE
  ========================== */
  .review-slider,
  .review-tunnel {
    overflow: hidden;
    position: relative;
  }

  .review-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: reviewsMoveMobile 35s linear infinite;
    will-change: transform;
  }

  @keyframes reviewsMoveMobile {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  /* =========================
     TOUCH FRIENDLY
  ========================== */
  .partners-slider,
  .review-slider,
  .review-tunnel {
    touch-action: pan-y;
  }

  /* =========================
     EQUAL HEIGHT CARDS
  ========================== */
  .partner-card {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 768px) {

  .partners-slider,
  .review-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .partners-track,
  .review-track {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform;
  }

  /* stop any old animation */
  .partners-track,
  .review-track {
    animation: none !important;
  }

}
/* =====================================
   MOBILE ONLY – LOCATION CARDS CLEAN UI
===================================== */
@media (max-width: 768px) {

  /* Whole locations section spacing */
  .locations-section {
    padding: 50px 16px;
  }

  /* Each location card */
  .location-card {
    background: linear-gradient(180deg, #111, #000);
    border-radius: 20px;
    padding: 20px 18px;
    margin-bottom: 28px;

    box-shadow:
      0 18px 45px rgba(0,0,0,0.7),
      inset 0 0 0 1px rgba(255,255,255,0.06);
  }

  /* Branch title */
  .location-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 12px;
    position: relative;
  }

  .location-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 80%;
    background: #fdf254;
    border-radius: 6px;
  }

  /* Address text */
  .location-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #d6d6d6;
    margin-bottom: 14px;
  }

  /* Remove ugly Google text */
  .location-card iframe + div,
  .location-card iframe::after {
    display: none !important;
  }

  /* Map wrapper */
  .location-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    margin-top: 10px;
    border: none;
    filter: saturate(1.05) contrast(1.05);
  }

  /* CTA button (optional if you have call/map buttons) */
  .location-card .call-btn,
  .location-card .btn {
    width: 100%;
    margin-top: 14px;
    text-align: center;
  }

}
/* =====================================
   MOBILE – HORIZONTAL SWIPE FOR BRANCHES
===================================== */
@media (max-width: 768px) {

  /* Make grid horizontal */
  .locations-grid {
    display: flex !important;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;

    -webkit-overflow-scrolling: touch;
  }

  /* Hide scrollbar (clean look) */
  .locations-grid::-webkit-scrollbar {
    display: none;
  }

  /* Each branch card */
  .location-card {
    min-width: 88%;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}
@media (max-width: 768px) {
  .locations-section::after {
    content: "← Swipe to view branches →";
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #999;
    opacity: 0.8;
  }
}
/* =====================================
   MOBILE BRANCH DOTS
===================================== */
@media (max-width: 768px) {

  .branch-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .branch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: all 0.3s ease;
  }

  .branch-dot.active {
    width: 18px;
    border-radius: 20px;
    background: #fdf254;
    box-shadow: 0 0 12px rgba(253,242,84,0.8);
  }
}
/* =====================================
   FINAL CTA – MOBILE PREMIUM UPGRADE
===================================== */
@media (max-width: 768px) {

  .final-cta {
    padding: 60px 18px 70px;
    text-align: center;
    background:
      radial-gradient(circle at top, rgba(255,232,77,0.12), transparent 60%),
      #000;
  }

  .final-cta h2 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
  }

  .final-cta p {
    font-size: 15px;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 30px;
  }

  /* CTA buttons wrapper */
  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  /* Call button */
  .cta-call {
    width: 100%;
    max-width: 320px;
    padding: 15px 0;
    border-radius: 999px;

    background: linear-gradient(135deg, #ffd400, #ffea70);
    color: #000;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(255,220,70,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .cta-call:active {
    transform: scale(0.97);
  }

  /* WhatsApp button */
  .cta-whatsapp {
    width: 100%;
    max-width: 320px;
    padding: 15px 0;
    border-radius: 999px;

    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #000;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(37,211,102,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .cta-whatsapp:active {
    transform: scale(0.97);
  }
}
/* ===============================
   FIX CTA BUTTON MERGE (MOBILE)
================================ */
@media (max-width: 768px) {

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px !important; /* force spacing */
  }

  .cta-call,
  .cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;           /* prevents visual merge */
    margin: 0 !important;       /* reset conflicts */
    border-radius: 999px;
  }

  /* Extra visual separation (subtle) */
  .cta-call {
    box-shadow:
      0 10px 28px rgba(255,220,70,0.45),
      inset 0 -2px 0 rgba(0,0,0,0.15);
  }

  .cta-whatsapp {
    box-shadow:
      0 10px 28px rgba(37,211,102,0.45),
      inset 0 -2px 0 rgba(0,0,0,0.15);
  }
}
/* ===============================
   MOBILE CTA BUTTON ALIGNMENT FIX
================================ */
@media (max-width: 768px) {

  /* Parent container */
  .cta-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  /* BOTH buttons same size */
  .cta-call,
  .cta-whatsapp {
    width: 220px !important;     /* 👈 SAME WIDTH */
    max-width: 220px !important;
    min-width: 220px !important;

    height: 52px !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  /* Remove full-width forcing */
  .cta-call *,
  .cta-whatsapp * {
    width: auto !important;
  }
}
/* =====================================
   HARD DESKTOP RESET – LOCATIONS SECTION
   (DO NOT REMOVE)
===================================== */
@media (min-width: 769px) {

  .locations-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;

    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .location-card {
    min-width: auto !important;
    scroll-snap-align: none !important;
  }
}
/* =====================================
   FORCE CTA BUTTON ALIGNMENT (MOBILE)
===================================== */
@media (max-width: 768px) {

  /* CTA container */
  .cta-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  /* BOTH buttons – identical sizing */
  .cta-call,
  .cta-whatsapp {
    position: relative !important;

    width: 220px !important;
    height: 52px !important;

    margin: 0 !important;
    padding: 0 !important;

    left: auto !important;
    right: auto !important;
    transform: none !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  /* Remove icon offset issues */
  .cta-call i,
  .cta-whatsapp i,
  .cta-call svg,
  .cta-whatsapp svg {
    margin-right: 8px;
  }
}
/* ===============================
   REMOVE WHATSAPP CTA – MOBILE ONLY
================================ */
@media (max-width: 768px) {
  .cta-whatsapp {
    display: none !important;
  }
}
/* =====================================
   MOBILE FOOTER – COMPACT & PREMIUM
===================================== */
@media (max-width: 768px) {

  footer {
    padding: 40px 18px 20px;
  }

  /* Logo + description */
  footer .footer-about {
    text-align: center;
    margin-bottom: 24px;
  }

  footer .footer-about p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 10px;
  }

  /* Social icons – horizontal card */
  footer .social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 18px 0 28px;
  }

  footer .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 12px rgba(253,242,84,0.25);
  }

  /* SERVICES + QUICK LINKS → 2 COLUMN */
  footer .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  footer h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  footer ul li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
  }

  /* Contact section – compact card */
  footer .footer-contact {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
  }

  footer .footer-contact li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Bottom copyright */
  footer .footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
    margin-top: 10px;
  }
}
/* =====================================
   MOBILE FOOTER – CLEAN & COMPACT
===================================== */
@media (max-width: 768px) {

  .footer {
    padding: 40px 18px 20px;
  }

  .footer-container {
    display: block;
  }

  /* BRAND SECTION */
  .footer-col.brand {
    text-align: center;
    margin-bottom: 28px;
  }

  .footer-logo {
    max-width: 140px;
    margin-bottom: 12px;
  }

  .footer-col.brand p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 16px;
  }

  /* SOCIAL ICONS */
  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 12px rgba(253,242,84,0.25);
  }

  .footer-socials img {
    width: 18px;
    height: 18px;
  }

  /* SERVICES + QUICK LINKS → 2 COLUMNS */
  .footer-container > .footer-col:not(.brand):not(:last-child) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  /* HEADINGS */
  .footer h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer ul li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
  }

  /* CONTACT CARD */
  .footer-col:last-child {
    margin-bottom: 20px;
  }

  .footer-contact {
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 16px;
  }

  .footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* COPYRIGHT */
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
    margin-top: 10px;
  }
}
/* =====================================
   SERVICES PAGE – MOBILE UI FIX
   (DO NOT AFFECT DESKTOP)
===================================== */
@media (max-width: 768px) {

  /* QUICK OFFER GRID */
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 14px;
  }

  .service-card {
    min-height: auto !important;
    padding: 18px 14px;
    border-radius: 18px;

    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
    text-align: center;
  }

  /* ICON */
  .service-card .icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
  }

  /* TITLE */
  .service-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  /* DESCRIPTION */
  .service-card p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
  }

  /* REMOVE HUGE EMPTY SPACE */
  .service-card::after {
    display: none;
  }
}
/* =====================================
   DETAILED SERVICES – MOBILE STACK FIX
===================================== */
@media (max-width: 768px) {

  .service-row {
    flex-direction: column !important;
    gap: 14px;
    margin-bottom: 40px;
  }

  .service-row img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
  }

  .service-text {
    padding: 0 6px;
  }

  .service-text h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-text p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 10px;
  }

  .feature-list {
    padding-left: 0;
  }

  .feature-list li {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
/* =========================================
   WORK PAGE – MOBILE CLEAN FIX ONLY
========================================= */
@media (max-width: 768px) {

  /* SECTION SPACING */
  .instagram-rect,
  .youtube-wrapper {
    padding: 24px 14px;
  }

  /* HEADER FIX */
  .work-block-header,
  .platform-title.youtube-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .work-block-header h3,
  .youtube-title h3 {
    font-size: 18px;
    font-weight: 700;
  }

  .work-btn.instagram {
    margin-left: auto;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 18px;
  }

  /* ================= INSTAGRAM MOBILE ================= */

  .thumbnail-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .thumbnail-grid::-webkit-scrollbar {
    display: none;
  }

  .thumb-card {
    min-width: 160px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
    background: #000;
  }

  .thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
  }

  /* ================= YOUTUBE MOBILE ================= */

  .work-carousel {
    overflow-x: auto;
  }

  .work-track {
    display: flex;
    gap: 14px;
    scroll-snap-type: x mandatory;
  }

  .work-track::-webkit-scrollbar {
    display: none;
  }

  .work-card.video {
    min-width: 260px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #000;
  }

  .work-card.video iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}
/* =========================================
   WORK PAGE – MOBILE REELS & YT FIX
   (DO NOT AFFECT DESKTOP)
========================================= */
@media (max-width: 768px) {

  /* ---------- INSTAGRAM REELS ---------- */
  .instagram-rect .thumbnail-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .instagram-rect .thumbnail-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-rect .thumb-card {
    min-width: 180px;
    height: 320px;              /* PORTRAIT 9:16 */
    border-radius: 18px;
    overflow: hidden;
    scroll-snap-align: center;
    flex-shrink: 0;
    position: relative;
    background: #000;
  }

  .instagram-rect .thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* IMPORTANT */
  }

  .instagram-rect .play-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at center,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.65)
      );
  }

  /* ---------- YOUTUBE VIDEOS ---------- */
  .youtube-wrapper .work-carousel {
    overflow-x: auto;
  }

  .youtube-wrapper .work-track {
    display: flex;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .youtube-wrapper .work-track::-webkit-scrollbar {
    display: none;
  }

  .youtube-wrapper .work-card.video {
    min-width: 280px;
    height: 160px;              /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: center;
    background: #000;
  }

  .youtube-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}
/* ===============================
   MOBILE ONLY – INSTAGRAM SWIPE
================================ */
@media (max-width: 768px) {

  .instagram-rect {
    overflow: hidden;
  }

  .instagram-rect .thumbnail-grid {
    display: flex;
    gap: 14px;
    overflow: hidden;
  }

  .instagram-rect .thumb-card {
    min-width: 220px;
    flex-shrink: 0;
  }

}
/* ===============================
   MOBILE ONLY – INSTAGRAM AUTO MOVE
================================ */
@media (max-width: 768px) {

  .instagram-rect {
    overflow: hidden;
    position: relative;
  }

  .instagram-rect .thumbnail-grid {
    display: flex;
    gap: 14px;
    width: max-content; /* 🔑 allows movement */
    will-change: transform;
  }

  .instagram-rect .thumb-card {
    min-width: 220px;
    flex-shrink: 0;
  }

}
/* ===============================
   MOBILE ONLY – YOUTUBE AUTO SLIDE
================================ */
@media (max-width: 768px) {

  .youtube-wrapper {
    overflow: hidden;
    position: relative;
  }

  .youtube-wrapper .work-carousel {
    overflow: hidden;
  }

  .youtube-wrapper .work-track {
    display: flex;
    gap: 18px;
    width: max-content; /* 🔑 required */
    will-change: transform;
  }

  .youtube-wrapper .work-card {
    min-width: 300px;
    flex-shrink: 0;
  }

}
/* =====================================
   CONTACT PAGE – MOBILE OVERFLOW FIX
   DESKTOP SAFE
===================================== */
@media (max-width: 768px) {

  /* global safety */
  body {
    overflow-x: hidden;
  }

  /* contact layout */
  .contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
    max-width: 100%;
  }

  .contact-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* stats grid fix */
  .contact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* CTA buttons stack */
  .contact-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-cta a {
    width: 100%;
    text-align: center;
  }

  /* inputs safety */
  .contact-form input,
  .contact-form button {
    width: 100%;
    max-width: 100%;
  }

  /* map iframe safety */
  .map-wrap iframe {
    width: 100% !important;
    height: 240px;
  }

}

/* =====================================
   CONTACT PAGE – MOBILE MODERN FIX
   DESKTOP SAFE
===================================== */
@media (max-width: 768px) {

  /* overall breathing space */
  .contact-premium {
    padding: 40px 0;
  }

  .contact-wrap {
    padding: 0 18px;
    gap: 32px;
  }

  /* cards – full width & modern */
  .contact-card {
    width: 100%;
    max-width: 100%;
    padding: 32px 22px;
    border-radius: 20px;
  }

  /* form heading */
  .contact-form h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
  }

  /* inputs – taller & cleaner */
  .contact-form input {
    height: 52px;
    font-size: 15px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  /* whatsapp button */
  .contact-form .notify-btn {
    height: 54px;
    font-size: 16px;
    border-radius: 999px;
    margin-top: 12px;
  }

  /* RIGHT SIDE INFO CARD */
  .contact-side h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 22px;
  }

  .contact-points {
    padding: 0;
    margin-bottom: 28px;
  }

  .contact-points li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  /* stats – modern grid */
  .contact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
  }

  .contact-stats div {
    padding: 18px 12px;
    border-radius: 16px;
  }

  .contact-stats strong {
    font-size: 20px;
  }

  .contact-stats span {
    font-size: 12px;
  }

  /* CTA buttons stack */
  .contact-cta {
    gap: 14px;
  }

  .contact-cta a {
    padding: 14px 0;
    font-size: 15px;
    border-radius: 999px;
  }

}

/* =====================================================
   DESKTOP ONLY – LOCATIONS MAP ALIGNMENT FIX
   (MOBILE COMPLETELY UNTOUCHED)
===================================================== */
@media (min-width: 769px) {

  /* FORCE CLEAN GRID */
  .locations-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible !important;
  }

  /* UNIFORM CARD HEIGHT */
  .location-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 520px !important;
  }

  /* MAP SAME SIZE EVERYWHERE */
  .location-card iframe {
    width: 100% !important;
    height: 260px !important;
    border-radius: 16px;
    margin-top: 14px;
    border: 0;
  }

  /* REMOVE DESKTOP BLACK GAPS */
  .locations-section {
    padding-bottom: 90px !important;
  }

  /* COMING SOON CARD CENTER FIX */
  .location-card.coming-soon {
    justify-content: center !important;
    text-align: center;
  }

}
/* =====================================
   MOBILE FIX – REMOVE DARK OVERLAY
   HOME PAGE REVIEWS ONLY
===================================== */
@media (max-width: 768px) {

  /* remove dark overlay layers */
  .review-tunnel::before,
  .review-tunnel::after,
  .review-slider::before,
  .review-slider::after {
    display: none !important;
  }

  /* soften background */
  .review-tunnel {
    background: #0e0e0e !important;
    box-shadow: none !important;
  }

  /* brighten review cards */
  .review-card {
    background: #141414 !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.5) !important;
  }

  /* improve text visibility */
  .review-card p,
  .review-card h4,
  .review-card span {
    color: #eaeaea !important;
  }

  /* stars more visible */
  .stars {
    color: #ffd700 !important;
    opacity: 1 !important;
  }

}
/* =====================================
   DESKTOP ONLY – FORCE 4 MAPS IN ONE ROW
===================================== */
@media (min-width: 1024px) {

  .locations-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards */
    gap: 32px;
    align-items: stretch;
  }

  .location-card,
  .location-card.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 460px;
  }

  .location-card iframe {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    border: 0;
  }

  /* Center coming soon card perfectly */
  .location-card.coming-soon {
    justify-content: center;
    text-align: center;
  }
}
/* =========================================
   HARD DESKTOP FIX – FORCE 4 MAPS ONE ROW
   (DO NOT AFFECT MOBILE)
========================================= */
@media (min-width: 1024px) {

  /* Force full-width section */
  .locations-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 6%;
    padding-right: 6%;
  }

  /* Kill all previous grid behavior */
  .locations-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;

    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;

    align-items: stretch;
  }

  /* Equal card sizing */
  .location-card,
  .location-card.coming-soon {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Map consistency */
  .location-card iframe {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    border: none;
  }

  /* Coming soon perfect center */
  .location-card.coming-soon {
    justify-content: center;
    text-align: center;
  }
}
/* ==================================================
   FINAL DESKTOP FIX – FORCE ALL LOCATION CARDS
   INTO ONE SINGLE ROW (NO WRAP)
   MOBILE 100% SAFE
================================================== */
@media (min-width: 1200px) {

  /* Section must NOT overflow */
  .locations-section {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Grid container */
  .locations-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 32px !important;

    max-width: 1400px;
    margin: 0 auto;
    padding: 0;

    box-sizing: border-box;
  }

  /* Cards must NOT push width */
  .location-card,
  .location-card.coming-soon {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 460px;
  }

  /* Map safety */
  .location-card iframe {
    width: 100%;
    height: 260px;
    max-width: 100%;
    border-radius: 16px;
    border: none;
  }

  /* Coming soon center */
  .location-card.coming-soon {
    justify-content: center;
    text-align: center;
  }
}
/* =====================================================
   DESKTOP ONLY – FORCE ALL LOCATION CARDS IN ONE ROW
   (FIX GRID OVERFLOW ISSUE)
===================================================== */
@media (min-width: 1200px) {

  /* Stop section overflow */
  .locations-section {
    width: 100%;
    overflow-x: hidden;
  }

  /* Grid fix */
  .locations-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px;

    max-width: 1400px;
    margin: 0 auto;

    align-items: stretch;
  }

  /* 🔥 CRITICAL FIX */
  .location-card,
  .location-card.coming-soon {
    min-width: 0 !important;   /* prevents card overflow */
    width: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 460px;
  }

  /* Google map iframe fix */
  .location-card iframe {
    width: 100%;
    max-width: 100%;
    height: 260px;
    border-radius: 16px;
    border: none;
  }

  /* Coming soon card center */
  .location-card.coming-soon {
    justify-content: center;
    text-align: center;
  }
}
/* =====================================================
   DESKTOP ONLY – FORCE ALL LOCATION CARDS IN ONE ROW
   FLEXBOX HARD FIX (GRID DISABLED)
===================================================== */
@media (min-width: 1200px) {

  /* Disable grid completely */
  .locations-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 32px;

    max-width: 1400px;
    margin: 0 auto;
    padding: 0;

    overflow: hidden;
  }

  /* Force equal width for each card */
  .location-card,
  .location-card.coming-soon {
    flex: 0 0 calc(25% - 24px); /* 👈 4 cards EXACT */
    max-width: calc(25% - 24px);
    min-width: 0;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 460px;
  }

  /* Map fix */
  .location-card iframe {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    border: none;
  }

  /* Coming soon center */
  .location-card.coming-soon {
    justify-content: center;
    text-align: center;
  }
}

/* =====================================
   MOBILE MENU – PREMIUM GRADIENT BUTTONS
   DESKTOP SAFE
===================================== */
@media (max-width: 768px) {

  /* COMMON BUTTON BASE */
  .mobile-menu-actions a {
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  /* =====================
     CALL NOW – YELLOW GRADIENT
  ===================== */
  .mobile-menu-actions .menu-call {
    background: linear-gradient(
      135deg,
      #fff27a,
      #ffd000,
      #ffb700
    );
    color: #111;
    border: none;
    box-shadow:
      0 8px 22px rgba(255, 208, 0, 0.45),
      inset 0 -3px 0 rgba(0,0,0,0.18);
  }

  .mobile-menu-actions .menu-call:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
      0 12px 30px rgba(255, 208, 0, 0.6);
  }

  /* =====================
     WHATSAPP – GREEN GRADIENT
  ===================== */
  .mobile-menu-actions .menu-whatsapp {
    background: linear-gradient(
      135deg,
      #3cf28c,
      #25D366,
      #1ebe5d
    );
    color: #fff;
    border: none;
    box-shadow:
      0 8px 22px rgba(37, 211, 102, 0.45),
      inset 0 -3px 0 rgba(0,0,0,0.18);
  }

  .mobile-menu-actions .menu-whatsapp:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
      0 12px 30px rgba(37, 211, 102, 0.6);
  }

  /* SUBTLE SHINE EFFECT */
  .mobile-menu-actions a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.4),
      transparent
    );
    transition: all 0.6s ease;
  }

  .mobile-menu-actions a:hover::after {
    left: 120%;
  }

}
/* ===============================
   MOBILE MEDIA TOGGLE
================================ */

/* Hidden by default (desktop) */
.mobile-media-toggle {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {

  .mobile-media-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
  }

  .toggle-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .toggle-btn.active {
    background: linear-gradient(135deg, #ff0066, #ffcc00);
    color: #000;
    box-shadow: 0 0 20px rgba(255,204,0,0.5);
  }

  /* Default visibility */
  .instagram-section {
    display: block;
  }

  .youtube-section {
    display: none;
  }
}
/* =====================================
   iOS SAFARI FIX – PHONE NUMBER STYLE
   MOBILE ONLY
===================================== */
@media (max-width: 768px) {

  /* iOS link override */
  a[href^="tel"] {
    color: #ffd400 !important;            /* FCA yellow */
    text-decoration: none !important;
    font-weight: 700;
    -webkit-text-fill-color: #ffd400;     /* 🔑 iOS fix */
  }

  /* Prevent iOS blue tap highlight */
  a[href^="tel"] {
    -webkit-tap-highlight-color: transparent;
  }

}

/* ===============================
   MOBILE SCROLL ARROWS
================================ */

.mobile-scroll-controls {
  display: none;
}

@media (max-width: 768px) {

  .mobile-scroll-controls {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    margin-bottom: 10px;
  }

  .scroll-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;

    background: rgba(255,255,255,0.12);
    color: #fff;

    backdrop-filter: blur(6px);
    box-shadow: 0 0 15px rgba(0,0,0,0.6);

    transition: transform 0.2s ease, background 0.2s ease;
  }

  .scroll-btn:active {
    transform: scale(0.9);
    background: linear-gradient(135deg, #ff0066, #ffcc00);
    color: #000;
  }
}
/* =====================================
   MOBILE MENU – CALL NOW TEXT VISIBILITY FIX
   DESKTOP SAFE
===================================== */
@media (max-width: 768px) {

  /* Call Now button text + icon */
  .mobile-menu-actions .menu-call {
    color: #111 !important;          /* DARK TEXT */
  }

  .mobile-menu-actions .menu-call i,
  .mobile-menu-actions .menu-call span,
  .mobile-menu-actions .menu-call svg {
    color: #111 !important;          /* DARK ICON */
  }

}
@media (max-width: 768px) {
  .mobile-menu-actions .menu-call {
    text-shadow: 0 1px 1px rgba(0,0,0,0.25);
  }
}
/* ===============================
   MOBILE OVERLAY SCROLL ARROWS
================================ */

.mobile-scroll-overlay {
  display: none;
}

@media (max-width: 768px) {

  .thumbnail-grid,
  .work-track {
    position: relative;
  }

  .mobile-scroll-overlay {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    padding: 0 12px;
    pointer-events: none;
    z-index: 10;
  }

  .scroll-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;

    background: rgba(0,0,0,0.6);
    color: #fff;

    box-shadow: 0 0 15px rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .scroll-btn:active {
    transform: scale(0.9);
    background: linear-gradient(135deg, #ff0066, #ffcc00);
    color: #000;
  }
}
/* =====================================
   MOBILE MENU – FORCE TEXT COLOR BLACK
   CALL NOW + WHATSAPP
===================================== */
@media (max-width: 768px) {

  /* Force black text on both buttons */
  .mobile-menu-actions a,
  .mobile-menu-actions a *,
  .mobile-menu-actions a span,
  .mobile-menu-actions a i,
  .mobile-menu-actions a svg {
    color: #000 !important;
    fill: #000 !important;
    -webkit-text-fill-color: #000 !important;
  }

}
/* =========================================
   MOBILE ONLY – REMOVE SIDE DARKNESS
   (INSTAGRAM + YOUTUBE SLIDERS)
========================================= */
@media (max-width: 768px) {

  /* Remove mask / gradient fade */
  .thumbnail-grid,
  .work-track {
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  /* Kill side gradient overlays if any */
  .instagram-rect::before,
  .instagram-rect::after,
  .youtube-wrapper::before,
  .youtube-wrapper::after,
  .work-carousel::before,
  .work-carousel::after {
    display: none !important;
    content: none !important;
  }

  /* Remove inset shadows causing darkness */
  .instagram-rect,
  .youtube-wrapper,
  .work-carousel {
    box-shadow: none !important;
  }

  /* Ensure cards are fully bright */
  .thumb-card,
  .work-card {
    filter: none !important;
    opacity: 1 !important;
  }
}
/* =====================================
   HOME PAGE – CTA CALL NOW FIX (MOBILE)
   DESKTOP SAFE
===================================== */
@media (max-width: 768px) {

  /* Home page CTA call button */
  .final-cta a[href^="tel"],
  .final-cta .btn-call-yellow {
    color: #000 !important;                 /* black text */
    -webkit-text-fill-color: #000 !important;
  }

  /* Icon inside the button */
  .final-cta a[href^="tel"] *,
  .final-cta .btn-call-yellow * {
    color: #000 !important;
    fill: #000 !important;
  }

}
/* =====================================
   MOBILE – SHOW NEXT MAP (PEEK EFFECT)
   DESKTOP SAFE
===================================== */
@media (max-width: 768px) {

  /* Horizontal scroll container */
  .locations-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-left: 16px;
    padding-right: 32px; /* space to reveal next card */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Hide scrollbar */
  .locations-grid::-webkit-scrollbar {
    display: none;
  }

  /* Cards show 80–90% width */
  .location-card {
    flex: 0 0 88%;          /* 👈 main control */
    scroll-snap-align: start;
  }

}
/* ================= BLOG PAGE ================= */
.blog-list {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  gap: 28px;
}

.blog-card {
  background: #111;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.blog-card h2 {
  color: #ffd400;
  font-size: 22px;
  margin-bottom: 8px;
}

.blog-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
}

.blog-card p {
  line-height: 1.7;
  color: #ddd;
}

.read-more {
  display: inline-block;
  margin-top: 16px;
  color: #ffd400;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .blog-card {
    padding: 22px;
  }
}
/* ================= BLOG DETAIL ================= */
.blog-detail {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  color: #eaeaea;
}

.blog-detail h1 {
  font-size: 36px;
  color: #ffd400;
  margin-bottom: 12px;
}

.blog-detail h2 {
  margin-top: 28px;
  color: #ffd400;
  font-size: 22px;
}

.blog-detail p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-detail-cta {
  margin: 30px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  color: #ffd400;
  text-decoration: none;
}
/* ================= BLOG PAGE – PREMIUM UX ================= */

/* smooth reading width */
.blog-detail {
  max-width: 880px;
  margin: 80px auto;
  padding: 0 22px;
}

/* hero title glow */
.blog-detail h1 {
  font-size: 38px;
  line-height: 1.25;
  color: #ffd400;
  text-shadow: 0 0 18px rgba(255,212,0,0.25);
  margin-bottom: 12px;
}

/* section headings */
.blog-detail h2 {
  font-size: 24px;
  margin-top: 42px;
  color: #ffd400;
  position: relative;
  padding-left: 14px;
}

.blog-detail h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 80%;
  background: linear-gradient(#ffd400, transparent);
  border-radius: 4px;
}

/* text readability */
.blog-detail p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #e6e6e6;
}

/* scroll animation base */
.blog-detail > * {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s ease;
}

.blog-detail > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA buttons */
.blog-detail-cta a {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* mobile text polish */
@media (max-width: 768px) {
  .blog-detail h1 {
    font-size: 30px;
  }
  .blog-detail p {
    font-size: 15.5px;
  }
}
/* ================= READING MODE TOGGLE ================= */

.theme-toggle {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 999;
  background: #111;
  color: #ffd400;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.05);
}

/* ========== LIGHT MODE ========== */
body.light-mode {
  background: #f6f6f6;
  color: #111;
}

body.light-mode .blog-detail {
  color: #111;
}

body.light-mode .blog-detail h1,
body.light-mode .blog-detail h2 {
  color: #111;
  text-shadow: none;
}

body.light-mode .blog-detail p {
  color: #333;
}

body.light-mode .theme-toggle {
  background: #fff;
  color: #111;
}

/* CTA buttons remain same */
body.light-mode .cta-btn,
body.light-mode .cta-whatsapp {
  color: #000 !important;
}
/* ================= READING PROGRESS BAR ================= */

#readingProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #ffd400, #ffb300);
  z-index: 10000;
  transition: width 0.15s linear;
}

/* Light mode adjustment */
body.light-mode #readingProgress {
  background: linear-gradient(90deg, #111, #333);
}
/* ================= READING MODE TOGGLE – ALIGNED ================= */

.theme-toggle {
  position: fixed;
  top: 90px;
  right: 16px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  min-height: 42px;
  padding: 8px 16px;

  background: #ffffff;
  color: #111;
  border: none;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);

  transition: all 0.25s ease;
}

.theme-toggle span {
  display: inline-block;
  line-height: 1;
}

/* Dark mode button look */
body:not(.light-mode) .theme-toggle {
  background: #111;
  color: #ffd400;
}

/* Hover / tap feedback */
.theme-toggle:hover {
  transform: translateY(-2px);
}

/* Mobile safe touch */
@media (max-width: 768px) {
  .theme-toggle {
    top: 84px;
    right: 12px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
/* ================= CTA BUTTONS – PREMIUM MATCH ================= */

.blog-detail-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* COMMON CTA STYLE */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* BOOK CONSULTATION – UPGRADED */
.cta-consult {
  background: linear-gradient(135deg, #ffd400, #ffb300);
  color: #000;
}

/* WHATSAPP – KEEP PREMIUM */
.cta-whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #000;
}

/* HOVER EFFECT (BOTH) */
.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.7);
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .blog-detail-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}
/* ================= FOOTER CONTACT LINK COLORS ================= */

.footer-contact a {
  color: #f5c400;               /* Premium yellow */
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover effect */
.footer-contact a:hover {
  color: #ffd84d;               /* Brighter gold */
  text-decoration: underline;
}

/* Icon spacing fix */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* Email slightly softer */
.footer-contact a[href^="mailto"] {
  color: #d6d6d6;
}

.footer-contact a[href^="mailto"]:hover {
  color: #ffffff;
}
/* HERO ENTRY ANIMATION */
.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFade 0.9s ease forwards;
}

.hero-content p {
  animation-delay: 0.2s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.card,
.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
/* ================= MOBILE COMPACT SERVICES ================= */
@media (max-width: 768px) {

  /* Shorten description */
  .service-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Hide extra feature tags */
  .feature-tags span:nth-child(n+3) {
    display: none;
  }

}
/* ================= LOCATION REVEAL ================= */
.reveal-location {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal-location.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.reveal-location:nth-child(1) { transition-delay: 0.1s; }
.reveal-location:nth-child(2) { transition-delay: 0.25s; }
.reveal-location:nth-child(3) { transition-delay: 0.4s; }
.reveal-location:nth-child(4) { transition-delay: 0.55s; }


/* ================= LOCATION CARD HOVER ================= */
.location-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,212,0,0.25);
}
/* ================= MAP ZOOM ================= */
.location-card iframe {
  transition: transform 1.2s ease;
}

.location-card:hover iframe {
  transform: scale(1.06);
}
/* ================= SWIPE HINT ================= */
.swipe-hint {
  display: none;
  text-align: center;
  color: #aaa;
  font-size: 13px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .swipe-hint {
    display: block;
  }
}
/* ================= BRANCH DISTANCE ================= */
.branch-distance {
  margin-top: 6px;
  font-size: 13px;
  color: #f4d03f;
  opacity: 0.9;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* Tablet */
@media (max-width: 1100px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .locations-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .location-card {
    min-width: 85%;
    scroll-snap-align: start;
  }
}
/* ===== LOCATIONS GRID FIX ===== */
.locations-section {
  width: 100%;
  overflow: visible;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

/* Ensure cards don't shrink */
.location-card {
  min-width: 0;
}
/* Force all cards same height */
.location-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Tablet */
@media (max-width: 1100px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: horizontal swipe */
@media (max-width: 640px) {
  .locations-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .location-card {
    min-width: 85%;
    scroll-snap-align: start;
  }
}

/* === FORCE 4 CARDS SAME HEIGHT === */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch; /* IMPORTANT */
}

.location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* === PLACEHOLDER MAP FOR COMING SOON === */
.placeholder-map {
  height: 260px; /* SAME as iframe map height */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #f5c842;
  font-weight: 600;
  opacity: 0.85;
}
/* === FORCE SAME HEIGHT FOR ALL LOCATION CARDS === */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.soon-icons {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  opacity: 0.35;
  letter-spacing: 10px;
}
.soon-icons {
  margin-top: 28px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 14px;     
  opacity: 0.55;             
}
.soon-icons span {
  filter: drop-shadow(0 0 6px rgba(245, 200, 66, 0.35));
}
.reviews-header {
  position: relative;
  text-align: center;
}

.reviews-header::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
  width: 420px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.thumbnail-grid,
.work-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  touch-action: pan-x;
  user-select: none;
}

.instagram-rect,
.youtube-wrapper {
  overflow: hidden;
}
.instagram-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.instagram-scroll::-webkit-scrollbar {
  display: none;
}

.thumbnail-grid {
  display: flex;
  gap: 16px;
  width: max-content;
  user-select: none;
  will-change: transform;
}
.instagram-scroll,
.youtube-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.instagram-scroll::-webkit-scrollbar,
.youtube-scroll::-webkit-scrollbar {
  display: none;
}

.thumbnail-grid,
.work-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.instagram-rect .reels-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.instagram-rect .thumbnail-grid {
  display: flex;
  gap: 16px;
}

.instagram-rect .thumb-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
}
.instagram-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.thumbnail-grid {
  display: flex;
  gap: 16px;
  will-change: transform;
}
/* ===============================
   MOBILE ONLY – HIDE COMING SOON ICONS
   ================================= */
@media (max-width: 768px) {
  .coming-soon .soon-icons {
    display: none !important;
  }
}
/* ================= CINEMATIC GALLERY ================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 70px 6%;
  perspective: 1200px;
}

/* CARD */
.gallery-card {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.19,1,.22,1),
              box-shadow 0.6s ease;
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* DARK GLASS OVERLAY */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.15),
    transparent
  );
  opacity: 0.8;
}

/* HOVER EFFECT */
.gallery-card:hover {
  transform: translateY(-12px) rotateX(6deg);
  box-shadow: 0 40px 90px rgba(255, 235, 59, 0.25);
}

.gallery-card:hover img {
  transform: scale(1.15);
}

/* OVERLAY TEXT */
.gallery-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: #ffeb3b;
  font-size: 18px;
  margin-bottom: 6px;
}

.gallery-overlay p {
  color: #e0e0e0;
  font-size: 13px;
}

/* ================= CATEGORY BUTTONS ================= */

.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.gallery-categories button {
  padding: 10px 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-categories button.active,
.gallery-categories button:hover {
  background: #ffeb3b;
  color: #000;
  box-shadow: 0 0 30px rgba(255,235,59,0.5);
}
/* ================= GALLERY HERO CINEMATIC ================= */
.gallery-hero.cinematic {
  position: relative;
  min-height: 85vh;
  padding: 120px 20px 80px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(253,242,84,0.08), transparent 55%),
    linear-gradient(180deg, #000 0%, #050505 100%);
  overflow: hidden;
}

/* Eyebrow text */
.hero-eyebrow {
  display: inline-block;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Main title */
.gallery-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: #FDF254;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Subtitle */
.hero-sub {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

/* Glow divider */
.hero-divider {
  width: 120px;
  height: 3px;
  margin: 40px auto;
  background: linear-gradient(90deg, transparent, #FDF254, transparent);
  box-shadow: 0 0 20px rgba(253,242,84,0.6);
}

/* Floating tags */
.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-tags span {
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(253,242,84,0.25);
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(8px);
  animation: floatTag 6s ease-in-out infinite;
}

.hero-tags span:nth-child(odd) {
  animation-delay: 1.5s;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 24px;
  height: 40px;
  border: 2px solid #FDF254;
  border-radius: 20px;
  position: relative;
  display: block;
}

.scroll-indicator span::after {
  content: "";
  width: 4px;
  height: 8px;
  background: #FDF254;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

/* Animations */
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .gallery-hero.cinematic {
    min-height: 75vh;
    padding-top: 90px;
  }
}

/* ===============================
   FORCE FIX – SCROLL INDICATOR
================================ */

.gallery-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  pointer-events: none;
}

/* SCROLL text — centered */
.gallery-hero .scroll-text {
  display: block !important;
  text-align: center !important;
  font-size: 12px;
  letter-spacing: 4px;
  color: #fdf254;
  opacity: 0.9;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

/* ONE mouse only */
.gallery-hero .mouse {
  width: 26px;
  height: 44px;
  border: 2px solid #fdf254;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 14px rgba(253, 242, 84, 0.55);
  margin: 0 !important;
  transform: none !important;
}

/* Wheel animation */
.gallery-hero .wheel {
  width: 4px;
  height: 8px;
  background: #fdf254;
  border-radius: 2px;
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}
/* Scroll indicator wrapper */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;   /* THIS is the key */
  justify-content: center;
  gap: 6px;
}

/* SCROLL text */
.scroll-indicator .scroll-text {
  display: block;
  width: 100%;
  text-align: center;    /* force center */
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 4px;
  color: #fdf254;
  opacity: 0.9;
  transform: translateX(0); /* reset any offset */
}
.scroll-indicator .scroll-text {
  padding-left: 1px;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* SCROLL text – optical centering */
.scroll-text {
  font-size: 12px;
  letter-spacing: 4px;
  color: #fdf254;
  opacity: 0.9;
  text-align: center;

  /* 🔑 THIS IS THE REAL FIX */
  transform: translateX(-6px);
}
.scroll-text {
  display: none;
}
/* Hide scroll indicator on mobile  */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none !important;
  }
}
/* FORCE hide scroll indicator on mobile */
@media (max-width: 768px) {
  .scroll-indicator,
  .scroll-indicator *,
  .gallery-hero .scroll-indicator {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }
}
/* CONTACT HERO */
.contact-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(253,242,84,0.12), transparent 60%),
    linear-gradient(180deg, #000, #050505);
}

/* Animated glow */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(253,242,84,0.18), transparent 60%);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.9; }
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-eyebrow {
  color: #aaa;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  margin-bottom: 14px;
}

.contact-title {
  font-size: clamp(40px, 6vw, 72px);
  color: #FDF254;
  margin-bottom: 16px;
}

.contact-subtitle {
  color: #ddd;
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}
.contact-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}

.contact-stats div {
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-stats div:hover {
  transform: translateY(-6px);
}

.contact-stats strong {
  display: block;
  font-size: 28px;
  color: #FDF254;
}

.contact-stats span {
  font-size: 13px;
  color: #aaa;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-stats {
    flex-direction: column;
    gap: 18px;
  }
}
/* =====================================
   WORK PAGE – DESKTOP MANUAL SCROLL
   (DO NOT AFFECT MOBILE)
===================================== */
@media (min-width: 769px) {

  /* Instagram manual scroll */
  .instagram-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    cursor: grab;
  }

  .instagram-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .instagram-scroll::-webkit-scrollbar-thumb {
    background: #fdf254;
    border-radius: 10px;
  }

  /* YouTube manual scroll */
  .youtube-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    cursor: grab;
  }

  .youtube-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .youtube-scroll::-webkit-scrollbar-thumb {
    background: #fdf254;
    border-radius: 10px;
  }
}
/* ===============================
   FOUNDER JOURNEY ROAD
================================ */

.journey-road {
  position: relative;
  max-width: 900px;
  height: 70px;
  margin: 50px auto 70px;
  overflow: hidden;
}

.road-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(253, 242, 84, 0.6),
    transparent
  );
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(253,242,84,0.35);
}

.car {
  position: absolute;
  top: 50%;
  left: -60px;
  font-size: 32px;
  transform: translateY(-50%);
  animation: driveJourney 14s linear infinite;
  filter: drop-shadow(0 0 10px rgba(253,242,84,0.8));
}

/* Car movement */
@keyframes driveJourney {
  0% {
    left: -60px;
  }
  100% {
    left: 100%;
  }
}

/* Mobile safety */
@media (max-width: 768px) {
  .journey-road {
    display: none;
  }
}
/* ===============================
   REAL CAR JOURNEY ANIMATION
================================ */

.journey-road {
  position: relative;
  max-width: 900px;
  height: 80px;
  margin: 50px auto 70px;
  overflow: hidden;
}

/* Road */
.road-line {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(253,242,84,0.6),
    transparent
  );
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(253,242,84,0.35);
}

/* Car wrapper */
.car-wrapper {
  position: absolute;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
  animation: carJourney 16s ease-in-out infinite;
}

/* Real car image */
.car-img {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.8));
}

/* Headlight glow */
.headlight {
  position: absolute;
  right: -28px;
  top: 50%;
  width: 30px;
  height: 10px;
  background: radial-gradient(
    circle,
    rgba(253,242,84,0.9),
    rgba(253,242,84,0.2),
    transparent
  );
  transform: translateY(-50%);
  filter: blur(2px);
  opacity: 0.8;
}

/* ===============================
   FORWARD → PAUSE → REVERSE
================================ */
@keyframes carJourney {
  0% {
    left: -120px;
    transform: translateY(-50%) scaleX(1);
  }

  45% {
    left: calc(100% - 90px);
    transform: translateY(-50%) scaleX(1);
  }

  50% {
    left: calc(100% - 90px);
    transform: translateY(-50%) scaleX(1);
  }

  /* Reverse direction */
  55% {
    left: calc(100% - 90px);
    transform: translateY(-50%) scaleX(-1);
  }

  100% {
    left: -120px;
    transform: translateY(-50%) scaleX(-1);
  }
}

/* Mobile safety */
@media (max-width: 768px) {
  .journey-road {
    display: none;
  }
}
/* ===============================
   REAL CAR – FORWARD & REVERSE
================================ */

.journey-road {
  position: relative;
  max-width: 900px;
  height: 90px;
  margin: 55px auto 75px;
  overflow: hidden;
}

/* Road line */
.road-line {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(253,242,84,0.6),
    transparent
  );
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(253,242,84,0.35);
}

/* Car wrapper */
.car-wrapper {
  position: absolute;
  top: 50%;
  left: -140px;
  transform: translateY(-50%);
  animation: carDrive 18s ease-in-out infinite;
}

/* Car image */
.car-img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.85));
}

/* Headlight glow */
.headlight {
  position: absolute;
  right: -35px;
  top: 50%;
  width: 40px;
  height: 14px;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse,
    rgba(253,242,84,0.95),
    rgba(253,242,84,0.4),
    transparent
  );
  filter: blur(3px);
  opacity: 0.9;
}

/* ===============================
   ANIMATION LOGIC
   → Forward
   → Pause
   ← Reverse
================================ */
@keyframes carDrive {
  0% {
    left: -140px;
    transform: translateY(-50%) scaleX(1);
  }

  45% {
    left: calc(100% - 130px);
    transform: translateY(-50%) scaleX(1);
  }

  /* Pause at end */
  50% {
    left: calc(100% - 130px);
    transform: translateY(-50%) scaleX(1);
  }

  /* Flip for reverse */
  55% {
    left: calc(100% - 130px);
    transform: translateY(-50%) scaleX(-1);
  }

  100% {
    left: -140px;
    transform: translateY(-50%) scaleX(-1);
  }
}

/* Mobile safety */
@media (max-width: 768px) {
  .journey-road {
    display: none;
  }
}
.car-img {
  display: block;
}
.car-wrapper img {
  backface-visibility: hidden;
}

/* ===============================
   FOUNDER JOURNEY TIMELINE
================================ */

.founder-story {
  max-width: 900px;
  margin: 70px auto;
  padding-left: 50px;
  position: relative;
}

/* Vertical road */
.founder-story::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(253,242,84,0.7),
    transparent
  );
  box-shadow: 0 0 25px rgba(253,242,84,0.4);
}

/* Each paragraph block */
.story-block {
  position: relative;
  margin-bottom: 45px;
  opacity: 0;
  transform: translateY(30px);
  animation: revealStory 0.8s ease forwards;
}

/* Delay animation per block */
.story-block:nth-child(1) { animation-delay: .1s; }
.story-block:nth-child(2) { animation-delay: .25s; }
.story-block:nth-child(3) { animation-delay: .4s; }
.story-block:nth-child(4) { animation-delay: .55s; }
.story-block:nth-child(5) { animation-delay: .7s; }

/* Yellow dot */
.story-dot {
  position: absolute;
  left: -42px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #fdf254;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(253,242,84,0.9);
}

/* Paragraph style */
.story-block p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #f1f1f1;
}

/* Reveal animation */
@keyframes revealStory {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .founder-story {
    padding-left: 30px;
  }
}
/* ===============================
   FOUNDER STORY BACKGROUND CARD
================================ */

.founder-story-card {
  position: relative;
  margin-top: 40px;
  padding: 60px 50px;
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.01)
    );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.7),
    0 0 40px rgba(253,242,84,0.08);
}

/* Soft glow edges */
.founder-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(253,242,84,0.12),
    transparent
  );
  pointer-events: none;
}

/* Keep timeline above card */
.founder-story {
  position: relative;
  z-index: 2;
}

/* Improve text contrast */
.story-block p {
  color: #f5f5f5;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .founder-story-card {
    padding: 40px 22px;
  }
}
/* ===== SOFTER & CUTER BACKGROUND ===== */

.founder-story-card {
  background: linear-gradient(
    160deg,
    rgba(20,20,20,0.92),
    rgba(10,10,10,0.98)
  );

  box-shadow:
    0 20px 50px rgba(0,0,0,0.85),
    inset 0 0 60px rgba(253,242,84,0.04);
}

/* Reduce yellow brightness */
.story-dot {
  background: #f5e96d;
  box-shadow: 0 0 12px rgba(245,233,109,0.6);
}

/* Softer timeline line */
.founder-story::before {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(245,233,109,0.45),
    transparent
  );
  box-shadow: 0 0 15px rgba(245,233,109,0.3);
}

/* Slightly smaller, cuter text */
.story-block p {
  font-size: 16px;
  color: #eeeeee;
}
/* ===== DARK MODE TOGGLE ===== */

.mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  z-index: 9999;
  transition: all 0.3s ease;
}

.mode-toggle:hover {
  background: rgba(253,242,84,0.15);
}
/* ===== SOFT MODE ===== */

body.soft-mode {
  background: #0c0c0c;
}

body.soft-mode .founder-story-card {
  background: linear-gradient(
    160deg,
    rgba(30,30,30,0.95),
    rgba(15,15,15,0.98)
  );
}
/* ===== VERY CLEAR STORY CARD ===== */

.founder-story-card {
  position: relative;
  margin-top: 40px;
  padding: 60px 60px;
  border-radius: 24px;

  background: rgba(15, 15, 15, 0.95); /* SOLID DARK */
  border: 1px solid rgba(253, 242, 84, 0.25);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.9),
    inset 0 0 0 1px rgba(253,242,84,0.12);

  transition: all 0.4s ease;
}
/* Active dot */
.story-block.active .story-dot {
  background: #fdf254;
  box-shadow: 0 0 18px rgba(253,242,84,1);
  transform: scale(1.3);
}

/* Active text highlight */
.story-block.active p {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(253,242,84,0.25);
}
body.soft-mode .founder-story-card {
  background: #0b0b0b;
  border-color: rgba(253,242,84,0.4);
}

body.soft-mode .story-block p {
  color: #e6e6e6;
}
/* ===== FOUNDER NAME HIGHLIGHT ===== */

.founder-name {
  font-weight: 700;
  font-size: 18px;
  color: #fdf254;

  padding: 4px 10px;
  border-radius: 8px;

  background: linear-gradient(
    to right,
    rgba(253,242,84,0.18),
    rgba(253,242,84,0.05)
  );

  box-shadow: 0 0 14px rgba(253,242,84,0.35);
  letter-spacing: 0.3px;
}
/* ===== CLEAN FOUNDER NAME (NO YELLOW BG) ===== */

.founder-name {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 2;
}
/* ===== THREE.JS FOUNDER EFFECT ===== */

.founder-3d {
  display: inline-block;
  position: relative;
  margin-right: 6px;
}

.founder-3d canvas {
  position: absolute;
  top: -12px;
  left: -14px;
  z-index: 1;
  pointer-events: none;
}
/* ===== THREE.JS BACKGROUND ===== */

#three-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.founder-container {
  position: relative;
  z-index: 2;
}
/* ===== FINAL SUCCESS MOMENT ===== */

.story-block:last-child p {
  background: linear-gradient(
    90deg,
    #fdf254,
    #ffffff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: successGlow 4s ease forwards;
}

@keyframes successGlow {
  from {
    filter: drop-shadow(0 0 10px rgba(253,242,84,0.6));
  }
  to {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
  }
}
#founder-intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #111 0%, #000 75%);
  z-index: 99999;
  pointer-events: none;

  opacity: 1;   
  visibility: visible; 

  transition: opacity 0.5s ease;
}

#founder-intro.hide {
  opacity: 0;
}

/* ===============================
   BLOG HERO
================================ */
.blog-hero {
  padding: 90px 20px 40px;
  text-align: center;
  background: #ffffff;
  color: #000;
}

.blog-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-hero p {
  font-size: 17px;
  color: #555;
  max-width: 760px;
  margin: auto;
}

/* ===============================
   BLOG GRID
================================ */
.blog-grid {
  max-width: 1200px;
  margin: 70px auto 100px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

/* ===============================
   BLOG CARD
================================ */
.blog-card-modern {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===============================
   BLOG IMAGE
================================ */
.blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ===============================
   BLOG CONTENT
================================ */
.blog-content {
  padding: 22px 24px 24px;
}

.blog-meta-top {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

/* ===============================
   BLOG TITLE
================================ */
.blog-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #111;
}

/* ===============================
   BLOG EXCERPT
================================ */
.blog-excerpt {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===============================
   BLOG AUTHOR
================================ */
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.blog-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===============================
   BLOG CTA
================================ */
.blog-cta {
  padding: 90px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
}

.blog-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.blog-cta p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fdf254;
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 12px;
  box-shadow: 0 10px 30px rgba(253,242,84,0.45);
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.cta-whatsapp {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #25D366;
  color: #25D366;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-whatsapp:hover {
  background: #25D366;
  color: #000;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-hero h1 {
    font-size: 32px;
  }

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

  .blog-thumb img {
    height: 200px;
  }
}
/* ===============================
   BLOG HERO – PREMIUM DARK FIX
================================ */

.blog-hero {
  padding: 70px 20px 55px;
  text-align: center;

  background:
    radial-gradient(circle at top, rgba(253,242,84,0.15), transparent 55%),
    linear-gradient(180deg, #0b0b0b, #000);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Title */
.blog-hero h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 12px;

  color: #fdf254;
  text-shadow: 0 0 18px rgba(253,242,84,0.35);
}

/* Subtitle */
.blog-hero p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #cfcfcf;

  max-width: 760px;
  margin: 0 auto;
}

/* Brand highlight */
.blog-hero p strong {
  color: #ffffff;
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 600px) {
  .blog-hero {
    padding: 55px 18px 45px;
  }

  .blog-hero h1 {
    font-size: 30px;
  }

  .blog-hero p {
    font-size: 15px;
  }
}

/* ===============================
   FULL BLOG CARD CLICK FIX
================================ */

/* Card must be relative */
.blog-card-modern {
  position: relative;
  cursor: pointer;
}

/* Invisible clickable overlay */
.blog-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-decoration: none;
}

/* Keep content above overlay visually */
.blog-thumb,
.blog-content {
  position: relative;
  z-index: 6;
}

/* Visual hint on hover */
.blog-card-modern:hover {
  transform: translateY(-8px);
}

.blog-card-modern:hover .blog-title {
  text-decoration: underline;
}

.testimonial-title {
  animation: none !important;
}

/* WhatsApp button – black text & perfect alignment */
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #000000 !important;
  font-weight: 600;
  line-height: 1;

  background: linear-gradient(135deg, #25D366, #1EBE5D);
}

.cta-whatsapp img {
  width: 22px;
  height: 22px;
  display: block;
}
/* Fix black screen on portfolio page */
body {
  overflow-y: auto !important;
}

.portfolio,
.portfolio-section,
.portfolio-page {
  min-height: auto !important;
  background: transparent !important;
}
#founder-intro,
#three-bg {
  display: none !important;
}
/* ===============================
   PORTFOLIO PAGE – WHATSAPP CTA
================================ */

.cta-whatsapp-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #25D366 !important;
  border: 2px solid #25D366 !important;
  background: transparent;

  font-weight: 600;
}

.cta-whatsapp-portfolio .wa-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(84%) saturate(412%) hue-rotate(84deg);
}

.cta-whatsapp-portfolio:hover {
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #000 !important;
}

.cta-whatsapp-portfolio:hover .wa-icon {
  filter: brightness(0) invert(1);
}
/* REAL WHATSAPP BUTTON – PORTFOLIO PAGE */

.cta-whatsapp-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #25D366 !important;
  border: 2px solid #25D366 !important;
  background: transparent;

  font-weight: 600;
}

.cta-whatsapp-portfolio .wa-icon {
  width: 20px;
  height: 20px;
  color: #25D366;
}

.cta-whatsapp-portfolio:hover {
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #000 !important;
}

.cta-whatsapp-portfolio:hover .wa-icon {
  color: #000;
}
/* SERVICES PAGE HERO BACKGROUND */
.service-hero {
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("/demo/bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===============================
   GALLERY HERO – FIXED & VERIFIED
================================ */

.gallery-hero {
  min-height: 100vh;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.9)
    ),
    url("/demo/bg.jpg") !important;

  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 140px 20px 80px;
}
/* ===============================
   BLOG CARD CLICK FIX
================================ */

/* Parent must be relative */
.blog-card-modern {
  position: relative;
}

/* Full clickable overlay */
.blog-card-overlay {
  position: absolute;
  inset: 0;

  z-index: 5;               /* ABOVE content */
  cursor: pointer;

  text-indent: -9999px;    /* hide text if any */
}

/* Keep content visible but below overlay */
.blog-card-modern * {
  position: relative;
  z-index: 1;
}
/* ===============================
   BLOG GRID – PREMIUM UI
================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 80px 6%;
}

/* Link wrapper */
.blog-card-link {
  text-decoration: none;
  color: inherit;
}

/* Card */
.blog-card-modern {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: all 0.45s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover WOW */
.blog-card-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

/* Image */
.blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content */
.blog-content {
  padding: 26px 26px 30px;
}

/* Meta */
.blog-meta-top {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

/* Title */
.blog-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #111;
  margin-bottom: 12px;
}

/* Description */
.blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Author */
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.blog-author img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.blog-author span {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Accent underline on hover */
.blog-card-modern:hover .blog-title {
  color: #fdf254;
}
.blog-read-more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #fdf254;
  letter-spacing: 0.3px;
}
/* ===============================
   BLOG CARDS – GOLDEN PALETTE
================================ */

.blog-card-modern {
  background: linear-gradient(
    145deg,
    #fff6c2,
    #f5d76e,
    #e6b800
  );

  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(255, 215, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: all 0.4s ease;
}

/* Hover premium effect */
.blog-card-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(255, 215, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.blog-title {
  color: #1a1a1a;
}

.blog-excerpt {
  color: #333;
}

.blog-meta-top {
  color: #5c4a00;
  font-weight: 500;
}

.blog-author span {
  color: #1a1a1a;
}
/* ===============================
   BLOG GRID – 3 COLUMNS
================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 6%;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   BLOG CARD – FORCE TEXT BLACK
   EVEN ON HOVER
================================ */

/* Titles */
.blog-card-modern,
.blog-card-modern:hover {
  color: #111 !important;
}

.blog-card-modern .blog-title,
.blog-card-modern:hover .blog-title {
  color: #111 !important;
}

/* Excerpt text */
.blog-card-modern .blog-excerpt,
.blog-card-modern:hover .blog-excerpt {
  color: #222 !important;
}

/* Meta (date / read time) */
.blog-card-modern .blog-meta-top,
.blog-card-modern:hover .blog-meta-top {
  color: #4a3b00 !important;
}

/* Author text */
.blog-card-modern .blog-author span,
.blog-card-modern:hover .blog-author span {
  color: #111 !important;
}

/* Read more link */
.blog-card-modern a,
.blog-card-modern:hover a {
  color: #111 !important;
  text-decoration: none;
}
/* ===============================
   BLOG CARD FOOTER ALIGNMENT FIX
================================ */

.blog-card-modern .blog-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

/* Left: Read more */
.blog-card-modern .read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #111 !important;
  font-size: 14px;
  white-space: nowrap;
}

/* Right: Brand name */
.blog-card-modern .brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111 !important;
  font-size: 14px;
}

/* Logo size fix */
.blog-card-modern .brand-name img {
  width: 20px;
  height: auto;
  object-fit: contain;
}

/* Prevent hover color change */
.blog-card-modern:hover .read-more,
.blog-card-modern:hover .brand-name {
  color: #111 !important;
}
/* ===============================
   BLOG CARD PERFECT ALIGNMENT
================================ */

/* Make card a vertical layout */
.blog-card-modern {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Content should stretch */
.blog-card-modern .blog-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Push footer to bottom */
.blog-card-modern .blog-author {
  margin-top: auto;   /* THIS IS THE KEY */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
}

/* Read more */
.blog-card-modern .read-more {
  font-weight: 600;
  color: #111 !important;
  font-size: 14px;
  white-space: nowrap;
}

/* Brand */
.blog-card-modern .brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111 !important;
  font-size: 14px;
}

/* Logo size */
.blog-card-modern .brand-name img {
  width: 18px;
  height: auto;
}
/* ===============================
   FORCE BLOG LOGO TO BLACK
================================ */

.blog-card-modern .brand-name img {
  filter: brightness(0) saturate(100%);
}
/* ===============================
   BLOG FOOTER – PERFECT ALIGNMENT
================================ */

.blog-card-modern {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-modern .blog-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Footer sticks to bottom */
.blog-card-modern .blog-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}

/* Read more */
.blog-card-modern .read-more {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* Brand container */
.blog-card-modern .brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* FCA mark (logo replacement) */
.blog-card-modern .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 18px;
  border-radius: 4px;
  background: #111;
  color: #f5c400;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
/* ===============================
   FIX BLOG FOOTER ALIGNMENT
================================ */

.blog-card-modern .blog-author {
  display: flex;
  align-items: center;        /* KEY FIX */
  justify-content: space-between;
  gap: 16px;
}

/* Read more alignment */
.blog-card-modern .read-more {
  display: inline-flex;
  align-items: center;
  line-height: 1;             /* IMPORTANT */
  padding-top: 1px;           /* MICRO ADJUST */
}

/* Brand alignment */
.blog-card-modern .brand-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;             /* IMPORTANT */
}

/* FCA block */
.blog-card-modern .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 18px;
  margin-top: 0;              /* REMOVE OFFSET */
}

/* ===============================
   GALLERY TEXT SPACING FIX
================================ */

/* main subtitle paragraph */
.gallery-hero p,
.gallery-subtitle {
  line-height: 1.7;          /* space between lines */
  margin-top: 14px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

/* second line (services list) */
.gallery-hero p span,
.gallery-services {
  display: block;            /* force new line */
  margin-top: 10px;
  line-height: 1.8;
  opacity: 0.9;
}

/* mobile refinement */
@media (max-width: 768px) {
  .gallery-hero p,
  .gallery-subtitle {
    font-size: 15px;
    line-height: 1.8;
    padding: 0 16px;          /* breathing space on sides */
    text-align: center;
  }
}
/* ===============================
   GALLERY MOBILE FIX (NO DESKTOP CHANGE)
================================ */
@media (max-width: 768px) {

  /* Prevent tap/hover collapse */
  .gallery-card {
    transform: none !important;
  }

  /* Lock image shape */
  .gallery-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;   /* keeps image stable */
    object-fit: cover;
    display: block;
  }

  /* Disable hover animation on mobile */
  .gallery-card:hover,
  .gallery-card:active {
    transform: none !important;
  }

  /* Overlay stability */
  .gallery-overlay {
    pointer-events: none;
  }
}
/* ===============================
   MOBILE GALLERY IMAGE FULL RECTANGLE
================================ */
@media (max-width: 768px) {

  /* Card structure */
  .gallery-card {
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
  }

  /* Make image FULLY fill the card */
  .gallery-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin: 0;
  }

  /* Keep title ABOVE image (no change in behavior) */
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    padding: 14px 16px;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0)
    );

    text-align: left;
  }

  /* Prevent tap animation issues */
  .gallery-card:hover,
  .gallery-card:active {
    transform: none !important;
  }
}

/* ===============================
   MOBILE HERO FIX (ONLY MOBILE)
================================ */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 96px 16px 40px;
    background-position: center top;
  }

  /* reduce background dominance */
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.22),
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.30)
    );
  }

  .hero-content {
    gap: 12px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.4;
    max-width: 320px;
  }

  .hero-services {
    font-size: 13px;
    gap: 6px;
    text-align: center;
  }

  /* FIX BUTTON STACKING */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 320px;
    padding: 14px 16px;
    font-size: 14px;
  }

}

/* LOCATION ACTION BUTTON – PREMIUM */
.location-action {
  display: flex;
  justify-content: center;
  margin: 30px 0 40px;
}

.location-btn {
  background: linear-gradient(135deg, #ffe84d, #ffcc00);
  color: #111;
  border: none;

  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 40px;

  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 15px 40px rgba(255, 200, 0, 0.45);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

/* Hover */
.location-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 22px 55px rgba(255, 200, 0, 0.65);
}

/* Click */
.location-btn:active {
  transform: scale(0.96);
}
@media (max-width: 768px) {
  .location-btn {
    width: 92%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 20px;
  }
}

/* LOCATION SCROLL LINE */
.location-scroll-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.scroll-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffe84d, #ffcc00);
  border-radius: 10px;
  transition: width 0.2s ease;
}

.card-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
}

.card-container::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.toggle-buttons {
  text-align: center;
  margin-bottom: 10px;
}

.toggle-buttons button {
  padding: 8px 15px;
  font-size: 18px;
  cursor: pointer;
}




.locations-grid {
  position: relative;
}

/* ARROWS */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: gold;
  border: 1px solid gold;
  font-size: 26px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.scroll-arrow:hover {
  background: gold;
  color: black;
}

.scroll-arrow.left {
  left: -20px;
}

.scroll-arrow.right {
  right: -20px;
}
.card-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.card-container::-webkit-scrollbar {
  display: none;
}

/* HIDE SCROLL ARROWS IN MOBILE */
@media (max-width: 768px) {
  .scroll-arrow {
    display: none;
  }
}

/* ===============================
   LOCATIONS MOBILE REVERT FIX
================================ */
@media (max-width: 768px) {

  .locations-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 18px;
    padding: 10px 0;
    grid-template-columns: none !important;
  }

  .location-card {
    min-width: 85%;
    max-width: 85%;
    flex: 0 0 auto;
    min-height: auto !important;
  }

  .map-wrap iframe,
  .location-card iframe {
    height: 220px !important;
  }

}
@media (max-width: 768px) {
  .branch-dots {
    display: none !important;
  }
}

/* ===============================
   DESKTOP – COMING SOON PEEK
================================ */
@media (min-width: 1200px) {

  .locations-section {
    overflow: hidden;
  }

  .locations-grid {
    width: 92%;          /* shrink grid slightly */
    margin: auto;
  }

  .card-container {
    padding-right: 140px; /* space for half card */
  }

  .location-card.coming-soon {
    opacity: 0.85;        /* light / teaser look */
  }

  .location-card.coming-soon:hover {
    opacity: 1;
  }
}

.location-card iframe {
  pointer-events: auto;
  touch-action: pan-x pan-y;
}

.map-wrap {
  touch-action: auto;
}

.card-container {
  touch-action: pan-x; /* horizontal scroll only */
}

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 80px 20px;
  background: #0b0b0b;
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* GLOW EFFECT */
.faq-item.active {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.6);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 18px 20px;
  font-size: 16px;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  background: #1a1a1a;
}

/* ICON ROTATION */
.faq-icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* SMOOTH ACCORDION */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #151515;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

/* REVEAL ANIMATION */

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 60px 8%;
  background: radial-gradient(circle at top, #111, #000);
  max-width: 1000px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.faq-question {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #0b0b0b;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin: 12px 0;
  line-height: 1.6;
}



.faq-item.active .faq-icon {
 


 transform: rotate(45deg);
}

/* ===============================
   SEO CONTENT SECTION – FINAL CLEAN
================================ */

.seo-content {
  padding: 45px 20px 80px;
  background: radial-gradient(circle at top, #111, #000);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.seo-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Main Heading */
.seo-content h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #fdf254;
  margin-bottom: 30px;
  position: relative;
  padding-left: 18px;
  text-shadow: 0 0 18px rgba(255,235,59,0.18);
}

.seo-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #fdf254;
  border-radius: 10px;
}

/* Sub Headings */
.seo-content h3 {
  font-size: 21px;
  font-weight: 600;
  color: #ffe84d;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Paragraphs */
.seo-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #d6d6d6;
  margin-bottom: 26px;
}