/* ============================================================
   PETFETCH SPRINGS — MODERN REDESIGN
   Design: Material-inspired, clean, elevated
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --font-body: "Inter", "Roboto", system-ui, sans-serif;
  --font-heading: "Inter", "Raleway", sans-serif;
  --font-nav: "Inter", "Poppins", sans-serif;

  /* Brand palette */
  --navy:      #001A2E;
  --navy-mid:  #002B4E;
  --blue:      #0056B3;
  --blue-v:    #1A6FD4;
  --teal:      #00B4D8;
  --teal-lt:   #90E0EF;
  --amber:     #F59E0B;

  /* Surfaces */
  --white:     #FFFFFF;
  --bg:        #F5F8FC;
  --bg-alt:    #EDF2F7;
  --border:    rgba(0,0,0,0.07);

  /* Text */
  --text:      #1A2332;
  --text-2:    #4A5568;
  --text-3:    #718096;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,26,46,.06);
  --sh-sm: 0 2px 8px rgba(0,26,46,.09);
  --sh-md: 0 4px 16px rgba(0,26,46,.11);
  --sh-lg: 0 8px 32px rgba(0,26,46,.14);
  --sh-xl: 0 20px 60px rgba(0,26,46,.18);

  /* Radii */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --pill: 100px;

  /* Motion */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --dur:  250ms;

  /* Legacy compat (Bootstrap overrides) */
  --background-color: var(--white);
  --default-color: var(--text-2);
  --heading-color: var(--navy);
  --accent-color: var(--blue);
  --surface-color: var(--white);
  --contrast-color: var(--white);
  --nav-color: var(--white);
  --nav-hover-color: var(--teal);
  --nav-mobile-background-color: var(--white);
  --nav-dropdown-background-color: var(--white);
  --nav-dropdown-color: var(--text);
  --nav-dropdown-hover-color: var(--blue);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--blue); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--blue-v); }

img { max-width: 100%; height: auto; display: block; }

.light-background { background: var(--bg); }
.dark-background { background: var(--navy); color: var(--white); }
.dark-background h1,.dark-background h2,.dark-background h3,
.dark-background h4,.dark-background h5 { color: var(--white); }

/* ── Shared Section Title ──────────────────────────────────── */
.section-title {
  text-align: center;
  padding-bottom: 48px;
}
.section-title h2 {
  font-size: clamp(28px,3.6vw,42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  margin: 10px auto 0;
}
.section-title p {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-pf-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--blue), var(--blue-v));
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 14px rgba(0,86,179,.35);
  text-decoration: none;
}
.btn-pf-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,86,179,.45);
  color: var(--white) !important;
}
.btn-pf-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--pill);
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
}
.btn-pf-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-pf-outline.on-light {
  color: var(--blue) !important;
  border-color: var(--blue);
}
.btn-pf-outline.on-light:hover {
  background: rgba(0,86,179,.06);
}

/* WhatsApp CTA */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: #25D366;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--pill);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white) !important;
}

/* ── Navigation ────────────────────────────────────────────── */
.header {
  background: rgba(0,26,46,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  transition: all .4s var(--ease);
  z-index: 997;
}

.scrolled .header {
  background: var(--navy) !important;
  box-shadow: var(--sh-lg);
  border-bottom: none;
  padding: 10px 0;
}

.header .logo img { max-height: 56px; }

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--pill);
  margin-left: 20px;
  border: none;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 3px 12px rgba(0,86,179,.4);
}
.header .btn-getstarted:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,86,179,.5);
  color: var(--white);
}

