/* ==========================================================
   GIRIRAJ PAINTS - style.css
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #f4692a;          /* orange */
  --primary-dark: #d94f10;
  --secondary: #009448;        /* green */
  --dark: #17303a;
  --text: #4a5560;
  --light: #f6f9fc;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --transition: .3s ease;
}

/* ---------- Reset / Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--primary); color: #fff; }

.section { max-width: 1200px; margin: 0 auto; padding: 70px 20px; }
.section-title {
  color: var(--dark);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  margin-top: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.center { text-align: center; }
.center.section-title::after,
.section-title.center::after { margin-left: auto; margin-right: auto; }
.section-sub { max-width: 700px; margin: 0 auto 45px; }

/* ==========================================================
   CAPSULE NAVBAR
   ========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  padding: 10px 4%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
}
.navbar.capsule {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 10px 24px;
  box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 46px; width: auto; }
.brand-name { font-weight: 800; color: var(--secondary); font-size: 1.15rem; line-height: 1.1; }
.brand-name small { display: block; color: var(--primary); font-size: .62rem; letter-spacing: 4px; font-weight: 700; }

.nav-menu { display: flex; gap: 6px; }
.nav-link {
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
}
.nav-link:hover { background: rgba(244, 105, 42, .12); color: var(--primary); }
.nav-link.active { background: var(--primary); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle .bar {
  width: 26px; height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==========================================================
   HERO CAROUSEL
   ========================================================== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 72vh, 640px);
  background: #e9eef3;
}
.carousel-track { height: 100%; }
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.carousel-slide.is-active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--primary);
  font-size: 1.1rem;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--primary); color: #fff; }
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }

.carousel-dots {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.carousel-dots .dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  transition: var(--transition);
}
.carousel-dots .dot.active { background: var(--primary); width: 28px; }

/* ==========================================================
   MILESTONE / STATS
   ========================================================== */
.milestone-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 55px;
}
.milestone-media { text-align: center; }
.milestone-media img { width: min(380px, 100%); margin: 0 auto; }
.milestone-tagline { margin-top: 14px; font-size: 1.05rem; color: var(--dark); }
.milestone-tagline strong { font-size: 1.3rem; color: var(--primary); }
.milestone-content p { margin-top: 14px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 16px;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
}
.stat h3 { font-size: 2.1rem; color: var(--primary); }
.stat p { font-weight: 600; color: var(--dark); margin-top: 6px; }
.stat:nth-child(even) { border-top-color: var(--secondary); }
.stat:nth-child(even) h3 { color: var(--secondary); }

/* ==========================================================
   PRODUCT CAROUSEL
   ========================================================== */
.product-carousel { position: relative; }
.product-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 6px 24px;
  scrollbar-width: none;
}
.product-track::-webkit-scrollbar { display: none; }
.product-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-img {
  height: 190px;
  background: var(--light);
  border-radius: 12px;
  padding: 12px;
  display: grid; place-items: center;
}
.product-img img { max-height: 100%; object-fit: contain; }
.product-card h3 { color: var(--dark); font-size: 1.02rem; }
.product-card p { font-size: .88rem; flex-grow: 1; }
.tag {
  align-self: center;
  background: rgba(0, 148, 72, .1);
  color: var(--secondary);
  font-weight: 700; font-size: .7rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.product-carousel .prod-prev { left: -14px; }
.product-carousel .prod-next { right: -14px; }

/* ==========================================================
   CLIENTS (equal-size logo boxes)
   ========================================================== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.client-logo {
  height: 120px;
  background: #fff;
  border: 1px solid #e8ecef;
  border-radius: 14px;
  padding: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.client-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
  transition: var(--transition);
}
.client-logo:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.client-logo:hover img { filter: none; opacity: 1; }

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid #e8ecef;
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 20px;
  font-weight: 700; color: var(--dark);
  text-align: left;
}
.faq-icon {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(244, 105, 42, .12);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 700;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 20px 20px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: #14282f; color: #cfd8dc; margin-top: 40px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 36px;
}
.footer-logo {
  height: 48px; width: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li + li { margin-top: 10px; }
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.contact-list li + li { margin-top: 10px; }
.contact-list a:hover { color: var(--primary); }
.hours-list li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .15);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  padding: 18px;
  font-size: .88rem;
}

/* ==========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 1200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .45);
  animation: wa-pulse 2s infinite;
  transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0; right: 0;
    background: #fff;
    border-radius: 24px;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { display: block; text-align: center; }

  /* hamburger -> X */
  .nav-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open .bar:nth-child(2) { opacity: 0; }
  .nav-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .milestone-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 767px) {
  .section { padding: 55px 16px; }
  .hero-carousel { height: clamp(240px, 55vh, 480px); }
  .carousel-btn { width: 38px; height: 38px; }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
  .product-carousel .prod-prev,
  .product-carousel .prod-next { display: none; }   /* swipe on mobile */
  .product-card { flex: 0 0 220px; }
}

