/* ===== ENHANCED ANIMATIONS & EFFECTS ===== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  --blue: #0757d9;
  --navy: #062b65;
  --green: #159447;
  --ink: #12284b;
  --muted: #66758a;
  --line: #dce7f2;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(7, 87, 217, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(7, 87, 217, 0.6);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes scaleHover {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes slideInBounce {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.faq-row:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* ===== TOPLINE SECTION ===== */
.topline {
  height: 40px;
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  border-bottom: 2px solid #dce7f2;
  font-size: 13px;
  color: #556882;
  position: relative;
  overflow: hidden;
  animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.topline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(7, 87, 217, 0.12),
    transparent
  );
  animation: shimmer 4s infinite ease-in-out;
  z-index: 0;
}

.topline .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.topline span {
  animation: fadeIn 0.9s ease-out;
  display: inline-flex;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  font-weight: 700;
}

.topline span:first-child {
  animation-delay: 0.1s;
  color: #0757d9;
  letter-spacing: 0.6px;
  font-size: 13px;
}

.topline span:last-child {
  animation-delay: 0.25s;
  padding-left: 18px;
  color: #4a5f7f;
}

.topline span:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 22px;
  background: linear-gradient(180deg, transparent, #0757d9 50%, transparent);
  animation: fadeIn 0.9s ease-out 0.25s both;
}

.topline span:hover {
  transform: translateY(-2px);
  color: #0757d9;
  letter-spacing: 0.8px;
}

/* ===== HEADER SECTION ===== */
header {
  height: 100px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #e0e8f1;
  animation: slideInDown 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  height: 100px;
  background: #ffffff;
  border-bottom-color: #d0dce8;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}

/* ===== LOGO SECTION ===== */
.logo {
  width: 160px;
  animation: slideInLeft 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.1) translateY(-3px);
  filter: drop-shadow(0 8px 16px rgba(7, 87, 217, 0.35));
}

/* ===== NAVIGATION LINKS ===== */
.navlinks {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 700;
  animation: fadeIn 0.9s ease-out 0.3s both;
  letter-spacing: 0.5px;
}

.navlinks a {
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.6px;
  color: #3a5078;
  font-weight: 700;
  font-size: 13px;
  padding: 0 4px;
}

.navlinks a::before {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #0650c8);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.navlinks a::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 0;
  height: 3px;
  background: rgba(7, 87, 217, 0.2);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
  z-index: -1;
}

.navlinks a:hover {
  color: var(--blue);
  letter-spacing: 0.9px;
  transform: translateY(-2px);
}

.navlinks a:hover::before {
  width: 100%;
  box-shadow: 0 2px 8px rgba(7, 87, 217, 0.3);
}

.navlinks a.active {
  color: var(--blue);
  font-weight: 800;
}

.navlinks a.active::before {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #0650c8);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(7, 87, 217, 0.4);
}

/* ===== RIGHT SECTION ===== */
.navright {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideInRight 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.call-top {
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #3a5078;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.call-top i {
  font-style: normal;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e9f2ff 0%, #e0ecff 100%);
  color: var(--blue);
  animation: ring 2.5s infinite ease-in-out;
  box-shadow: 0 2px 10px rgba(7, 87, 217, 0.2);
  font-size: 16px;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 2px 10px rgba(7, 87, 217, 0.2);
  }
  10%,
  20% {
    transform: rotate(-12deg) scale(1.02);
  }
  30%,
  50%,
  70%,
  90% {
    transform: rotate(12deg) scale(1.02);
  }
  40%,
  60%,
  80% {
    transform: rotate(-12deg) scale(1.02);
  }
}

.call-top:hover {
  transform: translateY(-3px) scale(1.05);
  color: var(--blue);
  background: #f0f5ff;
  box-shadow: 0 4px 16px rgba(7, 87, 217, 0.15);
}

/* ===== WHATSAPP BUTTON ===== */
.wa {
  background: linear-gradient(135deg, var(--green) 0%, #117d3f 100%);
  color: #fff;
  border-radius: 7px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 900;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 14px rgba(21, 148, 71, 0.28);
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: slideInDown 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.wa:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 28px rgba(21, 148, 71, 0.45);
  background: linear-gradient(135deg, #117d3f 0%, #0d6a34 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.wa:active {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 14px rgba(21, 148, 71, 0.28);
}

/* ===== HAMBURGER MENU ===== */
.hamb {
  display: none;
  border: 0;
  background: linear-gradient(135deg, #eef5ff 0%, #e8f1ff 100%);
  color: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 22px;
  font-weight: 600;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(7, 87, 217, 0.1);
}

.hamb:hover {
  background: linear-gradient(135deg, #d7e8f7 0%, #d0e1f5 100%);
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(7, 87, 217, 0.2);
  border-color: rgba(7, 87, 217, 0.2);
}

.hamb:active {
  transform: scale(0.98);
}

.hamb.open {
  transform: rotate(90deg) scale(1);
  background: linear-gradient(135deg, var(--blue), #0650c8);
  color: #fff;
  box-shadow: 0 6px 20px rgba(7, 87, 217, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== HERO SECTION ===== */
.hero,
.about-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 70px 0;
}

.hero::before,
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      92deg,
      #fff 0%,
      #fff 42%,
      rgba(255, 255, 255, 0.92) 53%,
      rgba(255, 255, 255, 0.55) 65%,
      rgba(255, 255, 255, 0.08) 84%
    ),
    url("../assets/images/slider.png") center/cover;
  animation: zoomIn 1.2s ease-out;
}

.hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
  animation: slideInLeft 0.9s ease-out 0.2s both;
}

.breadcrumb {
  font-size: 13px;
  color: #7891b5;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  animation: fadeIn 0.8s ease-out 0.15s both;
}

.breadcrumb b {
  color: var(--blue);
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue);
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex: none;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 20px 0 24px;
  color: var(--navy);
  font-weight: 900;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  max-width: 500px;
  color: #4d5f78;
  font-size: 16px;
  line-height: 1.75;
  animation: slideInUp 0.8s ease-out 0.5s both;
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  padding: 16px 32px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 320px;
  height: 320px;
}

.primary {
  background: linear-gradient(135deg, var(--blue), #0650c8);
  color: #fff;
  box-shadow: 0 10px 26px rgba(7, 87, 217, 0.3);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(7, 87, 217, 0.4);
}

.secondary {
  border: 1.5px solid #8fd0ab;
  color: var(--green);
  background: #fff;
}

.secondary:hover {
  background: #f0fbf5;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(21, 148, 71, 0.18);
}

.outline {
  border: 1.5px solid #9dc3ed;
  color: var(--blue);
  background: #fff;
}

.outline:hover {
  background: #eef5ff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(7, 87, 217, 0.18);
}

.green {
  background: linear-gradient(135deg, var(--green), #0f6b34);
  color: #fff;
  box-shadow: 0 10px 26px rgba(21, 148, 71, 0.3);
}

.green:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(21, 148, 71, 0.4);
}

/* ===== TRUST SECTION (auto-scrolling marquee) ===== */
.trust {
  position: relative;
  background: linear-gradient(120deg, var(--navy), #083a82);
  color: #fff;
  padding: 32px 0;
  overflow: hidden;
}

/* Edge fade masks so items dissolve in/out at the boundary instead of
   popping abruptly. Colors sample the two ends of the band's own gradient. */
.trust::before,
.trust::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.trust::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}

.trust::after {
  right: 0;
  background: linear-gradient(270deg, #083a82 0%, transparent 100%);
}

.trust .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: max-content;
  max-width: none;
  margin: 0;
  animation: trust-scroll 26s linear infinite;
}

.trust:hover .container {
  animation-play-state: paused;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 44px;
  flex: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #bcd7fb;
  font-size: 0;
  position: relative;
  transition: all 0.3s ease;
  animation: glow 3.2s ease-in-out infinite;
}

.trust-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 19px;
  height: 19px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

/* One vector icon per trust item, matched by position so the cloned
   marquee set (positions 5-8) shows the same icon as its original. */
.trust-item:nth-child(4n + 1) .trust-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.55 17.65 4 12.1l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.55 17.65 4 12.1l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/%3E%3C/svg%3E");
}

.trust-item:nth-child(4n + 2) .trust-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5l2.95 6.28 6.85.72-5.1 4.75 1.44 6.75L12 17.77l-6.14 3.23 1.44-6.75-5.1-4.75 6.85-.72z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5l2.95 6.28 6.85.72-5.1 4.75 1.44 6.75L12 17.77l-6.14 3.23 1.44-6.75-5.1-4.75 6.85-.72z'/%3E%3C/svg%3E");
}

.trust-item:nth-child(4n + 3) .trust-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='3' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='3' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3C/svg%3E");
}