/* Nav links */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul { margin:0; padding:0; display:flex; list-style:none; align-items:center; }
  .navmenu li { position: relative; }
  .navmenu a, .navmenu a:focus {
    color: rgba(255,255,255,.82);
    padding: 16px 14px;
    font-size: 14px;
    font-family: var(--font-nav);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: color var(--dur);
    letter-spacing: .2px;
  }
  .navmenu a i { font-size: 11px; transition: transform .25s; }
  .navmenu li:hover > a .toggle-dropdown,
  .navmenu .active i { transform: rotate(180deg); }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: var(--teal); }

  /* dropdown */
  .navmenu .dropdown ul {
    margin:0; padding: 8px 0;
    background: var(--white);
    position: absolute;
    top: 130%; left: 0;
    min-width: 220px;
    border-radius: var(--r);
    box-shadow: var(--sh-xl);
    border: 1px solid var(--border);
    opacity: 0; visibility: hidden;
    transition: all .3s var(--ease);
    z-index: 999;
  }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a {
    padding: 10px 18px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
  }
  .navmenu .dropdown ul a:hover { color: var(--blue); background: var(--bg); }
  .navmenu .dropdown:hover > ul { opacity:1; top:100%; visibility:visible; }
  .navmenu .dropdown .dropdown ul { top:0; left:100%; }
  .navmenu .dropdown .dropdown:hover > ul { top:0; left:100%; opacity:1; visibility:visible; }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle { color:var(--white); font-size:26px; cursor:pointer; transition:color .3s; margin-right:8px; }
  .navmenu { padding:0; z-index:9997; }
  .navmenu ul {
    display:none; list-style:none;
    position:absolute; inset:62px 16px 16px 16px;
    padding:12px 0; margin:0;
    border-radius: var(--r-lg);
    background: var(--white);
    overflow-y:auto;
    box-shadow: var(--sh-xl);
    border:1px solid var(--border);
    z-index:9998;
  }
  .navmenu.mobile-nav-active ul { display:block; }
  .navmenu a, .navmenu a:focus {
    color: var(--text);
    padding:11px 20px;
    font-size:16px; font-weight:500;
    display:flex; align-items:center; justify-content:space-between;
    transition:.3s;
  }
  .navmenu a:hover, .navmenu .active { color:var(--blue); }
  .navmenu .toggle-dropdown {
    width:28px; height:28px;
    display:flex; align-items:center; justify-content:center;
    border-radius:var(--r-sm);
    background:var(--bg); font-size:13px;
  }
  .navmenu .dropdown ul { display:none; padding:0 0 0 20px; }
  .navmenu .dropdown.dropdown-active > ul { display:block; }
  .navmenu .dropdown ul a { padding:8px 20px; font-size:15px; }
}

/* ── Hero Carousel ─────────────────────────────────────────── */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero #hero-carousel { height: 100vh; min-height: 520px; }

.hero .carousel-item {
  height: 100vh; min-height: 520px;
  overflow: hidden;
}
.hero .carousel-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,26,46,.88) 0%, rgba(0,43,78,.65) 60%, rgba(0,180,216,.15) 100%);
  z-index: 1;
}

.hero .carousel-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 60px;
  max-width: 760px;
  margin: 0 60px;
}

@media (max-width: 768px) {
  .hero .carousel-container { padding: 0 24px; margin: 0; max-width: 100%; }
}

.hero .carousel-container .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,180,216,.18);
  border: 1px solid rgba(0,180,216,.4);
  color: var(--teal-lt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--pill);
  margin-bottom: 20px;
}

.hero .carousel-container h2 {
  color: var(--white);
  font-size: clamp(32px,5.5vw,62px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero .carousel-container h2 span { color: var(--teal); }

.hero .carousel-container p {
  color: rgba(255,255,255,.78);
  font-size: clamp(15px,1.6vw,18px);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero .carousel-container .hero-ctas { display:flex; gap:16px; flex-wrap:wrap; }

/* carousel controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  margin: 0 20px;
  transition: all var(--dur);
}
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: rgba(0,180,216,.35);
  border-color: var(--teal);
}
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width:20px; height:20px;
  background-size:20px 20px;
}

.hero .carousel-indicators {
  bottom: 32px; gap: 6px;
}
.hero .carousel-indicators button {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.4);
  border: none;
  transition: all var(--dur);
}
.hero .carousel-indicators .active {
  width: 48px;
  background: var(--teal);
}

/* ── About ─────────────────────────────────────────────────── */
.about { padding: 100px 0; }

.about .about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.about .about-img-wrap img {
  width: 100%;
  transition: transform .6s var(--ease);
}
.about .about-img-wrap:hover img { transform: scale(1.03); }
.about .about-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,26,46,.5), transparent);
}