@media (max-width: 576px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-logo { height: 100px; padding: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat h3 { font-size: 1.6rem; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

/* ==========================================================
   ABOUT / INNER PAGES
   ========================================================== */
.page-hero {
  position: relative;
  height: clamp(220px, 40vh, 380px);
  background: center/cover no-repeat var(--dark);
  display: grid; place-items: center;
  text-align: center; color: #fff;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(20, 40, 47, .6); }
.page-hero > div { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: 1px; }
.breadcrumb { margin-top: 8px; font-size: .95rem; }
.breadcrumb a { color: #ffd9c4; }
.breadcrumb a:hover { color: #fff; }

.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.about-grid.reverse { grid-template-columns: 1.2fr 1fr; }
.about-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-content p { margin-bottom: 14px; }
.about-content .tag { margin-bottom: 12px; display: inline-block; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { background: var(--light); border-radius: var(--radius); padding: 30px; border-left: 5px solid var(--primary); box-shadow: var(--shadow); }
.vm-card.green { border-left-color: var(--secondary); }
.vm-card h3 { color: var(--dark); margin-bottom: 10px; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { text-align: center; background: #fff; border: 1px solid #e8ecef; border-radius: var(--radius); padding: 28px 18px; transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; font-size: 1.6rem; background: rgba(244, 105, 42, .12); }
.feature-card:nth-child(even) .feature-icon { background: rgba(0, 148, 72, .12); }
.feature-card h3 { color: var(--dark); font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; }

.cta-section { background: linear-gradient(120deg, var(--primary), var(--primary-dark)); color: #fff; text-align: center; border-radius: 24px; padding: 55px 24px; max-width: 1160px; margin: 0 auto 70px; }
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 10px; color: #fff; }
.cta-section p { max-width: 640px; margin: 0 auto 24px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 999px; font-weight: 700; transition: var(--transition); }
.btn-white { background: #fff; color: var(--primary); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn:hover { transform: translateY(-3px); }

@media (max-width: 900px) {
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; gap: 30px; }
  .vm-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   PRODUCTS PAGE – ANIMATED SHOWCASE
   ========================================================== */
.products-page { position: relative; overflow: hidden; }

/* floating background blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .22; z-index: 0; animation: blob-drift 12s ease-in-out infinite alternate; }
.blob-1 { width: 340px; height: 340px; background: var(--primary); top: 140px; left: -140px; }
.blob-2 { width: 420px; height: 420px; background: var(--secondary); top: 1100px; right: -180px; animation-delay: 2s; }
.blob-3 { width: 300px; height: 300px; background: #ffb35c; bottom: 500px; left: -120px; animation-delay: 4s; }
@keyframes blob-drift { from { transform: translateY(0) scale(1); } to { transform: translateY(70px) scale(1.15); } }

/* category chips pop-in */
.cat-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cat-chip { padding: 8px 20px; border-radius: 999px; border: 2px solid #e3e8ec; font-weight: 700; font-size: .85rem; color: var(--dark); animation: chip-pop .6s backwards; }
.cat-chip:nth-child(1) { animation-delay: .1s; }
.cat-chip:nth-child(2) { animation-delay: .2s; }
.cat-chip:nth-child(3) { animation-delay: .3s; }
.cat-chip:nth-child(4) { animation-delay: .4s; }
.cat-chip.orange { border-color: var(--primary); color: var(--primary); }
.cat-chip.green  { border-color: var(--secondary); color: var(--secondary); }
@keyframes chip-pop { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }

/* showcase cards */
.showcase { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 30px 20px 70px; display: flex; flex-direction: column; gap: 46px; }
.showcase-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #eef1f4;
  box-shadow: 0 14px 40px rgba(23, 48, 58, .10);
  transition: transform .4s ease, box-shadow .4s ease;
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(23, 48, 58, .16); }
.showcase-card.reverse .showcase-media { order: 2; }

.showcase-media {
  position: relative;
  display: grid; place-items: center;
  min-height: 400px;
  padding: 46px 30px;
  background: linear-gradient(145deg, #fff6f0, #eefaf3);
  overflow: hidden;
}
.showcase-media .badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--primary); color: #fff;
  padding: 6px 16px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(244, 105, 42, .35);
  animation: floaty 5s ease-in-out infinite;
}

/* rotating gradient ring */
.ring {
  position: absolute;
  width: min(320px, 72%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--primary), var(--secondary), var(--primary));
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 16px), #000 0);
          mask: radial-gradient(farthest-side, #0000 calc(100% - 16px), #000 0);
  animation: spin 9s linear infinite;
  opacity: .85;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* floating product image */
.float-img {
  position: relative; z-index: 1;
  max-height: 300px; width: auto;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, .18));
  animation: floaty 4.5s ease-in-out infinite;
  transition: transform .4s ease;
}
.showcase-card:hover .float-img { transform: scale(1.07) rotate(-2deg); }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -16px; } }

/* info side */
.showcase-info { padding: 42px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.step-num { font-size: 2.6rem; font-weight: 800; color: rgba(244, 105, 42, .2); line-height: 1; }
.showcase-info h3 { color: var(--dark); font-size: 1.4rem; }
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin: 2px 0 4px; }
.feat li { display: flex; gap: 8px; align-items: flex-start; font-size: .9rem; font-weight: 500; opacity: 0; transform: translateY(14px); transition: all .5s ease; }
.feat li::before { content: "✔"; color: var(--secondary); font-weight: 700; }
.in-view .feat li { opacity: 1; transform: none; }
.in-view .feat li:nth-child(1) { transition-delay: .2s; }
.in-view .feat li:nth-child(2) { transition-delay: .35s; }
.in-view .feat li:nth-child(3) { transition-delay: .5s; }
.in-view .feat li:nth-child(4) { transition-delay: .65s; }

.spec-row { display: flex; gap: 8px; flex-wrap: wrap; }
.spec { background: var(--light); border: 1px dashed #cfd8dd; border-radius: 8px; padding: 4px 12px; font-size: .75rem; font-weight: 700; color: var(--dark); }

.showcase-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 18px rgba(244, 105, 42, .35); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { border: 2px solid var(--secondary); color: var(--secondary); }
.btn-ghost:hover { background: var(--secondary); color: #fff; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* mobile */
@media (max-width: 900px) {
  .showcase-card, .showcase-card.reverse { grid-template-columns: 1fr; }
  .showcase-card.reverse .showcase-media { order: 0; }
  .showcase-media { min-height: 320px; }
  .showcase-info { padding: 28px 22px; }
  .feat { grid-template-columns: 1fr; }
}

/* ==========================================================
   CLIENT PAGE – MARQUEE + WALL OF TRUST
   ========================================================== */
.marquee-section { overflow: hidden; }

.marquee {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee + .marquee { margin-top: 26px; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
.marquee.reverse .marquee-track { animation-name: scroll-right; animation-duration: 36s; }
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-group { display: flex; }

@keyframes scroll-left  { to   { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* logo tiles */
.client-tile {
  position: relative;
  width: 190px; height: 120px;
  margin-right: 24px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e8ecef;
  border-radius: 18px;
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.client-tile img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .35s ease, opacity .35s ease;
}
/* shine sweep */
.client-tile::after {
  content: "";
  position: absolute; top: -60%; left: -80%;
  width: 55%; height: 220%;
  transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent);
  transition: left .6s ease;
  pointer-events: none;
}
.client-tile:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 14px 30px rgba(244, 105, 42, .18);
}
.client-tile:hover img { filter: none; opacity: 1; }
.client-tile:hover::after { left: 130%; }

/* wall of trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}
.trust-grid .client-tile {
  width: 100%; height: 130px;
  margin-right: 0;
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}
.trust-grid .client-tile.in-view {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  transition-delay: 0s;
}

/* mobile */
@media (max-width: 767px) {
  .client-tile { width: 150px; height: 100px; margin-right: 16px; padding: 14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-grid .client-tile { height: 105px; }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.info-card {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(23, 48, 58, .05);
  transition: transform .4s ease, box-shadow .4s ease;
}
.info-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(244, 105, 42, .12); }

.icon-box {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.6rem;
  transition: transform .5s ease;
}
.info-card:hover .icon-box { transform: rotateY(360deg); }
.icon-box.orange { background: var(--primary); }
.icon-box.green  { background: var(--secondary); }
.icon-box svg { width: 32px; height: 32px; }

.info-card h3 { color: var(--dark); margin-bottom: 10px; }
.info-card p { color: var(--text); margin-bottom: 4px; font-weight: 600; }
.info-card a { color: var(--dark); transition: color .2s; }
.info-card a:hover { color: var(--primary); }
.info-card .sub { font-size: .8rem; color: #95a1ab; }

.contact-main { background: var(--light); border-top: 1px solid #eef1f4; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-col h2, .map-col h2 { color: var(--dark); margin-bottom: 8px; }
.form-sub { color: var(--text); margin-bottom: 28px; }

/* Modern floating label form */
.form-group { position: relative; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #dce3e8;
  border-radius: 12px;
  font: inherit;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(244, 105, 42, .1);
}
.contact-form label {
  position: absolute;
  top: 16px; left: 18px;
  color: #95a1ab;
  background: #fff;
  padding: 0 6px;
  pointer-events: none;
  transition: all .2s ease;
}
.contact-form input:focus ~ label,
.contact-form input:not(:placeholder-shown) ~ label,
.contact-form textarea:focus ~ label,
.contact-form textarea:not(:placeholder-shown) ~ label {
  top: -10px; left: 14px;
  font-size: .78rem;
  color: var(--primary);
  font-weight: 600;
}

.btn-block { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; }
.btn-loader { display: none; }

.form-msg { margin-top: 14px; text-align: center; font-weight: 600; min-height: 20px; }
.form-msg.success { color: var(--secondary); }
.form-msg.error { color: #e63946; }

.map-wrapper{
  position: relative;      /* ADD this to your existing .map-wrapper rule */
}

.map-wrapper iframe{
  position: absolute;
  inset: 0;                /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  border: 4px solid #fff;
}
.map-wrapper iframe { display: block; }

.address-box {
  margin-top: 20px;
  background: #fff;
  padding: 18px;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-size: .92rem;
  line-height: 1.6;
}

/* mobile */
@media (max-width: 900px) {
  .info-cards { grid-template-columns: 1fr; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================
   CLIENT LOGOS – ALWAYS FULL COLOR (no grayscale)
   ========================================================== */
.client-logo img,
.client-tile img {
  filter: none !important;
  opacity: 1 !important;
}

/* ==========================================================
   FIX: MOBILE HERO – SHOW FULL BANNER (NO CROPPING)
   ========================================================== */
@media (max-width: 767px) {
  .hero-carousel {
    height: auto;          /* remove the fixed height on mobile */
    aspect-ratio: 9 / 10;  /* same ratio as your 900 × 1000 banner */
  }
}