.trust-item:nth-child(4n + 4) .trust-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='12' rx='2.5'/%3E%3Cpath d='M7 16l-1.2 4.2L11 16z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='12' rx='2.5'/%3E%3Cpath d='M7 16l-1.2 4.2L11 16z'/%3E%3C/svg%3E");
}

/* Stagger the pulse so all 4 items breathe in sequence rather than in
   unison — pattern repeats every 4 items so the cloned marquee set
   (positions 5-8) picks up exactly where the originals left off. */
.trust-item:nth-child(4n + 1) .trust-icon {
  animation-delay: 0s;
}
.trust-item:nth-child(4n + 2) .trust-icon {
  animation-delay: 0.8s;
}
.trust-item:nth-child(4n + 3) .trust-icon {
  animation-delay: 1.6s;
}
.trust-item:nth-child(4n + 4) .trust-icon {
  animation-delay: 2.4s;
}

.trust-item:hover .trust-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.12) rotate(8deg);
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .trust .container {
    animation: none;
  }
  .trust-icon {
    animation: none;
  }
}

/* ===== SECTION STYLES ===== */
section {
  padding: 90px 0;
}

.soft {
  background: #f8fbfe;
}

.section-title {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.section-title h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--navy);
  font-weight: 900;
  margin-top: 14px;
}

.section-title p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== BRANDS SECTION ===== */
.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.brand {
  height: auto;
  padding: 24px 14px 22px;
  border: 2px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--navy);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  /* filter: grayscale(1) opacity(0.55); */
  transition: filter 0.3s ease;
}

.brand:hover img {
  filter: grayscale(0) opacity(1);
}

.brand:nth-child(1) {
  animation-delay: 0s;
}
.brand:nth-child(2) {
  animation-delay: 0.08s;
}
.brand:nth-child(3) {
  animation-delay: 0.16s;
}
.brand:nth-child(4) {
  animation-delay: 0.24s;
}
.brand:nth-child(5) {
  animation-delay: 0.32s;
}
.brand:nth-child(6) {
  animation-delay: 0.4s;
}

.brand:hover {
  transform: translateY(-6px);
  background: #f2f7ff;
  border-color: var(--blue);
  box-shadow: 0 16px 32px rgba(7, 87, 217, 0.18);
}

/* ===== ABOUT SECTION ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.about .eyebrow {
  animation: none;
}

.about h2 {
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--navy);
  font-weight: 900;
  margin: 16px 0 22px;
}

.about p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 14px;
}

.about p:last-of-type {
  margin-bottom: 28px;
}

.about-img {
  position: relative;
  padding: 0 22px 22px 0;
}

.about-img::before {
  content: "";
  position: absolute;
  inset: 22px 0 0 22px;
  background: linear-gradient(
    135deg,
    rgba(7, 87, 217, 0.14),
    rgba(21, 148, 71, 0.1)
  );
  border-radius: 20px;
  z-index: 0;
}

.about-img img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(6, 43, 101, 0.18);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-img:hover img {
  transform: scale(1.045);
}

.about-badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 16px 36px rgba(6, 43, 101, 0.22);
}

.about-badge strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.about-badge span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--muted);
  line-height: 1.3;
  max-width: 76px;
}

/* ===== OFFER GRID ===== */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.offer {
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: #fff;
  transition: all 0.35s ease;
  cursor: pointer;
}

.offer:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.offer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 42, 98, 0.55), transparent 55%),
    linear-gradient(90deg, #032a62f5, #032a6230);
  transition: all 0.3s ease;
}

.offer:hover::after {
  background:
    linear-gradient(0deg, rgba(3, 42, 98, 0.6), transparent 55%),
    linear-gradient(90deg, #032a62a8, #032a6200);
}

.offer.green::after {
  background:
    linear-gradient(0deg, rgba(8, 120, 91, 0.55), transparent 55%),
    linear-gradient(90deg, #08785bf5, #08785b22);
}

.offer.green:hover::after {
  background:
    linear-gradient(0deg, rgba(8, 120, 91, 0.6), transparent 55%),
    linear-gradient(90deg, #08785b80, #08785b00);
}

.offer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer:hover img {
  transform: scale(1.08);
}

.offer-content {
  position: absolute;
  z-index: 2;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
}

.offer h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 27px;
  letter-spacing: -0.5px;
  font-weight: 900;
}

.offer h3::before {
  content: "";
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 11px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px;
}

.offer:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'%3E%3Cline x1='12' y1='2' x2='12' y2='22'/%3E%3Cline x1='4.2' y1='6' x2='19.8' y2='18'/%3E%3Cline x1='4.2' y1='18' x2='19.8' y2='6'/%3E%3C/svg%3E");
}

.offer:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20.5 6.5a4.5 4.5 0 0 1-5.9 5.9L7 20l-3-3 7.9-7.9A4.5 4.5 0 0 1 17.5 3l-2.7 2.7.4 2.6 2.6.4z'/%3E%3C/svg%3E");
}