.about-content h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy);
}
.about-content .fst-italic {
  color: var(--text-3);
  font-size: 16px;
  line-height: 1.75;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  margin-bottom: 28px;
}

.about-content ul { list-style: none; padding: 0; margin: 0; }
.about-content ul li { display:flex; gap:16px; margin-bottom:20px; }
.about-content ul li i {
  font-size: 22px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}
.about-content ul li h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-content ul li p {
  font-size: 14.5px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.65;
}

/* ── Services / Expertise Cards ────────────────────────────── */
.constructions { padding: 100px 0; background: var(--bg); }
.constructions .section-header { text-align:center; margin-bottom:56px; }
.constructions .section-header h2 {
  font-size: clamp(26px,3.2vw,38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.constructions .section-header p { color:var(--text-3); font-size:16px; max-width:600px; margin:0 auto; }

.constructions .card-item {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .35s var(--ease);
  height: 100%;
}
.constructions .card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: rgba(0,86,179,.15);
}
.constructions .card-item .card-bg {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.constructions .card-item .card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,26,46,.5));
}
.constructions .card-item .card-body {
  padding: 24px 24px 28px;
}
.constructions .card-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.constructions .card-item p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 18px;
}
.constructions .card-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  transition: gap .2s;
}
.constructions .card-item a:hover { gap: 10px; }

/* ── Accessories ───────────────────────────────────────────── */
.accessories { background: var(--white); padding: 100px 0; }
.accessory-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 30px 26px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: all .35s var(--ease);
}
.accessory-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.accessory-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
  border-color: rgba(0,86,179,.12);
}
.accessory-card:hover::before { transform: scaleX(1); }
.accessory-icon {
  width: 56px; height: 56px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--blue), var(--blue-v));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.accessory-icon i { font-size: 24px; color: var(--white); }
.accessory-card .badge-tag {
  display: inline-block;
  background: rgba(0,86,179,.08);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--pill);
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.accessory-card h4 { font-size:18px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.accessory-card p { font-size:14px; color:var(--text-3); line-height:1.7; flex-grow:1; margin-bottom:14px; }
.acc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.acc-cta:hover { gap: 10px; color: var(--blue-v); }

/* ── Features ──────────────────────────────────────────────── */
.features { padding: 100px 0; background: var(--bg); }
.features .features-item { padding: 56px 0; }
.features .features-item + .features-item { border-top: 1px solid var(--border); }
.features .features-item img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  width: 100%;
  object-fit: cover;
  max-height: 380px;
}
.features .content h3 {
  font-size: clamp(22px,2.6vw,30px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.features .content h3 i { color: var(--blue); }
.features .content p {
  color: var(--text-3);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.features .content ul { list-style:none; padding:0; margin-bottom:24px; }
.features .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  padding: 5px 0;
}
.features .content ul li i { font-size:16px; flex-shrink:0; margin-top:2px; }

/* ── Portfolio ─────────────────────────────────────────────── */
.portfolio { padding: 100px 0; }
.portfolio .portfolio-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 8px 22px;
  border-radius: var(--pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--dur);
}
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,86,179,.3);
}
.portfolio .portfolio-item { overflow: hidden; border-radius: var(--r-lg); }
.portfolio .portfolio-content {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-sm);
  transition: box-shadow .35s var(--ease);
}
.portfolio .portfolio-content:hover { box-shadow: var(--sh-xl); }
.portfolio .portfolio-content img {
  width: 100%;
  transition: transform .55s var(--ease);
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.portfolio .portfolio-content:hover img { transform: scale(1.07); }
.portfolio .portfolio-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,26,46,.9) 0%, transparent 100%);
  padding: 40px 20px 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s var(--ease);
}
.portfolio .portfolio-content:hover .portfolio-info { opacity: 1; transform: translateY(0); }
.portfolio .portfolio-info h4 { color:var(--white); font-size:16px; font-weight:700; margin-bottom:4px; }
.portfolio .portfolio-info h4 a { color:var(--white); }
.portfolio .portfolio-info p { color:rgba(255,255,255,.75); font-size:13px; margin:0; }

