/* ============================================================
   SIKRU Enterprises — Premium B2B Optical Wholesale Website
   ============================================================ */

:root {
  --blue: #0056D6;
  --blue-dark: #003ea1;
  --blue-light: #e8f0ff;
  --blue-600: #1f6bff;
  --grey: #6B7280;
  --grey-light: #9aa3b2;
  --ink: #0f1b2d;
  --ink-soft: #44516a;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --line: #e4e9f2;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(15, 27, 45, .06);
  --shadow: 0 14px 40px rgba(15, 27, 45, .10);
  --shadow-lg: 0 24px 60px rgba(0, 86, 214, .18);
  --grad: linear-gradient(135deg, #0056D6 0%, #1f6bff 55%, #4f9bff 100%);
  --grad-soft: linear-gradient(135deg, #eaf1ff 0%, #f7faff 100%);
  --font: 'Inter', system-ui, sans-serif;
  --head: 'Poppins', system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1200px;
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.2; color: var(--ink); font-weight: 700; }
section { position: relative; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 26px 0; }
.alt-bg { background: var(--bg-alt); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: .95rem;
  font-family: var(--head); letter-spacing: .2px; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap; border: 2px solid transparent;
}
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn i { font-size: .9em; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px rgba(0, 86, 214, .32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 86, 214, .42); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--blue); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn-whatsapp:hover { transform: translateY(-3px); background: #1eb858; }
.btn-block { width: 100%; justify-content: center; }
.link-btn { color: var(--blue); font-weight: 600; text-decoration: underline; background: none; padding: 0; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999; background: #fff;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-logo { width: 190px; }
.loader-ring {
  position: absolute; width: 90px; height: 90px; border-radius: 50%;
  border: 3px solid var(--blue-light); border-top-color: var(--blue);
  animation: spin .9s linear infinite; margin-bottom: 70px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Top bar ---------- */
.topbar { background: #303030; color: #cdd6e6; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #cdd6e6; transition: color .25s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left i, .topbar-right i { color: var(--blue-600); margin-right: 5px; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a:hover { color: var(--blue-600); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); transition: box-shadow .35s, padding .35s, background .35s;
  border-bottom: 1px solid var(--line);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 60px; transition: min-height .35s; padding:2px 8px; }
.header.scrolled .header-inner { min-height: 60px; }
.brand-logo { height: 65px; width: auto; transition: height .35s; }
.header.scrolled .brand-logo { height: 65px; }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 10px;
  font-family: var(--head); font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  position: relative; transition: color .25s, background .25s;
}
.nav-link i { font-size: .7rem; transition: transform .3s; }
.nav-link::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); border-radius: 2px; }
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 5px; }
.icon-btn { width: 35px; height: 35px; border-radius: 50%; display: grid; place-items: center; color: var(--bg-alt); background: var(--ink); transition: .25s; }
.icon-btn:hover { background: var(--blue); color: #fff; }

/* Dropdown menu (Products) */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 6px 0; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  border: 1px solid var(--line); z-index: 950;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a {
  display: block; padding: 6px 20px; color: var(--ink-soft); font-size: .9rem;
  transition: color .18s, background .18s, padding-left .18s; white-space: nowrap;
}
.dropdown-menu li a:hover { color: var(--blue); background: var(--bg-alt); padding-left: 26px; }
.nav-chevron { font-size: .7rem; transition: transform .25s var(--ease); }
.has-dropdown:hover .nav-chevron,
.has-dropdown.open .nav-chevron { transform: rotate(180deg); }

/* Search */
.search-bar { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.search-bar.open { max-height: 100px; }
.search-form { display: flex; align-items: center; gap: 12px; padding: 20px 0; }
.search-form i.fa-magnifying-glass { color: var(--blue); font-size: 1.1rem; }
.search-form input { flex: 1; border: none; background: none; font-size: 1.05rem; padding: 6px; outline: none; color: var(--ink); }
.search-close { color: var(--grey); font-size: 1.2rem; width: 36px; height: 36px; }

/* Hamburger */
.hamburger { display: none; width: 36px; height: 36px; border-radius: 10px; background: var(--bg-alt); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: -340px; width: 320px; max-width: 88vw;
  height: 100dvh; background: #fff; z-index: 1000;
  box-shadow: -10px 0 40px rgba(0,0,0,.18); transition: right .4s var(--ease);
  display: flex; flex-direction: column; overflow: hidden;
}
.mobile-menu.open { right: 0; }

.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.mm-logo { height: 38px; width: auto; }
.mm-close {
  width: 38px; height: 38px; border-radius: 50%; background: var(--bg-alt);
  display: grid; place-items: center; color: var(--ink); font-size: 1.1rem; transition: .25s;
}
.mm-close:hover { background: var(--blue); color: #fff; }

.mm-nav { flex: 1; overflow-y: auto; padding: 10px 10px; display: flex; flex-direction: column; gap: 2px; }

.mm-link {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px;
  font-family: var(--head); font-weight: 500; font-size: .95rem; color: var(--ink);
  transition: background .22s, color .22s; width: 100%; text-align: left;
}
.mm-link:hover, .mm-link.active { background: var(--blue-light); color: var(--blue); }
.mm-link.active { font-weight: 600; }

.mm-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--bg-alt);
  display: grid; place-items: center; color: var(--blue); font-size: .88rem;
  flex-shrink: 0; transition: background .22s, color .22s;
}
.mm-link:hover .mm-icon, .mm-link.active .mm-icon { background: var(--blue); color: #fff; }

/* Products accordion */
.mm-accordion { border-radius: 12px; }
.mm-chevron { margin-left: auto; font-size: .68rem; color: var(--grey-light); transition: transform .32s var(--ease), color .22s; }
.mm-accordion.open > .mm-acc-toggle .mm-chevron { transform: rotate(180deg); color: var(--blue); }
.mm-accordion.open > .mm-acc-toggle { background: var(--blue-light); color: var(--blue); border-radius: 12px 12px 0 0; }
.mm-accordion.open > .mm-acc-toggle .mm-icon { background: var(--blue); color: #fff; }

.mm-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .42s var(--ease), padding .3s;
  background: #c7dcff; border-radius: 0 0 12px 12px; padding: 0 8px;
}
.mm-accordion.open .mm-acc-body { max-height: 700px; padding: 4px 8px 14px; }

.mm-acc-group { padding-top: 12px; }
.mm-acc-label {
  display: block; font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--blue); padding: 0 6px 6px;
  border-bottom: 1px solid var(--line); margin-bottom: 4px;
}
.mm-sub-link {
  display: flex; align-items: center; gap: 8px; padding: 8px 8px; border-radius: 8px;
  font-size: 1rem; color: #1b202a; transition: background .2s, color .2s, padding-left .2s;
}
.mm-sub-link::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--grey-light); flex-shrink: 0; transition: background .2s;
}
.mm-sub-link:hover { background: #fff; color: var(--blue); padding-left: 14px; }
.mm-sub-link:hover::before { background: var(--blue); }

/* Footer */
.mm-footer { padding: 14px 16px 22px; border-top: 1px solid var(--line); background: var(--bg-alt); flex-shrink: 0; }
.mm-footer-info {
  display: flex; flex-direction: column; gap: 7px; margin-top: 12px; font-size: .8rem;
}
.mm-footer-info a, .mm-footer-info span { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.mm-footer-info a { color: var(--blue); }
.mm-footer-info i { color: var(--blue-600); width: 14px; text-align: center; }

.overlay { position: fixed; inset: 0; background: rgba(8,15,30,.5); z-index: 990; opacity: 0; visibility: hidden; transition: .35s; backdrop-filter: blur(2px); }
.overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  /* Banner slider sized for 1600 x 660 images (41.25% of width = same aspect), capped at 660px */
  position: relative; height: min(660px, 41.25vw); min-height: 320px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(120deg, #021b4d 0%, #0046b3 45%, #0056D6 100%);
  color: #fff; overflow: hidden; padding: 0;
}
.hero::before { content: ""; position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1551601651-2a8555f1a136?auto=format&fit=crop&w=1600&q=70") center/cover; opacity: .35; z-index: 0; }
/* ===== Inner page banner / breadcrumb ===== */
.page-banner { position: relative; padding: 50px 0 56px; margin-top: 0; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, #021b4d 0%, #0046b3 55%, #0056D6 100%); }
.page-banner::before { content: ""; position: absolute; inset: 0; background: url("assets/img/banner.jpeg") center/cover; opacity: .18; }
.page-banner-inner { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; letter-spacing: -.5px; margin: 0 0 12px;color:#fff; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #cfe0ff; }
.breadcrumb a { color: #fff; text-decoration: none; opacity: .9; transition: opacity .25s; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb i { font-size: .72rem; opacity: .7; }
.breadcrumb span { color: #ffd54a; font-weight: 500; }
@media (max-width: 768px) { .page-banner { padding: 40px 0 44px; } }

.hero-slider { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slider .swiper-slide { overflow: hidden; }
.hero-slide-img { width: 100%; height: 100%; background-position: center; background-size: cover; }
.hero-slider .swiper-pagination { bottom: 22px; z-index: 4; }
/* Rounded prev/next arrows */
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.85); color: var(--blue); font-size: 1.05rem;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: background .25s, color .25s, transform .25s;
}
.hero-nav:hover { background: var(--blue); color: #fff; }
.hero-prev { left: 22px; }
.hero-next { right: 22px; }
.hero-nav.swiper-button-disabled { opacity: .45; cursor: default; }
@media (max-width: 768px) {
  .hero-nav { width: 40px; height: 40px; font-size: .95rem; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
}
.hero-slider .swiper-pagination-bullet { width: 11px; height: 11px; background: #fff; opacity: .5; transition: opacity .3s, width .3s; }
.hero-slider .swiper-pagination-bullet-active { opacity: 1; width: 28px; border-radius: 6px; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; /*background: linear-gradient(115deg, rgba(2,17,48,.9) 0%, rgba(1,55,140,.72) 50%, rgba(0,86,214,.5) 100%), radial-gradient(circle at 78% 28%, rgba(79,155,255,.4), transparent 58%);*/ }
.hero-content { position: relative; z-index: 3; flex: 1; display: flex; align-items: center; padding-top: 30px; }
.hero-text { max-width: 720px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: 8px 18px; border-radius: 50px; font-size: .82rem; font-weight: 500; backdrop-filter: blur(6px); }
.hero-eyebrow i { color: #ffd54a; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); color: #fff; margin: 22px 0 18px; font-weight: 800; letter-spacing: -.5px; }
.hero p { font-size: clamp(1rem, 1.6vw, 1.18rem); color: #d9e5ff; max-width: 620px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.hero-badges li { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: #e3ecff; }
.hero-badges i { color: #4ade80; }

.scroll-down { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-down a { display: block; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.5); border-radius: 20px; position: relative; }
.scroll-down span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; background: #fff; border-radius: 50%; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:1;top:8px} 100%{opacity:0;top:26px} }

/* ---------- Trusted strip ---------- */
.trusted-strip { background: var(--ink); padding: 28px 0; color: #fff; overflow: hidden; }
.trusted-strip p { text-align: center; text-transform: uppercase; letter-spacing: 2px; font-size: .76rem; color: var(--grey-light); margin-bottom: 18px; color:#87ddff; font-weight: 500; font-size: 15px; }
.trusted-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.trusted-track span { display: inline-flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 500; font-size: 1rem; color: #e8eef9; opacity: .9; }
.trusted-track i { color: var(--blue-600); font-size: 1.2rem; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; color: var(--blue); font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; margin-bottom: 12px; position: relative; padding: 0 4px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -.5px; }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-img { border-radius: 22px; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.img-fallback { background: var(--grad); }
.card-glass { background: rgba(255,255,255,.75); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.6); box-shadow: var(--shadow); }
.about-float { position: absolute; border-radius: 16px; padding: 18px 22px; text-align: center; }
.about-float:first-of-type { top: -22px; left: -22px; }
.about-float .count { font-family: var(--head); font-size: 2rem; font-weight: 800; color: var(--blue); display: block; }
.about-float small { color: var(--ink-soft); font-size: .76rem; }
.about-float-2 { bottom: -22px; right: -18px; display: flex; align-items: center; gap: 12px; text-align: left; }
.about-float-2 i { font-size: 1.6rem; color: var(--blue); }
.about-float-2 strong { display: block; font-family: var(--head); font-size: 1.3rem; color: var(--ink); }
.about-float-2 small { color: var(--ink-soft); font-size: .74rem; }
.about-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.about-content p { color: var(--ink-soft); margin-bottom: 16px; }
.about-highlight { background: var(--grad-soft); border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 14px; padding: 20px 22px; margin: 22px 0; }
.ah-row { color: var(--ink-soft); font-size: .94rem; margin-bottom: 10px !important; }
.ah-tag { display: inline-block; background: var(--grad); color: #fff; font-family: var(--head); font-weight: 600; font-size: .72rem; letter-spacing: .5px; text-transform: uppercase; padding: 3px 12px; border-radius: 50px; margin-right: 8px; }
.ah-quote { color: var(--ink); font-size: 1rem; font-style: italic; margin-bottom: 0 !important; }
.ah-quote i { color: var(--blue); margin-right: 8px; }
.ah-quote strong { color: var(--blue); font-style: normal; }
.about-list { margin: 22px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); font-size: .94rem; }
.about-list i { color: #fff; background: var(--grad); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .65rem; flex-shrink: 0; }
.about-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 26px; }
.about-person { display: flex; align-items: center; gap: 12px; }
.about-person i { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: grid; place-items: center; font-size: 1.1rem; }
.about-person small { display: block; color: var(--grey); font-size: .76rem; }
.about-person strong { font-family: var(--head); color: var(--ink); font-size: .92rem; }

/* ---------- Product cards (carousel) ---------- */
.arrivals-swiper, .testi-swiper { padding: 10px 4px 60px; }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; height: 100%; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-thumb { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--bg-alt); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.08); }
.cat-label { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--grad); color: #fff; font-size: .68rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; letter-spacing: .5px; text-transform: uppercase; }
.quick-view { position: absolute; inset: 0; margin: auto; width: max-content; height: max-content; padding: 10px 20px; background: rgba(255,255,255,.95); color: var(--blue); font-weight: 600; border-radius: 50px; font-size: .82rem; opacity: 0; transform: translateY(10px); transition: .35s; }
.product-card:hover .quick-view { opacity: 1; transform: translateY(0); }
.product-body { padding: 20px; }
.product-body h3 { font-size: .92rem; margin-bottom: 6px; }
.product-body p { color: var(--ink-soft); font-size: .88rem; margin-bottom: 14px; }
.swiper-button-prev, .swiper-button-next { color: var(--blue); background: #fff; width: 44px; height: 44px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1.1rem; font-weight: 700; }
.swiper-pagination-bullet-active { background: var(--blue); }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 38px 28px; text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.why-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 22px; display: grid; place-items: center; background: var(--grad-soft); color: var(--blue); font-size: 1.9rem; transition: .4s var(--ease); }
.why-card:hover .why-icon { background: var(--grad); color: #fff; transform: rotate(-8deg) scale(1.05); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Categories ---------- */
.products { background: linear-gradient(180deg, #e9f1ff 0%, #f3f8ff 45%, #ffffff 100%); overflow: hidden; }
.products::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,86,214,.08) 1.5px, transparent 1.6px);
  background-size: 26px 26px; opacity: .7;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}
.products::after {
  content: ""; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(79,155,255,.22), transparent 70%); filter: blur(40px); z-index: 0; pointer-events: none;
}
.products .container { position: relative; z-index: 1; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 210px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); isolation: isolate; }
.cat-bg { position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; transform: scale(1.05); transition: transform .6s var(--ease); z-index: -2; }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,20,55,.35) 0%, rgba(2,20,55,.82) 100%); z-index: -1; transition: background .4s; }
.cat-card:hover .cat-bg { transform: scale(1.15); }
.cat-card:hover::after { background: linear-gradient(180deg, rgba(0,86,214,.55) 0%, rgba(2,20,55,.9) 100%); }
.cat-inner { position: relative; height: 100%; min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff; }
.cat-inner i { font-size: 2rem; margin-bottom: auto; color: #cfe0ff; }
.cat-inner h3 { color: #fff; font-size: 1.12rem; margin: 14px 0 4px; }
.cat-link { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: #9ec2ff; opacity: 0; max-height: 0; transition: .4s var(--ease); }
.cat-card:hover .cat-link { opacity: 1; max-height: 30px; }
.cat-link i { font-size: .75rem; margin: 0; color: inherit; }

/* ---------- Offer ---------- */
.offer {
  overflow: hidden;
  background:
    linear-gradient(160deg, #ffffff 0%, #f1f6ff 55%, #e6efff 100%);
}
.offer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(0,86,214,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,86,214,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, transparent 80%);
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 80%);
}
.offer-decor { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none; }
.offer-decor-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(0,86,214,.22), transparent 70%); top: -120px; right: -100px; }
.offer-decor-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(79,155,255,.18), transparent 70%); bottom: -100px; left: -80px; }
.offer .container { position: relative; z-index: 1; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.offer-block {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border-radius: 22px; padding: 40px 36px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.offer-block::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.offer-block:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.offer-block:hover::before { transform: scaleX(1); }
.offer-block--featured { background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 60%); border-color: #d8e6ff; }

.offer-badge { position: absolute; top: 22px; right: 22px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--head); font-weight: 600; font-size: .68rem; letter-spacing: .6px; text-transform: uppercase; color: var(--blue); background: var(--blue-light); padding: 6px 14px; border-radius: 50px; }
.offer-badge i { font-size: .7rem; }
.offer-badge--accent { color: #fff; background: var(--grad); box-shadow: 0 6px 16px rgba(0,86,214,.3); }

.offer-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.offer-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 18px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.55rem; box-shadow: 0 10px 24px rgba(0,86,214,.3); transition: transform .4s var(--ease); }
.offer-block:hover .offer-icon { transform: rotate(-6deg) scale(1.06); }
.offer-head-text h3 { font-size: 1.38rem; margin-bottom: 3px; }
.offer-sub { color: var(--grey); font-size: .85rem; margin: 0; }
.offer-intro { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; line-height: 1.75; background: rgba(0,86,214,.04); border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; padding: 14px 16px; }

.offer-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.offer-chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500;
  color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line);
  padding: 9px 15px; border-radius: 50px; cursor: default;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
}
.offer-chip i { color: var(--blue); font-size: .85rem; transition: color .25s; }
.offer-chip:hover { transform: translateY(-3px); background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(0,86,214,.28); }
.offer-chip:hover i { color: #fff; }

.offer-cta { margin-top: auto; align-self: flex-start; }
/* On narrow screens, drop the badge into normal flow so it never overlaps the title */
@media (max-width: 600px) {
  .offer-badge { position: static; align-self: flex-start; margin-bottom: 16px; }
  .offer-block { padding-top: 30px; }
  .offer-head { flex-wrap: wrap; }
}

/* ---------- Timeline / commitment ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tl-item { display: flex; gap: 16px; align-items: flex-start; }
.tl-dot { flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.3rem; box-shadow: 0 8px 20px rgba(0,86,214,.3); }
.tl-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.tl-card p { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Stats section ---------- */
.stats-section { background: linear-gradient(120deg, #021b4d, #0056D6); padding: 80px 0; color: #fff; position: relative; overflow: hidden; }
.stats-particles { position: absolute; inset: 0; }
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat i { font-size: 2.2rem; color: #7eb0ff; margin-bottom: 14px; }
.stat .count { display: block; font-family: var(--head); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
.stat p { color: #c5d6ff; font-size: .95rem; }

/* ---------- Catalogue download ---------- */
.cat-dl-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 46px; border-radius: 24px; background: var(--grad-soft); border: 1px solid var(--line); }
.cat-dl-text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cat-dl-text p { color: var(--ink-soft); margin-top: 8px; }
.cat-dl-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.testi-card { background: #fff; border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; }
.testi-card .stars { color: #ffc107; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card blockquote { color: var(--ink); font-size: 1.02rem; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-card figcaption { display: flex; align-items: center; gap: 14px; }
.testi-card figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-light); }
.testi-card strong { display: block; font-family: var(--head); color: var(--ink); }
.testi-card small { color: var(--grey); font-size: .82rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.g-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; cursor: pointer;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .3s;
}
.g-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(0,86,214,.2); }

/* Image */
.g-card-img {
  position: relative; overflow: hidden; background: var(--bg-alt);
  aspect-ratio: 4/3; flex-shrink: 0;
}
.g-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.g-card-img::after {
  content: "\f065"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.8rem;
  background: rgba(0,86,214,.5);
  opacity: 0; transition: opacity .3s;
}
@media (hover: hover) {
  .g-card:hover .g-card-img img { transform: scale(1.07); }
  .g-card:hover .g-card-img::after { opacity: 1; }
}

/* Always-visible card body */
.g-card-body {
  padding: 13px 15px 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  flex: 1;
}
.g-card-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.g-card-num {
  font-family: var(--head); font-weight: 700; font-size: .62rem;
  letter-spacing: 1.2px; color: var(--blue); text-transform: uppercase;
}
.g-card-name {
  font-family: var(--head); font-weight: 600; font-size: .9rem;
  color: var(--ink); line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.g-card-arrow {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-alt); color: var(--blue); font-size: .8rem;
  transition: background .25s, color .25s, transform .3s var(--ease);
}
.g-card:hover .g-card-arrow { background: var(--blue); color: #fff; transform: scale(1.15); }

/* ---------- Lightbox (self-contained) ---------- */
.glb { position: fixed; inset: 0; z-index: 2000; background: rgba(8,15,30,.93); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.glb.open { display: flex; opacity: 1; }
.glb-img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 24px 70px rgba(0,0,0,.55); animation: glbZoom .35s var(--ease); }
@keyframes glbZoom { from { transform: scale(.9); opacity: .4; } to { transform: scale(1); opacity: 1; } }
.glb-cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--head); font-size: .95rem; padding: 0 16px; }
.glb-count { position: absolute; top: 26px; left: 26px; color: #fff; font-size: .9rem; opacity: .8; font-family: var(--head); }
.glb-close, .glb-prev, .glb-next { position: absolute; color: #fff; width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.3rem; background: rgba(255,255,255,.12); border-radius: 50%; transition: background .25s; }
.glb-close:hover, .glb-prev:hover, .glb-next:hover { background: rgba(255,255,255,.28); }
.glb-close { top: 22px; right: 22px; font-size: 1.7rem; }
.glb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.glb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .glb-prev, .glb-next { width: 44px; height: 44px; } .glb-img { max-width: 94vw; } }

/* ---------- CTA ---------- */
.cta-section { background: var(--grad); padding: 86px 0; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-particles { position: absolute; inset: 0; }
.cta-inner { position: relative; z-index: 2; max-width: 720px; }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-inner p { color: #e3ecff; font-size: 1.1rem; margin: 16px 0 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--head); font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--blue); transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Pay ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pay-card { text-align: center; padding: 38px 28px; border-radius: var(--radius); }
.pay-card i { font-size: 2.4rem; color: var(--blue); margin-bottom: 16px; }
.pay-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pay-card p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 16px; }
.pay-id { display: inline-block; background: var(--blue-light); color: var(--blue); padding: 8px 16px; border-radius: 8px; font-weight: 600; font-family: var(--head); }
.pay-note { text-align: center; margin-top: 30px; color: var(--grey); font-size: .9rem; }
.pay-note i { color: var(--blue); }

/* Bank transfer details panel */
.bank-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: start; }
.bank-wrap--single { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.bank-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.bank-head { display: flex; align-items: center; gap: 14px; padding: 22px 26px; background: var(--grad); color: #fff; }
.bank-head i { font-size: 1.5rem; }
.bank-head h3 { color: #fff; font-size: 1.2rem; margin: 0; }
.bank-head p { font-size: .82rem; opacity: .9; margin: 2px 0 0; }
.bank-rows { padding: 10px 26px 24px; }
.bank-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.bank-row:last-child { border-bottom: none; }
.bank-row .bk-label { color: var(--ink); font-size: .82rem; font-family: var(--head); text-transform: uppercase; letter-spacing: .6px; }
.bank-row .bk-value { font-family: var(--head); font-weight: 600; color: var(--ink); font-size: 1rem; word-break: break-word; text-align: right; }
.bk-copy { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-light); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; transition: .25s; }
.bk-copy:hover { background: var(--blue); color: #fff; }
.bk-copy.copied { background: #16a34a; color: #fff; }
.bk-value-wrap { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pay-side { display: grid; gap: 18px; }
.pay-side .pay-card { background: var(--bg-alt); border: 1px solid var(--line); }
.pay-side-note { background: var(--grad-soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px; font-size: .9rem; color: var(--ink-soft); }
.pay-side-note h4 { margin-bottom: 8px; color: var(--blue); }
.pay-side-note ol { margin: 8px 0 0 18px; list-style: decimal; display: grid; gap: 6px; }

/* UPI QR card */
.qr-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.qr-head { display: flex; align-items: center; gap: 14px; padding: 22px 26px; background: var(--grad); color: #fff; }
.qr-head i { font-size: 1.5rem; }
.qr-head h3 { color: #fff; font-size: 1.2rem; margin: 0; }
.qr-head p { font-size: .82rem; opacity: .9; margin: 2px 0 0; }
.qr-body { padding: 20px 26px 24px; }
.qr-body img { display: block; width: 100%; max-width: 300px; height: auto; margin: 0 auto; border-radius: 12px; border: 1px solid var(--line); }

@media (max-width: 880px) { .bank-wrap { grid-template-columns: 1fr; } .qr-card { max-width: 640px; margin: 0 auto; } }
/* Mobile: stack each bank row so values (account no., codes) keep full width and don't break mid-digit */
@media (max-width: 600px) {
  .bank-head { padding: 18px 20px; }
  .bank-rows { padding: 6px 18px 18px; }
  .bank-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .bank-row .bk-value-wrap { width: 100%; justify-content: space-between; }
  .bank-row .bk-value { text-align: left; font-size: .98rem; word-break: normal; overflow-wrap: anywhere; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-info { display: grid; gap: 16px; }
.info-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform .3s; }
.info-card:hover { transform: translateX(6px); }
.info-card i { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); color: var(--blue); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.info-card h4 { font-size: .92rem; margin-bottom: 3px; }
.info-card p { color: var(--ink-soft); font-size: .9rem; }
.info-card a { color: var(--blue); }
.info-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 38px; box-shadow: var(--shadow); }
.contact-form h3, .modal-form h3 { font-size: 1.5rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { position: relative; margin-bottom: 22px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 16px 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--ink); outline: none; transition: border-color .25s, box-shadow .25s;
}
.form-group textarea { resize: vertical; padding-top: 18px; }
.form-group select { padding-top: 18px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,86,214,.1); }
.form-group label { position: absolute; left: 14px; top: 15px; color: var(--grey); font-size: .95rem; pointer-events: none; transition: .2s var(--ease); background: #fff; padding: 0 4px; }
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label { top: -9px; font-size: .74rem; color: var(--blue); }
.form-group .label-static, .form-group select + label { top: -9px; font-size: .74rem; color: var(--blue); }
/* placeholder trick so floating labels work */
.form-group input, .form-group textarea { }
.form-group input::placeholder, .form-group textarea::placeholder { opacity: 0; }
.form-status { margin-top: 12px; font-size: .9rem; font-weight: 500; min-height: 20px; }
.form-status.ok { color: #16a34a; }
.form-status.err { color: #dc2626; }

.map-wrap { margin-top: 44px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: #303030; color: #b9c4d6; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { width: 200px; margin-bottom: 18px; }
.footer-col p { font-size: .9rem; line-height: 1.7; color: #eaf0fb; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--grad); border-radius: 3px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: .9rem; color: #eaf0fb; transition: color .25s, padding .25s; }
.footer-col ul a:hover { color: #fff; padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; font-size: .9rem; color: #eaf0fb; align-items: flex-start; }
.footer-contact i { color: var(--blue-600); margin-top: 4px; }
.footer-contact a { color: #eaf0fb; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .3s; }
.footer-social a:hover { background: var(--grad); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .85rem; color: #e8ebf1; }
/*.footer-legal { display: flex; gap: 22px; }*/
.footer-legal a { font-size: .85rem; color: #8492a8; transition: color .25s; }
.footer-legal a:hover { color: #fff; }

/* ---------- Floating ---------- */
.floaters { position: fixed; right: 22px; bottom: 26px; z-index: 800; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.float-btn { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.1rem; box-shadow: var(--shadow); transition: transform .3s; position: relative; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; animation: pulse 2.2s infinite; }
.float-call { background: var(--grad); }
.float-enquiry { background: var(--ink); width: 40px; border-radius: 50px; padding: 0 12px; gap: 8px; font-size: .9rem; font-family: var(--head); font-weight: 600; height: 40px; }
.float-enquiry span { font-size: .85rem; }
@keyframes 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)} }
.back-to-top { position: fixed; left: 22px; bottom: 26px; width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; z-index: 799; opacity: 0; visibility: hidden; transform: translateY(14px); transition: .35s; box-shadow: var(--shadow); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(8,15,30,.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .35s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-box { background: #fff; border-radius: 20px; width: 100%; max-width: 460px; padding: 38px 34px; position: relative; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.97); transition: transform .4s var(--ease); max-height: 92vh; overflow-y: auto; }
.modal.open .modal-box { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 16px; right: 18px; font-size: 1.8rem; line-height: 1; color: var(--grey); width: 36px; height: 36px; border-radius: 50%; transition: .25s; }
.modal-close:hover { background: var(--bg-alt); color: var(--ink); }
.modal-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal-sub { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; }

/* ---------- Scroll reveal (self-contained, no external library) ----------
   Content is fully visible by default. Only when JS adds `.has-reveal` to <html>
   do elements start hidden, then animate in when `.aos-animate` is added.
   Keyframe animations (not transitions) are used so the entrance always fires
   reliably the moment the class is applied, regardless of paint timing. */
html.has-reveal [data-aos] { opacity: 0; }
html.has-reveal [data-aos].aos-animate { animation: aosFadeUp .8s var(--ease) both; }
html.has-reveal [data-aos="fade-right"].aos-animate { animation-name: aosFadeRight; }
html.has-reveal [data-aos="fade-left"].aos-animate  { animation-name: aosFadeLeft; }
html.has-reveal [data-aos="zoom-in"].aos-animate    { animation-name: aosZoomIn; }

@keyframes aosFadeUp    { from { opacity: 0; transform: translateY(42px); } to { opacity: 1; transform: none; } }
@keyframes aosFadeRight { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: none; } }
@keyframes aosFadeLeft  { from { opacity: 0; transform: translateX(50px); }  to { opacity: 1; transform: none; } }
@keyframes aosZoomIn    { from { opacity: 0; transform: scale(.9); }         to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .why-grid, .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  .nav, .btn-call { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .about-media { max-width: 520px; margin: 0 auto; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 26px; }
}
@media (max-width: 768px) {
  .hero { height: 220px; min-height: 0; padding: 0; }
  .section { padding: 20px 0; }
  .why-grid, .cat-grid, .pay-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .topbar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .about-list, .offer-list { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .why-grid, .cat-grid, .pay-grid, .footer-grid, .timeline { grid-template-columns: 1fr; }
  .hero { height: 280px; min-height: 0; padding: 0; }
  .hero h1 { font-size: 1.55rem; font-weight: 600; letter-spacing: -.2px; margin: 16px 0 14px; line-height: 1.28; }
  .hero p { font-size: .95rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .float-enquiry span { display: none; }
  .float-enquiry { width: 36px; padding: 0; border-radius: 50%; }
  .contact-form-wrap, .offer-block { padding: 26px 20px; }
  .cat-dl-inner { padding: 30px 24px; }
  /* Trusted strip: 2 items per row */
  .trusted-track { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .trusted-track span { justify-content: flex-start; font-size: .82rem; gap: 8px; }
  .trusted-track i { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   Products page + Cart drawer + Quick View
   ============================================================ */

/* ---- Cart icon badge in header ---- */
.cart-toggle { position: relative; }
.cart-badge {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 10px; background: #ff4757; color: #fff;
  font-size: .68rem; font-weight: 700; line-height: 18px; text-align: center;
  display: none;
}
.cart-badge.show { display: block; }

/* ---- Pagination ---- */
.pagination {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; margin: 0 0 28px;
}
.pagination.pagination-bottom { margin: 36px 0 0; }
.pagination .page-link {
  display: inline-flex; align-items: center; gap: 6px;
  min-width: 38px; height: 38px; padding: 0 12px; border-radius: 50px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-family: var(--head); font-weight: 600; font-size: .85rem;
  justify-content: center; transition: .25s var(--ease); cursor: pointer;
}
.pagination .page-link:hover:not(.disabled):not(.active) {
  border-color: var(--blue); color: var(--blue); transform: translateY(-2px);
}
.pagination .page-link.active { background: var(--grad); color: #fff; border-color: transparent; }
.pagination .page-link.disabled { color: var(--grey-light); cursor: default; opacity: .6; }

/* ---- Product grid ---- */
.products-shop .product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
/*.product-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }*/
.product-media {
  position: relative;
  height: 220px;       /* fixed height — same for every card, pick what suits your grid */
  width: 100%;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;       /* stops the parent flex layout from squeezing this box */
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* shows the full image, scaled to fit, never cropped */
  display: block;
  transition: transform .5s var(--ease);
}
/* Tablet */
@media (max-width: 768px) {
  .product-media {
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .product-media {
    height: 160px;
  }
}
.product-card:hover .product-media img { transform: scale(1.06); }
.pq-view {
  position: absolute; left: 50%; bottom: 12px; transform: translate(-50%, 12px);
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.95); color: var(--ink); font-family: var(--head);
  font-weight: 600; font-size: .74rem; padding: 6px 13px; border-radius: 50px;
  box-shadow: var(--shadow-sm); opacity: 0; transition: .3s var(--ease); cursor: pointer;
}
.pq-view i { color: var(--blue); font-size: .85em; }
.product-card:hover .pq-view { opacity: 1; transform: translate(-50%, 0); }
/* Inline Quick View button — hidden on desktop, shown at card bottom on mobile */
.pq-view.pq-view-inline {
  display: none; position: static; transform: none; opacity: 1;
  width: 100%; justify-content: center; margin-top: 2px;
  background: var(--bg-alt); color: var(--ink-soft); box-shadow: none;
  font-size: .76rem; padding: 9px 14px;
}
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 0px; flex: 1; }
.product-name { font-size: .9rem; font-weight: 600; line-height: 1.35; }
.product-price { font-family: var(--head); font-weight: 700; color: var(--blue); font-size: 1.15rem; }
.product-buy { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ---- Quantity stepper ---- */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 50px; overflow: hidden; background: #fff; }
.qty-btn {
  width: 34px; height: 38px; display: grid; place-items: center; font-size: 1.1rem;
  color: var(--ink); background: var(--bg-alt); cursor: pointer; transition: .2s; line-height: 1;
}
.qty-btn:hover { background: var(--blue); color: #fff; }
.qty-input {
  width: 42px; height: 38px; text-align: center; border: none; outline: none;
  font-family: var(--head); font-weight: 600; font-size: .95rem; color: var(--ink);
  -moz-appearance: textfield; background: #fff;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-buy .add-cart { flex: 1; min-width: 96px; }

/* ---- Quick View modal ---- */
/* Keep the close button clickable above the position:relative .eyebrow in qv-info */
.modal-close { z-index: 5; }
.modal-box--wide { max-width: 780px; padding: 30px; }
.modal-box--wide .modal-close { top: 14px; right: 14px; }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.qv-media { border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-alt); aspect-ratio: 4/3; }
.qv-media img { width: 100%; height: 100%; object-fit: cover; }
.qv-info { display: flex; flex-direction: column; gap: 12px; }
.qv-info .eyebrow { margin-bottom: 0; }
.qv-info h3 { font-size: 1.5rem; line-height: 1.25; }
.qv-price { font-size: 1.4rem; }
.qv-desc { color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }
.qv-info .product-buy { margin-top: 8px; }

/* ---- Cart drawer ---- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1190; background: rgba(8,15,30,.5);
  backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .35s;
}
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 1200; height: 100%;
  width: min(420px, 92vw); background: #fff; box-shadow: -20px 0 60px rgba(15,27,45,.18);
  display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line);
}
.cart-drawer-head h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 9px; }
.cart-drawer-head h3 i { color: var(--blue); }
.cart-drawer-close { font-size: 1.9rem; line-height: 1; color: var(--grey); width: 38px; height: 38px; border-radius: 50%; transition: .25s; }
.cart-drawer-close:hover { background: var(--bg-alt); color: var(--ink); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 18px; }
.cart-empty { text-align: center; color: var(--grey); padding: 50px 10px; line-height: 2.2; }
.cart-empty i { font-size: 2.4rem; color: var(--line); }

.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg-alt); }
.cart-item-info { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.cart-item-name { font-family: var(--head); font-weight: 600; font-size: .9rem; line-height: 1.3; }
.cart-item-rate { color: var(--ink-soft); font-size: .82rem; }
.cart-item-qty { align-self: flex-start; }
.cart-item-qty .qty-btn { width: 28px; height: 30px; font-size: .95rem; }
.cart-item-qty .qty-input { width: 34px; height: 30px; font-size: .85rem; }
.cart-item-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-remove { font-size: 1.3rem; line-height: 1; color: var(--grey); width: 26px; height: 26px; border-radius: 50%; transition: .2s; }
.cart-item-remove:hover { background: #ffe9eb; color: #ff4757; }
.cart-item-line { font-family: var(--head); font-weight: 700; color: var(--ink); font-size: .92rem; white-space: nowrap; }

.cart-drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--bg-alt); display: flex; flex-direction: column; gap: 12px; }
.cart-subtotal { display: flex; align-items: center; justify-content: space-between; font-family: var(--head); }
.cart-subtotal span { color: var(--ink-soft); }
.cart-subtotal strong { font-size: 1.3rem; color: var(--ink); }
.cart-note { font-size: .76rem; color: var(--grey); text-align: center; margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .products-shop .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-shop .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .qv-grid { grid-template-columns: 1fr; gap: 18px; }
  .qv-media { aspect-ratio: 16/10; }
  .modal-box--wide { padding: 26px 20px; }
  /* Move Quick View from image overlay to a button under Add to Cart */
  .product-media .pq-view { display: none; }
  .pq-view.pq-view-inline { display: inline-flex; }
}
@media (max-width: 460px) {
  .products-shop .product-grid { grid-template-columns: 1fr 1fr; }
  .product-body { padding: 14px 12px 16px; }
  .product-name { font-size: .85rem; }
  .product-buy { gap: 8px;justify-content: center; }
  .product-buy .add-cart {         width: 84%; flex: none; }
}