.offer p {
  font-size: 13.5px;
  line-height: 1.6;
  margin: 10px 0 20px;
  color: #e8f4ff;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(7, 87, 217, 0.14);
  border-color: var(--blue);
}

.product-img {
  position: relative;
  height: 220px;
  background: #f4f9fd;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(7, 87, 217, 0.55),
    rgba(7, 87, 217, 0) 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product:hover .product-img::after {
  opacity: 1;
}

.product-body {
  padding: 22px 20px 26px;
}

.product h3 {
  font-size: 17px;
  color: var(--navy);
  font-weight: 800;
}

.product p {
  font-size: 13.5px;
  color: var(--muted);
  height: auto;
  line-height: 1.55;
  margin: 8px 0 18px;
}

.product .btn {
  font-size: 12px;
  padding: 10px 22px;
  border: 1.5px solid #9dc3ed;
  background: #fff;
  color: var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.product .btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.brand-name {
  font-size: 17px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* ===== SPARES SECTION ===== */
.spares {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.spare {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
}

.spare:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(21, 148, 71, 0.14);
  border-color: var(--green);
}

.spare-img {
  height: 150px;
  background: #eef7ff;
  overflow: hidden;
}

.spare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.spare-body {
  padding: 20px 22px 24px;
}

.spare h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 800;
}

.spare h3::before {
  content: "";
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 9px;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  transition: transform 0.3s ease;
}

.spare:hover h3::before {
  transform: scale(1.1) rotate(-6deg);
}

.spare:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpolygon points='12,2 20,7 20,17 12,22 4,17 4,7'/%3E%3C/svg%3E");
}

.spare:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='2' y='6.5' width='20' height='3.5' rx='1.75'/%3E%3Crect x='2' y='14' width='20' height='3.5' rx='1.75'/%3E%3C/svg%3E");
}

.spare:nth-child(3) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C12 2 5 11 5 15.5A7 7 0 0 0 12 22a7 7 0 0 0 7-6.5C19 11 12 2 12 2z'/%3E%3C/svg%3E");
}

.spare:nth-child(4) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13 2L4 14h6l-1 8 10-12h-6l1-8z'/%3E%3C/svg%3E");
}

.spare ul {
  list-style: none;
  font-size: 13px;
  color: #5e6e81;
  margin-top: 12px;
  line-height: 1.85;
}

.spare ul li {
  position: relative;
  padding-left: 21px;
}

.spare ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 13px;
  background-color: var(--green);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.55 17.65 4 12.1l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.55 17.65 4 12.1l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* ===== FEATURES SECTION (bento layout) ===== */
.features {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 26px 22px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(7, 87, 217, 0.12);
  border-color: var(--blue);
}

.feature:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  justify-content: center;
  padding: 40px 34px;
  background: linear-gradient(155deg, #f0f6ff 0%, #ffffff 60%);
}

.feature:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.feature:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.feature:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.feature:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.feature .num {
  order: -1;
  color: var(--blue);
  background: #eef5ff;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.feature .ico {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 13px;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px 21px;
  font-size: 0;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(7, 87, 217, 0.22);
  transition: all 0.3s ease;
}

.feature:nth-child(1) .ico {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2 4 5v6c0 5.2 3.4 9.5 8 11 4.6-1.5 8-5.8 8-11V5l-8-3z'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--blue), #0650c8);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size:
    28px 28px,
    100% 100%;
}

.feature:hover .ico {
  transform: scale(1.1) rotate(6deg);
}

.feature:nth-child(2) .ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='3' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3C/svg%3E");
}
.feature:nth-child(3) .ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.4 2.6h6.5a2.5 2.5 0 0 1 2.5 2.5v6.5a2.5 2.5 0 0 1-.73 1.77l-8.5 8.5a2.5 2.5 0 0 1-3.54 0l-6.5-6.5a2.5 2.5 0 0 1 0-3.54l8.5-8.5a2.5 2.5 0 0 1 1.77-.73z'/%3E%3Ccircle cx='17' cy='7' r='1.8' fill='%230757d9'/%3E%3C/svg%3E");
}
.feature:nth-child(4) .ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3a8 8 0 0 0-8 8v6a2.5 2.5 0 0 0 2.5 2.5H8a1.5 1.5 0 0 0 1.5-1.5v-3A1.5 1.5 0 0 0 8 13.5H6v-2.5a6 6 0 0 1 12 0v2.5h-2a1.5 1.5 0 0 0-1.5 1.5v3A1.5 1.5 0 0 0 16 19.5v.5a2 2 0 0 1-2 2h-1.5a1 1 0 0 0 0 2H14a4 4 0 0 0 4-4 2.5 2.5 0 0 0 2-2.45V11a8 8 0 0 0-8-8z'/%3E%3C/svg%3E");
}
.feature:nth-child(5) .ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2 3 6.5v11L12 22l9-4.5v-11L12 2z' fill-opacity='0.55'/%3E%3Cpath d='M12 2 3 6.5 12 11l9-4.5L12 2z'/%3E%3Cpath d='M12 11v11l9-4.5v-11L12 11z' fill-opacity='0.78'/%3E%3C/svg%3E");
}

.feature h3 {
  font-size: 16px;
  color: var(--navy);
  font-weight: 800;
}

.feature:nth-child(1) h3 {
  font-size: 21px;
}

.feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

.feature:nth-child(1) p {
  font-size: 14.5px;
  max-width: 260px;
}