/* ── Why Us ────────────────────────────────────────────────── */
.why-us { padding: 100px 0; background: var(--bg); }
.why-us .card-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: all .35s var(--ease);
  height: 100%;
}
.why-us .card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: rgba(0,86,179,.15);
}
.why-us .card-item.highlighted {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: transparent;
}
.why-us .card-item .icon i {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}
.why-us .card-item.highlighted .icon i { color: var(--teal); }
.why-us .card-item h4 { font-size:20px; font-weight:700; margin-bottom:12px; }
.why-us .card-item.highlighted h4 { color:var(--white); }
.why-us .card-item p { font-size:14.5px; color:var(--text-3); line-height:1.7; margin:0; }
.why-us .card-item.highlighted p { color:rgba(255,255,255,.72); }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing { padding: 100px 0; }
.pricing .pricing-item {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: all .35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing .pricing-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: rgba(0,86,179,.2);
}
.pricing .pricing-item .popular {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.pricing .pricing-item h3 {
  font-size: 24px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.pricing .pricing-item .description {
  font-size: 14.5px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 6px;
}
.pricing .pricing-item .small { font-size:13px; color:var(--text-3); }
.pricing .pricing-item ul { list-style:none; padding:0; margin:24px 0; flex-grow:1; }
.pricing .pricing-item ul li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14.5px; color:var(--text-2); padding:7px 0;
  border-bottom: 1px solid var(--bg);
}
.pricing .pricing-item ul li:last-child { border-bottom:none; }
.pricing .pricing-item ul li i { font-size:16px; flex-shrink:0; margin-top:2px; }
.pricing .pricing-item .cta-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 14.5px;
  transition: all var(--dur);
  margin-top: auto;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { padding: 100px 0; background: var(--bg); }
.faq .content h3 {
  font-size: clamp(24px,2.8vw,34px);
  font-weight: 800;
  color: var(--navy);
}
.faq .content h3 span { color: var(--text-3); }
.faq .content h3 strong { color: var(--navy); }
.faq .content p { color:var(--text-3); font-size:15px; line-height:1.75; }

.faq-container .faq-item {
  background: var(--white);
  border-radius: var(--r);
  margin-bottom: 12px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  position: relative;
  cursor: pointer;
  transition: box-shadow var(--dur);
}
.faq-item:hover { box-shadow: var(--sh-md); }
.faq-item.faq-active { box-shadow: var(--sh-md); border-color: rgba(0,86,179,.15); }
.faq-item h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  padding-right: 30px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item h3 .num {
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-item.faq-active h3 .num { background: var(--teal); }
.faq-item .faq-content {
  display: none;
  padding-top: 14px;
}
.faq-item.faq-active .faq-content { display: block; }
.faq-item .faq-content p { font-size:14.5px; color:var(--text-3); line-height:1.75; margin:0; }
.faq-toggle {
  position: absolute;
  right: 20px; top: 20px;
  font-size: 16px;
  color: var(--blue);
  transition: transform .3s;
}
.faq-item.faq-active .faq-toggle { transform: rotate(90deg); }

/* ── Contact ───────────────────────────────────────────────── */
.contact { padding: 100px 0; }
.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .contact-main-wrapper { grid-template-columns: 1fr; }
}
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  height: 440px;
}
.map-wrapper iframe { width:100%; height:100%; border:0; display:block; }