/* ===== STEPS SECTION ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  max-width: 980px;
  margin: auto;
}

.step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  min-height: auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(7, 87, 217, 0.15);
  border-color: var(--blue);
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -44px;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--blue);
  font-size: 30px;
  font-weight: 800;
  -webkit-text-stroke: 0.6px var(--blue);
}

.step .ico {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  box-shadow: 0 8px 20px rgba(7, 87, 217, 0.28);
  font-size: 0;
  flex: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:nth-child(1) .ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'%3E%3Crect x='5' y='4' width='14' height='17' rx='2'/%3E%3Cpath d='M9 2.5h6' stroke-width='2.2'/%3E%3Cline x1='8' y1='10.5' x2='16' y2='10.5'/%3E%3Cline x1='8' y1='14' x2='16' y2='14'/%3E%3Cline x1='8' y1='17.5' x2='13' y2='17.5'/%3E%3C/svg%3E");
}

.step:nth-child(2) .ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='4' width='18' height='12' rx='2.5'/%3E%3Cpath d='M7 16l-1.2 4.2L11 16z'/%3E%3C/svg%3E");
}

.step:nth-child(3) .ico {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M1 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H2a1 1 0 0 1-1-1V7z'/%3E%3Cpath d='M13 10h4.5a1 1 0 0 1 .8.4l2.5 3.1a1 1 0 0 1 .2.6v.7a1 1 0 0 1-1 1H13v-5.8z'/%3E%3Crect x='2.5' y='15.8' width='16' height='1.4' rx='0.7'/%3E%3Ccircle cx='6.3' cy='18.3' r='2.1'/%3E%3Ccircle cx='17.3' cy='18.3' r='2.1'/%3E%3C/svg%3E");
}

.step:hover .ico {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 12px 28px rgba(7, 87, 217, 0.4);
}

.step small {
  display: inline-block;
  color: var(--blue);
  background: #eef5ff;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.step h3 {
  font-size: 16px;
  color: var(--navy);
  font-weight: 800;
  margin: 4px 0 4px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: auto;
}

.review {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 28px;
  min-height: auto;
  transition: all 0.35s ease;
}

.review:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  border-color: var(--blue);
}

.stars {
  color: #f0a400;
  font-size: 15px;
  letter-spacing: 3px;
}

.review p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #45566b;
  margin: 14px 0 22px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
}

.avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #d9e8f7;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 800;
  transition: all 0.3s ease;
}

.review:hover .avatar {
  transform: scale(1.15) rotate(8deg);
}

/* ===== GALLERY SECTION ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.gallery > div {
  border-radius: 14px;
  overflow: hidden;
  height: 260px;
}

.gallery > div {
  transition: all 0.35s ease;
  cursor: pointer;
}

.gallery > div:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

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

.gallery > div:hover img {
  transform: scale(1.1);
}

.gallery-btn {
  text-align: center;
}

/* ===== BLOG SECTION ===== */
.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: all 0.35s ease;
}

.post:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.post-img {
  height: 220px;
  overflow: hidden;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.post-body {
  padding: 22px;
}

.tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post h3 {
  font-size: 17px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 800;
  margin: 10px 0 8px;
}

.post p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.read {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.read:hover {
  letter-spacing: 1.2px;
}

/* ===== FAQ SECTION ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.faq-img {
  grid-column: 1;
  grid-row: 1 / 3;
}

.faq-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(6, 43, 101, 0.15);
}

.faq-layout .section-title {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
}

.faq {
  grid-column: 2;
  grid-row: 2;
  max-width: none;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-row {
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-row:hover {
  color: var(--blue);
  padding-left: 12px;
}

.faq-row b {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  background: #eef5ff;
  transition: transform 0.3s ease;
}

.faq-item.open b {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 4px;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 4px 22px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(100deg, #062b65, #0757b8);
  border-radius: 18px;
  color: #fff;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(6, 43, 101, 0.3);
}

.cta h2 {
  font-size: 30px;
  letter-spacing: -0.5px;
}

.cta p {
  font-size: 14px;
  color: #d5e8f9;
  margin-top: 8px;
}

.cta-actions {
  display: flex;
  gap: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 26px;
  letter-spacing: -0.3px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 32px;
}

.line {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #0650c8);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(7, 87, 217, 0.25);
}

.line small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 5px;
}

.line strong {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 700;
}

.line span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
  max-width: 320px;
  display: inline-block;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 55, 0.06);
}

.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: #fbfdff;
  transition: all 0.25s ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7, 87, 217, 0.1);
}

.field .btn {
  width: 100%;
  padding: 15px;
  font-size: 13px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 2000;
  transition: width 0.1s linear;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(7, 87, 217, 0.35);
}

@media (max-width: 760px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

/* ===== PRODUCTS PAGE: INDIVIDUAL SPARES GRID ===== */
.spare-individual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spare-individual {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.spare-individual:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(7, 87, 217, 0.12);
  border-color: var(--blue);
}

.spare-individual .img {
  height: 170px;
  background: #f4f9fd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spare-individual .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.spare-individual:hover .img img {
  transform: scale(1.08);
}

.spare-individual .body {
  padding: 16px 14px 20px;
}

.spare-individual h3 {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 800;
}

.spare-individual .body p {
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0 12px;
}

.spare-individual .btn {
  font-size: 10.5px;
  padding: 8px 14px;
  border-radius: 7px;
}

/* ===== PRODUCTS PAGE: MORE ACCESSORIES GRID ===== */
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.more-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.more-card:hover {
  transform: translateY(-4px);
}

.more-img {
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f9fd;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.more-card:hover .more-img {
  border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(7, 87, 217, 0.12);
}

.more-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.more-card:hover .more-img img {
  transform: scale(1.1);
}

.more-card p {
  font-size: 12.5px;
  color: var(--navy);
  font-weight: 700;
}

/* ===== PRODUCTS PAGE: QUALITY TRUST STRIP ===== */
.quality {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quality-item:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(7, 87, 217, 0.1);
  transform: translateY(-4px);
}

.qicon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  font-size: 0;
}

.quality-item:nth-child(1) .qicon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9.55 17.65 4 12.1l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/%3E%3C/svg%3E");
}

.quality-item:nth-child(2) .qicon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.4 2.6h6.5a2.5 2.5 0 0 1 2.5 2.5v6.5a2.5 2.5 0 0 1-.73 1.77l-8.5 8.5a2.5 2.5 0 0 1-3.54 0l-6.5-6.5a2.5 2.5 0 0 1 0-3.54l8.5-8.5a2.5 2.5 0 0 1 1.77-.73z'/%3E%3Ccircle cx='17' cy='7' r='1.8' fill='%230757d9'/%3E%3C/svg%3E");
}

.quality-item:nth-child(3) .qicon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.5C0.5 8 2 4.5 5.5 4c2-.3 3.5.7 4.5 2 1-1.3 2.5-2.3 4.5-2 3.5.5 5 4 3.5 7.5-2.5 4.9-10 9.5-10 9.5z'/%3E%3C/svg%3E");
}

.quality-item:nth-child(4) .qicon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2 4 5v6c0 5.2 3.4 9.5 8 11 4.6-1.5 8-5.8 8-11V5l-8-3z'/%3E%3C/svg%3E");
}

.quality-item strong {
  display: block;
  font-size: 17px;
  color: var(--navy);
  font-weight: 900;
}

.quality-item span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ===== CONTACT PAGE: GRID LAYOUT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.info-box h2,
.form-box h2 {
  font-size: 26px;
  letter-spacing: -0.3px;
  color: var(--navy);
  font-weight: 900;
  margin: 12px 0 14px;
}

.info-box p,
.form-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.info-list {
  display: grid;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item .icon {
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px;
}

.info-item:nth-child(1) .icon {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.9 21 3 13.1 3 3.5c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.info-item:nth-child(2) .icon {
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='4' width='18' height='12' rx='2.5'/%3E%3Cpath d='M7 16l-1.2 4.2L11 16z'/%3E%3C/svg%3E");
}

.info-item:nth-child(3) .icon {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7z'/%3E%3Ccircle cx='12' cy='9' r='2.6' fill='%230757d9'/%3E%3C/svg%3E");
}

.info-item:nth-child(4) .icon {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='3' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3C/svg%3E");
}

.info-item h4 {
  font-size: 12px;
  letter-spacing: 0.8px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 6px;
}

.info-item a {
  display: inline-block;
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.info-item a:hover {
  color: var(--blue);
}

.info-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 3px;
}

.form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 55, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.submit-row .btn {
  flex: 1;
  min-width: 180px;
}

/* ===== CONTACT PAGE: MAP + VISIT ===== */
.map-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 55, 0.08);
  min-height: 420px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.visit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 55, 0.06);
}

.visit h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 900;
  margin: 10px 0 12px;
}

.visit > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.visit .btn {
  margin-bottom: 24px;
}

.hours {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.hours > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.hours span {
  color: var(--muted);
  font-weight: 600;
}

.hours b {
  color: var(--navy);
  font-weight: 800;
}

.visit p:last-child {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.visit p:last-child strong {
  color: var(--navy);
}

/* ===== GALLERY PAGE: FILTERS ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.filter {
  padding: 11px 24px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(7, 87, 217, 0.25);
}

/* ===== INDEX PAGE: VIDEO GALLERY CARDS ===== */
.gallery .video-card {
  height: 400px;
  position: relative;
  cursor: pointer;
  background: #04122c;
}

.gallery:has(.video-card) {
  grid-auto-rows: auto;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 43, 101, 0.28);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-card.playing::after {
  opacity: 0;
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.video-card .play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--blue);
  margin-left: 5px;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card.playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

.video-card .gallery-caption {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  bottom: auto;
  background: rgba(3, 15, 36, 0.55);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 1;
  transform: none;
}

.video-card.playing .gallery-caption {
  opacity: 0;
}

@media (max-width: 900px) {
  .gallery:has(.video-card) {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery .video-card {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .gallery .video-card {
    height: 260px;
  }
}

/* ===== GALLERY PAGE: VIDEO GRID (8 items) ===== */
.gallery.video-gallery {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}

.video-gallery .video-card {
  height: 420px;
}

.video-gallery .video-card::after {
  opacity: 1;
  background: rgba(6, 43, 101, 0.18);
}

.video-gallery .mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(3, 15, 36, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: all 0.25s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M3 9v6h4l5 5V4L7 9H3z'/%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' fill='none' d='M16 9l6 6M22 9l-6 6'/%3E%3C/svg%3E");
}

.video-gallery .mute-btn:hover {
  background-color: rgba(3, 15, 36, 0.8);
  transform: scale(1.08);
}

.video-gallery .video-card.unmuted .mute-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M3 9v6h4l5 5V4L7 9H3z'/%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' fill='none' d='M16 8a5 5 0 0 1 0 8M19 5a9 9 0 0 1 0 14'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .gallery.video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-gallery .video-card {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .gallery.video-gallery {
    grid-template-columns: 1fr;
  }

  .video-gallery .video-card {
    height: 260px;
  }
}

/* ===== GALLERY PAGE: MASONRY GRID ===== */
.gallery {
  grid-auto-rows: 260px;
}

.gallery-item {
  position: relative;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 100%;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(6, 43, 101, 0.85), transparent 70%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GALLERY PAGE: CATEGORY CARDS ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(7, 87, 217, 0.14);
  border-color: var(--blue);
}

.category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category:hover img {
  transform: scale(1.08);
}

.category-body {
  padding: 24px 22px 28px;
}

.category-body h3 {
  font-size: 17px;
  color: var(--navy);
  font-weight: 800;
}

.category-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

/* ===== GALLERY PAGE: LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 36, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.lightbox .close:hover,
.lightbox .prev:hover,
.lightbox .next:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.lightbox .close {
  top: 24px;
  right: 24px;
}

.lightbox .prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .prev:hover,
.lightbox .next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ===== ABOUT PAGE: INTRO (WHO WE ARE) ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.intro h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--navy);
  font-weight: 900;
  margin: 16px 0 22px;
}

.intro p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 14px;
}

.intro p:last-of-type {
  margin-bottom: 28px;
}

.store-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 43, 101, 0.15);
}

.store-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.store-photo:hover img {
  transform: scale(1.05);
}

/* ===== ABOUT PAGE: COMPLETE SOLUTIONS ===== */
.solution-wrap h2 {
  text-align: center;
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--navy);
  font-weight: 900;
  max-width: 640px;
  margin: 0 auto 44px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(7, 87, 217, 0.14);
  border-color: var(--blue);
}

.solution-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.solution-card .body {
  padding: 24px 22px 28px;
}

.solution-card h3 {
  font-size: 17px;
  color: var(--navy);
  font-weight: 800;
}

.solution-card .body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

/* ===== ABOUT PAGE: WHAT WE OFFER (icon grid) ===== */
.offer-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-icon {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(7, 87, 217, 0.12);
  border-color: var(--blue);
}

.circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px 21px;
  font-size: 0;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(7, 87, 217, 0.25);
  transition: transform 0.3s ease;
}

.offer-icon:hover .circle {
  transform: scale(1.1) rotate(-6deg);
}

.offer-icon:nth-child(1) .circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9.55 17.65 4 12.1l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/%3E%3C/svg%3E");
}

.offer-icon:nth-child(2) .circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.5l2.95 6.28 6.85.72-5.1 4.75 1.44 6.75L12 17.77l-6.14 3.23 1.44-6.75-5.1-4.75 6.85-.72z'/%3E%3C/svg%3E");
}