.contact-cards-container { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--sh-xs);
  transition: all var(--dur);
}
.contact-card:hover { box-shadow: var(--sh-md); transform: translateX(4px); }
.contact-card .icon-box {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-v));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon-box i { color:var(--white); font-size:18px; }
.contact-card h4 { font-size:13px; font-weight:700; color:var(--text-3); text-transform:uppercase; letter-spacing:.8px; margin-bottom:2px; }
.contact-card p,.contact-card p a { font-size:15px; color:var(--navy); font-weight:600; margin:0; }
.contact-card p a:hover { color:var(--blue); }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
footer .footer-top { padding-bottom: 52px; }
footer .sitename { font-size: 18px; font-weight: 800; color: var(--white); }
footer .footer-contact p { font-size: 14.5px; line-height: 2; margin: 0; }
footer .footer-contact a { color: var(--teal); font-weight: 600; }
footer .footer-contact a:hover { color: var(--teal-lt); }
footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
footer .footer-links ul { list-style:none; padding:0; margin:0; }
footer .footer-links ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
}
footer .footer-links ul li i { color:var(--teal); font-size:11px; }
footer .footer-links ul li a { color:rgba(255,255,255,.65); transition:color .25s; }
footer .footer-links ul li a:hover { color:var(--teal); }
footer p { color:rgba(255,255,255,.6); font-size:14.5px; line-height:1.75; }

footer .social-links { display:flex; gap:10px; margin-top:16px; }
footer .social-links a {
  width:38px; height:38px;
  border-radius:50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.7);
  font-size:16px;
  transition: all var(--dur);
}
footer .social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

footer .copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
}
footer .credits a { color: var(--teal); font-weight: 600; font-size: 14px; }

/* ── Scroll-to-top ─────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  display: flex; align-items:center; justify-content:center;
  box-shadow: var(--sh-lg);
  z-index: 999;
  opacity: 0; visibility:hidden;
  transition: all .35s var(--ease);
}
#scroll-top.active { opacity:1; visibility:visible; }
#scroll-top:hover { transform: translateY(-3px); }

/* ── Floating WhatsApp FAB ─────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 90px; right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  color: var(--white);
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all .3s var(--ease);
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); color:var(--white); }

/* ── Product Category Pages ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(0,86,179,.4) 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:"";
  position: absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  margin-bottom: 14px;
  background: none;
  padding: 0;
}
.page-hero .breadcrumb-item a { color:var(--teal); font-size:14px; font-weight:500; }
.page-hero .breadcrumb-item { color:rgba(255,255,255,.55); font-size:14px; }
.page-hero .breadcrumb-item.active { color:rgba(255,255,255,.8); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color:rgba(255,255,255,.3); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(30px,4.5vw,52px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.page-hero h1 span { color:var(--teal); }
.page-hero p { color:rgba(255,255,255,.72); font-size:17px; max-width:580px; line-height:1.7; }
.page-hero .hero-cats {
  display: flex; flex-wrap:wrap; gap:10px; margin-top: 28px;
}
.page-hero .cat-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--pill);
}

/* Product card */
.spring-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
  transition: all .35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.spring-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.spring-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: rgba(0,86,179,.14);
}
.spring-card:hover::before { transform: scaleX(1); }
.spring-card .spring-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  border-radius: var(--r);
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.spring-card .spring-icon i { font-size: 26px; color: var(--blue); }
.spring-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.spring-card p { font-size:14px; color:var(--text-3); line-height:1.7; margin-bottom:18px; flex-grow:1; }
.spring-specs {
  display: flex; flex-wrap:wrap; gap:6px;
  margin-bottom: 20px;
}
.spring-specs .spec-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--pill);
}

/* Category divider */
.cat-section {
  padding: 80px 0 20px;
}
.cat-section:first-of-type { padding-top: 100px; }
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-alt);
}
.cat-header .cat-badge {
  background: linear-gradient(135deg, var(--blue), var(--blue-v));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--pill);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cat-header h2 {
  font-size: clamp(22px,2.8vw,32px);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 70%, var(--teal) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color:var(--white); font-size:clamp(26px,3.5vw,40px); font-weight:800; margin-bottom:14px; }
.cta-banner p { color:rgba(255,255,255,.78); font-size:17px; max-width:520px; margin:0 auto 36px; }

/* AOS override for faster feel */
[data-aos] { transition-duration: .5s !important; }