.offer-icon:nth-child(3) .circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='3' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='3' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3Crect x='13.5' y='13.5' width='7.5' height='7.5' rx='1.5'/%3E%3C/svg%3E");
}

.offer-icon:nth-child(4) .circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='white' stroke-width='1.8'/%3E%3Cpath fill='white' d='M15.3 8.7l-1.8 4.8-4.8 1.8 1.8-4.8z'/%3E%3C/svg%3E");
}

.offer-icon:nth-child(5) .circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='4' width='18' height='12' rx='2.5'/%3E%3Cpath d='M7 16l-1.2 4.2L11 16z'/%3E%3C/svg%3E");
}

.offer-icon:nth-child(6) .circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.5C0.5 8 2 4.5 5.5 4c2-.3 3.5.7 4.5 2 1-1.3 2.5-2.3 4.5-2 3.5.5 5 4 3.5 7.5-2.5 4.9-10 9.5-10 9.5z'/%3E%3C/svg%3E");
}

.offer-icon h4 {
  font-size: 14.5px;
  letter-spacing: 0.3px;
  color: var(--navy);
  font-weight: 800;
}

.offer-icon p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 6px;
}

/* ===== ABOUT PAGE: OUR APPROACH ===== */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.approach-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 43, 101, 0.15);
}

.approach-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.approach-photo:hover img {
  transform: scale(1.05);
}

.approach-stat {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(6, 43, 101, 0.88);
  backdrop-filter: blur(4px);
}

.approach-stat > div {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-stat > div:last-child {
  border-right: 0;
}

.approach-stat strong {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}

.approach-stat span {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.6px;
  color: #bcd7fb;
  font-weight: 700;
  margin-top: 4px;
}

.approach h2 {
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--navy);
  font-weight: 900;
  margin: 16px 0 20px;
}

.approach p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ===== ABOUT PAGE: WHY CHOOSE ===== */
.choose {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 64px;
}

.choose h2 {
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--navy);
  font-weight: 900;
  margin: 16px 0 26px;
}

.choose-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.choose-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-color: var(--green);
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9.55 17.65 4 12.1l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.choose-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 43, 101, 0.15);
}

.choose-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.choose-photo:hover img {
  transform: scale(1.05);
}

/* ===== ABOUT PAGE: BRAND STRIP ===== */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.brand-mini {
  padding: 16px 28px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-mini:hover {
  transform: translateY(-4px);
  border-color: currentColor;
  box-shadow: 0 12px 26px rgba(7, 87, 217, 0.14);
}

/* ===== ABOUT PAGE: CTA ===== */
.about-cta {
  background: linear-gradient(100deg, #062b65, #0757b8);
  border-radius: 18px;
  color: #fff;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(6, 43, 101, 0.3);
}

.about-cta h2 {
  font-size: 30px;
  letter-spacing: -0.5px;
}

.about-cta p {
  font-size: 14px;
  color: #d5e8f9;
  margin-top: 8px;
}

/* ===== CHANNELS (contact page "how to reach us" cards) ===== */
.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.channel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 34px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.channel:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(7, 87, 217, 0.12);
  border-color: var(--blue);
}

.big-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  font-size: 0;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(7, 87, 217, 0.25);
  transition: transform 0.3s ease;
}

.channel:hover .big-icon {
  transform: scale(1.1) rotate(-6deg);
}

.channel:nth-child(1) .big-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.9 21 3 13.1 3 3.5c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.channel:nth-child(2) .big-icon {
  background-color: var(--green);
  box-shadow: 0 10px 24px rgba(21, 148, 71, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='4' width='18' height='12' rx='2.5'/%3E%3Cpath d='M7 16l-1.2 4.2L11 16z'/%3E%3C/svg%3E");
}

.channel:nth-child(3) .big-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'%3E%3Crect x='2.5' y='4.5' width='19' height='15' rx='2.2'/%3E%3Cpath d='M3 6l9 6.5L21 6'/%3E%3C/svg%3E");
}

.channel h3 {
  font-size: 18px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 8px;
}

.channel p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ===== FLOATING BUTTONS ===== */
.float {
  position: fixed;
  right: 18px;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 900;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 18px #0003;
  transition: all 0.3s ease;
  animation: slideInUp 0.8s ease-out;
}

.float.wa {
  bottom: 68px;
  background: #19a451;
}

.float.call {
  bottom: 18px;
  background: #0757d9;
}

.float:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.float.wa:hover {
  box-shadow: 0 12px 28px rgba(25, 164, 81, 0.4);
}

.float.call:hover {
  box-shadow: 0 12px 28px rgba(7, 87, 217, 0.4);
}

/* ===== FOOTER SECTION ===== */
footer {
  background: #03255b;
  color: #a9c1de;
  padding: 76px 0 22px;
}

.footergrid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-logo {
  width: 200px;
  height: 150px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.08);
}

.footergrid > div:first-child p {
  font-size: 13.5px;
  line-height: 1.6;
  /* max-width: 220px; */
}

.footer-about h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin: 2px 0 8px;
}

.footer-desc {
  max-width: 280px;
  margin-top: 8px !important;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-4px);
}

.social-icon:nth-child(1) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M14 9h3V5.5h-3c-2.2 0-4 1.8-4 4V12H8v3.5h2V22h3.5v-6.5H16l.5-3.5h-3v-2c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
}

.social-icon:nth-child(2) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.2' cy='6.8' r='1.1' fill='white' stroke='none'/%3E%3C/svg%3E");
}

.social-icon:nth-child(3) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='5.5' width='20' height='13' rx='4' fill='white'/%3E%3Cpath d='M10 9.2v5.6l5-2.8z' fill='%2303255b'/%3E%3C/svg%3E");
}

.social-icon:nth-child(4) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15L2 22l5.2-1.4A10 10 0 1 0 12 2zm5.7 14.2c-.2.7-1.4 1.3-2 1.4-.5.1-1.2.2-3.6-.8-3-1.2-4.9-4.3-5.1-4.5-.1-.2-1.2-1.6-1.2-3s.7-2.1 1-2.4c.2-.3.5-.3.7-.3h.5c.2 0 .4 0 .6.4.2.5.7 1.8.8 1.9.1.1.1.3 0 .5-.1.2-.1.3-.3.5l-.4.5c-.1.1-.3.3-.1.6.2.3.8 1.3 1.7 2.1 1.2 1 2.1 1.4 2.5 1.5.3.1.5.1.6-.1l.6-.7c.2-.3.4-.2.7-.1l1.7.8c.2.1.4.2.4.4.1.2.1.9-.1 1.3z'/%3E%3C/svg%3E");
}

.social-icon:nth-child(4):hover {
  background-color: var(--green);
  border-color: var(--green);
}

.footer h4 {
  font-size: 12.5px;
  letter-spacing: 0.8px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

footer p,
footer a,
footer span {
  font-size: 13.5px;
  line-height: 1.9;
}

.footerlinks {
  display: grid;
  gap: 9px;
}

.footerlinks a {
  transition: all 0.3s ease;
}

.footerlinks a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact a,
.footer-contact .footer-address-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ficon {
  display: inline-block;
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 3px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.ficon.phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.9 21 3 13.1 3 3.5c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.9 21 3 13.1 3 3.5c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.ficon.pin {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7z'/%3E%3C/svg%3E");
}

.foot-bottom {
  border-top: 1px solid #ffffff1f;
  margin-top: 20px;
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: #7f9ac0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1050px) {
  .navlinks {
    gap: 16px;
  }
  .call-top {
    display: none;
  }

  section {
    padding: 74px 0;
  }

  .hero h1 {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .about {
    gap: 44px;
  }

  .about h2 {
    font-size: 36px;
  }

  .about-img img {
    height: 360px;
  }

  .intro {
    gap: 40px;
  }

  .intro h2 {
    font-size: 32px;
  }

  .store-photo img {
    height: 380px;
  }

  .solution-cards {
    gap: 18px;
  }

  .category-grid {
    gap: 18px;
  }

  .offer-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .approach,
  .choose {
    gap: 40px;
  }

  .approach h2,
  .choose h2 {
    font-size: 28px;
  }

  .approach-photo img,
  .choose-photo img {
    height: 340px;
  }

  .faq-layout {
    gap: 40px;
  }

  .faq-img img {
    height: 480px;
  }

  .contact-grid {
    gap: 40px;
  }

  .map-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .map,
  .map iframe {
    min-height: 340px;
  }

  .features {
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .feature:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    padding: 30px 34px;
  }

  .feature:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .feature:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .feature:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  .feature:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .contact {
    gap: 44px;
  }

  .cta {
    padding: 40px 44px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .topline {
    height: 35px;
    font-size: 12px;
    padding: 0 15px;
  }

  .topline span {
    font-size: 12px;
  }

  header {
    height: 68px;
    padding: 0 15px;
  }

  .nav {
    padding: 0;
  }

  .logo {
    width: 140px;
  }

  .navlinks {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    padding: 12px 5%;
    flex-direction: column;
    gap: 2px;
    border-top: 2px solid var(--blue);
    border-bottom: 1px solid #e0e8f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.3s ease-out;
    z-index: 999;
  }

  .navlinks a {
    height: auto;
    padding: 12px 8px;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .navlinks a:hover {
    background: #f0f5ff;
    padding-left: 12px;
  }

  .navlinks a::before {
    display: none;
  }

  .navlinks.open {
    display: flex;
  }

  .hamb {
    display: block;
  }

  .call-top {
    font-size: 12px;
    padding: 5px 10px;
  }

  .call-top i {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .wa {
    font-size: 11px;
    padding: 9px 14px;
  }

  .navlinks a {
    height: auto;
    padding: 10px 0;
  }

  section {
    padding: 60px 0;
  }

  .hero,
  .about-hero {
    min-height: auto;
    padding: 52px 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 38px;
    margin: 16px 0 18px;
  }

  .hero p {
    font-size: 14.5px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .btn {
    padding: 13px 24px;
    font-size: 12px;
  }

  .trust {
    padding: 22px 0;
  }

  .trust::before,
  .trust::after {
    width: 50px;
  }

  .trust-item {
    padding: 4px 28px;
    font-size: 12px;
    gap: 10px;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 15px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .brands {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .brand {
    padding: 20px 8px;
    font-size: 13px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about h2 {
    font-size: 30px;
  }

  .about p {
    font-size: 14px;
  }

  .about-img img {
    height: 280px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro h2 {
    font-size: 26px;
  }

  .store-photo img {
    height: 260px;
  }

  .solution-wrap h2 {
    font-size: 26px;
  }

  .solution-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lightbox img {
    max-width: 92vw;
    max-height: 75vh;
  }

  .lightbox .close,
  .lightbox .prev,
  .lightbox .next {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .lightbox .close {
    top: 14px;
    right: 14px;
  }

  .lightbox .prev {
    left: 10px;
  }

  .lightbox .next {
    right: 10px;
  }

  .offer-icons {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .approach,
  .choose {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach h2,
  .choose h2 {
    font-size: 24px;
  }

  .approach-photo img,
  .choose-photo img {
    height: 240px;
  }

  .approach-stat strong {
    font-size: 16px;
  }

  .approach-stat span {
    font-size: 8.5px;
  }

  .brand-mini {
    padding: 13px 20px;
    font-size: 13px;
  }

  .about-cta {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 20px;
  }

  .about-cta h2 {
    font-size: 24px;
  }

  .about-badge {
    left: 16px;
    padding: 11px 16px;
    gap: 9px;
  }

  .about-badge strong {
    font-size: 21px;
  }

  .about-badge span {
    font-size: 10.5px;
    max-width: 64px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offer {
    height: 220px;
  }

  .offer h3 {
    font-size: 22px;
  }

  .offer h3::before {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-size: 16px 16px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .spare-individual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .more-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .quality {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-img {
    height: 170px;
  }

  .spares {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .spare-img {
    height: 120px;
  }

  .features {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .feature:nth-child(1),
  .feature:nth-child(2),
  .feature:nth-child(3),
  .feature:nth-child(4),
  .feature:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
    padding: 24px 22px;
  }

  .feature:nth-child(1) h3 {
    font-size: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .testimonials {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
  }

  .gallery > div {
    height: 200px;
  }

  .blog {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-img {
    grid-column: 1;
    grid-row: 1;
  }

  .faq-img img {
    height: 240px;
  }

  .faq-layout .section-title {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
  }

  .faq {
    grid-column: 1;
    grid-row: 3;
  }

  .faq-row {
    font-size: 14px;
    padding: 18px 4px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-box,
  .visit {
    padding: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .submit-row .btn {
    flex: none;
    width: 100%;
  }

  .cta {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 20px;
  }

  .cta h2 {
    font-size: 24px;
  }

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

  .form {
    padding: 26px;
  }

  .formgrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .channels {
    grid-template-columns: 1fr 1fr;
  }

  .footergrid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  footer {
    padding: 56px 0 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 44px 0;
  }

  .hero,
  .about-hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .hero p {
    font-size: 13.5px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .about h2 {
    font-size: 25px;
  }

  .about-img img {
    height: 200px;
  }

  .about-img::before {
    inset: 14px 0 0 14px;
  }

  .about-img {
    padding: 0 14px 14px 0;
  }

  .about-badge {
    left: 10px;
    bottom: -6px;
    padding: 8px 12px;
    gap: 7px;
    border-radius: 10px;
  }

  .about-badge strong {
    font-size: 17px;
  }

  .about-badge span {
    font-size: 9px;
    max-width: 54px;
  }

  .offer {
    height: 190px;
  }

  .offer-content {
    width: 78%;
  }

  .offer h3 {
    font-size: 19px;
  }

  .offer h3::before {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 9px;
    background-size: 14px 14px;
  }

  .brands,
  .products,
  .features,
  .testimonials,
  .blog,
  .spare-individual-grid,
  .quality {
    grid-template-columns: 1fr;
  }

  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .channels,
  .footergrid {
    grid-template-columns: 1fr;
  }

  .trust::before,
  .trust::after {
    width: 32px;
  }

  .trust-item {
    padding: 4px 20px;
    font-size: 11.5px;
    gap: 8px;
  }

  .spares {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery > div {
    height: 220px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .contact {
    gap: 30px;
  }

  .form {
    padding: 20px;
  }

  .formgrid {
    gap: 14px;
  }

  .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 17px;
  }
}
/* ==========================================================
   ASHOK APPLIANCE - FULL SITE PREMIUM ENHANCEMENT
   Additive layer: existing CSS/animations above are preserved.
   Applies consistently to Home, About, Products, Gallery,
   and Contact pages.
   ========================================================== */

:root {
  --premium-shadow: 0 22px 50px rgba(18, 40, 75, 0.14);
  --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Ambient pointer light on desktop */
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  left: calc(var(--mouse-x, 50vw) - 210px);
  top: calc(var(--mouse-y, 50vh) - 210px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(
    circle,
    rgba(7, 87, 217, 0.075),
    rgba(7, 87, 217, 0.025) 28%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: multiply;
}
body.cursor-active::after {
  opacity: 1;
}

/* Hero ambient depth */
.hero,
.about-hero {
  position: relative;
  overflow: hidden;
}
.hero::after,
.about-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(7, 87, 217, 0.13),
    rgba(7, 87, 217, 0.035) 45%,
    transparent 72%
  );
  filter: blur(2px);
  pointer-events: none;
  animation: premiumHeroGlow 6s ease-in-out infinite;
}
@keyframes premiumHeroGlow {
  0%,
  100% {
    transform: translateY(-50%) scale(0.92);
    opacity: 0.62;
  }
  50% {
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
  }
}

/* Consistent card depth across all pages */
.product,
.spare,
.spare-individual,
.category,
.gallery-item,
.solution-card,
.offer-icon,
.brand-mini,
.feature,
.review,
.post,
.channel,
.info-box,
.form-box,
.visit {
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.55s var(--premium-ease),
    box-shadow 0.55s ease,
    border-color 0.4s ease;
}

/* Hover sheen */
.product::after,
.spare::after,
.spare-individual::after,
.category::after,
.gallery-item::after,
.solution-card::after,
.feature::after,
.review::after,
.post::after,
.channel::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -90%;
  width: 42%;
  height: 160%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  z-index: 4;
}
.product:hover::after,
.spare:hover::after,
.spare-individual:hover::after,
.category:hover::after,
.gallery-item:hover::after,
.solution-card:hover::after,
.feature:hover::after,
.review:hover::after,
.post:hover::after,
.channel:hover::after {
  opacity: 1;
  animation: premiumSheen 0.85s ease forwards;
}
@keyframes premiumSheen {
  from {
    left: -90%;
  }
  to {
    left: 145%;
  }
}

/* Images respond smoothly */
.product img,
.spare img,
.spare-individual img,
.category img,
.gallery-item img,
.store-photo img,
.approach-photo img,
.choose-photo img {
  transition:
    transform 0.75s var(--premium-ease),
    filter 0.75s ease;
  will-change: transform;
}
.product:hover img,
.spare:hover img,
.spare-individual:hover img,
.category:hover img,
.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

/* Section heading reveal accent */
.section-title {
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin: 13px auto 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  border-radius: 10px;
  transition: width 0.9s var(--premium-ease);
}
.section-title.title-visible::after {
  width: 86px;
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 15%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  z-index: -1;
}
.btn:hover::before {
  transform: translateX(120%);
}
.btn:hover {
  box-shadow: 0 10px 28px rgba(7, 87, 217, 0.18);
}

/* WhatsApp/call floating pulse */
.float {
  position: fixed;
}
.float::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.22;
  animation: premiumFloatRing 2.4s ease-out infinite;
}
@keyframes premiumFloatRing {
  0% {
    transform: scale(0.85);
    opacity: 0.35;
  }
  70%,
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* Trust strip light sweep */
.trust {
  position: relative;
  overflow: hidden;
}
.trust::after {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 18%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  transform: skewX(-18deg);
  animation: premiumTrustSweep 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes premiumTrustSweep {
  0%,
  45% {
    left: -25%;
  }
  70%,
  100% {
    left: 120%;
  }
}

/* CTA ambient orb */
.cta,
.about-cta {
  position: relative;
  overflow: hidden;
}
.cta::before,
.about-cta::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  animation: premiumCtaOrb 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes premiumCtaOrb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

/* Contact form focus */
.field input,
.field select,
.field textarea {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(7, 87, 217, 0.1);
}

/* Gallery filters */
.filter {
  transition:
    transform 0.35s var(--premium-ease),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}
.filter:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(7, 87, 217, 0.12);
}

/* Gallery lightbox premium entrance */
.lightbox {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox.show {
  opacity: 1;
}
.lightbox img {
  transform: scale(0.94);
  transition: transform 0.5s var(--premium-ease);
}
.lightbox.show img {
  transform: scale(1);
}

/* Page reveal utility */
.premium-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.75s var(--premium-ease),
    transform 0.75s var(--premium-ease);
}
.premium-reveal.visible {
  opacity: 1;
  transform: none;
}

/* Footer accent */
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #0757d9,
    #3d8fff,
    #0757d9,
    transparent
  );
  background-size: 220% 100%;
  animation: premiumFooterLine 5s linear infinite;
}
@keyframes premiumFooterLine {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -20% 0;
  }
}

/* Accessibility */
@media (max-width: 900px) {
  body::after {
    display: none;
  }
  .hero::after,
  .about-hero::after {
    right: -130px;
    opacity: 0.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  body::after {
    display: none !important;
  }
  .premium-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
