/* ===== BRAND COLOR SYSTEM ===== */
:root {
  --primary: #0b5e7e;
  --primary-light: #2c4a6e;
  --primary-dark: #094c66;
  --text-dark: #1a2c3e;
  --text-muted: #2c4a6e;
  --bg-soft: #eceef0;
  --border-light: #eef2f6;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER & NAVIGATION ========== */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-area img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-item {
  position: relative;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #2c3e4f;
  transition: all 0.2s ease;
  white-space: nowrap;
  padding: 6px 0;
  /* border-bottom: 2px solid transparent; */
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.nav-link:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
  border: 1px solid var(--border-light);
  margin-top: 24px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #2c3e4f;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--primary-light);
  padding-left: 26px;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 750px;
  max-width: 85vw;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  border: 1px solid var(--border-light);
  padding: 24px;
  margin-top: 30px;
}

.nav-item.mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  border-left: 3px solid var(--primary-light);
  padding-left: 10px;
}

.mega-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.8rem;
  color: #4a627a;
  text-decoration: none;
  transition: 0.2s;
}

.mega-col a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 880px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.5rem;
    transition: left 0.3s ease;
    z-index: 1001;
    box-shadow: 6px 0 24px rgba(0, 0, 0, 0.1);
    border-right: 1px solid var(--border-light);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    position: static;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
    white-space: normal;
  }

  .dropdown-menu,
  .mega-dropdown {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    padding: 0 0 0 20px;
    margin-top: 8px;
    background: #fafcff;
    border-radius: 12px;
    transition: none;
  }

  .dropdown-menu.active-mobile,
  .mega-dropdown.active-mobile {
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-col h4 {
    margin-top: 12px;
  }

  .nav-link .fa-chevron-down {
    transition: transform 0.2s;
  }

  .nav-link.rotated .fa-chevron-down {
    transform: rotate(180deg);
  }
}

/* ========== SCROLL REVEAL ANIMATION (ADDED, no layout changes) ========== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1),
    transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ensure no interference with existing sliders or interactive elements */
.slider-info-card,
.testimonial-info-card {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 880px) {
  .reveal-on-scroll {
    transition-duration: 0.5s;
  }
}

/* ========== HERO SECTION ========== */
.hero-fullscreen {
  width: 100%;
  height: 90vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-fullscreen {
    height: 60vh;
    min-height: 300px;
  }
}

/* ========== SLIDER ========== */
.full-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.full-slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slides */
.full-slide {
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active slide */
.full-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Image inside slide */
.full-slide img {
  width: 100%;
  height: 100dvh;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

/* ========== ARROWS ========== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-arrow:hover {
  background: #f7944b;
}

/* ========== DOTS ========== */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #f7944b;
  width: 22px;
  border-radius: 20px;
}

/* ===== SECTION HEADER (common) ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(247, 148, 75, 0.12);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b2b3b;
  margin-bottom: 15px;
}

.section-header h2 .highlight {
  color: var(--primary-light);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-detailed {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE + STATS */
.about-stats-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img {
  grid-column: span 2;
  width: 100%;
  height: 415px;
  border-radius: 10px;
}

/* STATS */
.stat-card-big {
  text-align: center;
  padding: 20px;
  background: #f2f2f2;
  border-radius: 16px;
  transition: 0.3s;
}

.stat-card-big:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

/* TEXT */
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-lead {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* HIGHLIGHTS */
.about-highlights {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.highlight-item strong {
  display: block;
}

.highlight-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* BUTTON */
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 12px 25px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-about:hover {
  background: var(--primary-light);
  gap: 14px;
}

/* =========================
   RESPONSIVE IMPROVEMENTS
========================= */

/* Tablet */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-text {
    text-align: center;
  }

  .about-highlights {
    align-items: center;
  }

  .highlight-item {
    justify-content: center;
    text-align: left;
    max-width: 400px;
  }

  .btn-about {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-detailed {
    padding: 60px 15px;
  }

  .about-stats-box {
    gap: 15px;
  }

  .about-img {
    height: 220px;
    object-fit: cover;
  }

  .stat-card-big {
    padding: 16px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-stats-box {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 200px;
  }

  .stat-card-big {
    padding: 14px;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
  }

  .highlight-item i {
    margin-bottom: 5px;
  }

  .btn-about {
    width: 100%;
    padding: 12px;
  }
}

/* ===== CATEGORIES (PREMIUM DESIGN) ===== */

.categories-info {
  padding: 80px 0;
  background: var(--bg-soft);
}

/* grid */
.cat-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* card */
.cat-info-card {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  border-radius: 20px;
  background: #f7f7f7;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* hover gradient bg */
.cat-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: var(--primary-light); */
  /* background: linear-gradient(#e6ae8c, #a8cecf); */
  /* opacity: 0; */
  transition: 0.4s;
  z-index: 0;
}

/* content above */
.cat-info-card > * {
  position: relative;
  z-index: 1;
}

/* hover effect */
/* .cat-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.cat-info-card:hover::before {
  opacity: 1;
} */

/* icon circle */
.cat-info-card i {
  min-width: 60px;
  height: 60px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-light);
  transition: 0.3s;
}

/* icon hover */
/* .cat-info-card:hover i {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
} */

/* heading */
.cat-info-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  transition: 0.3s;
}

/* description */
.cat-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: 0.3s;
}

/* product count badge */
.product-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(247, 148, 75, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  transition: 0.3s;
}

/* hover text color */
/* .cat-info-card:hover h4,
.cat-info-card:hover p,
.cat-info-card:hover .product-count {
  color: #fff;
} */

/* hover badge style */
.cat-info-card:hover .product-count {
  background: rgba(255, 255, 255, 0.2);
}

/* subtle animation */
.cat-info-card {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.cat-info-card:nth-child(1) {
  animation-delay: 0.1s;
}

.cat-info-card:nth-child(2) {
  animation-delay: 0.2s;
}

.cat-info-card:nth-child(3) {
  animation-delay: 0.3s;
}

.cat-info-card:nth-child(4) {
  animation-delay: 0.4s;
}

.cat-info-card:nth-child(5) {
  animation-delay: 0.5s;
}

.cat-info-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* animation */
@keyframes fadeUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* mobile */
@media (max-width: 576px) {
  .cat-info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cat-info-card i {
    margin-bottom: 10px;
  }

  .cat-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

/* ===== PRODUCT RANGE ===== */

.range-info {
  padding: 70px 0;
  /* background: var(--bg-soft); */
  overflow-x: clip;
}

.range-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0 30px;
}

/* Tablet: 2 per row */
@media (max-width: 992px) {
  .range-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile: 1 per row */
@media (max-width: 576px) {
  .range-image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.range-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image */
.range-image-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Overlay (hidden by default) */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 350px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  padding: 20px;
}

/* Text style */
.overlay h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.overlay p {
  color: #e0f2ff;
  font-size: 0.9rem;
}

/* Hover effect */
.range-image-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Optional image zoom */
.range-image-card:hover img {
  transform: scale(1.08);
  transition: 0.4s;
}

/* ===== WHY CHOOSE US ===== */
.whyus-info {
  padding: 70px 0;
  /* background: var(--bg-soft); */
}

/* Desktop: 3 cards per row */
.whyus-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet: 2 cards per row */
@media (max-width: 992px) {
  .whyus-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 576px) {
  .whyus-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Card styles remain the same */
.whyus-info-card {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  transition: all 0.3s;
}

.whyus-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.whyus-icon-bg {
  width: 70px;
  height: 70px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.whyus-icon-bg i {
  font-size: 2rem;
  color: var(--primary-light);
}

.whyus-info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.whyus-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.whyus-info-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #fff;
  transition: all 0.4s ease;
}

/* Background image layer */
.whyus-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.4s ease;
  z-index: -2;
}

/* Dark overlay */
.whyus-info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

/* Hover effect */
.whyus-info-card:hover::before {
  opacity: 1;
}

.whyus-info-card:hover::after {
  opacity: 1;
}

/* Text color change on hover */
.whyus-info-card:hover h4,
.whyus-info-card:hover p {
  color: #fff;
}

/* Icon background adjust */
.whyus-info-card:hover .whyus-icon-bg {
  background: rgba(255, 255, 255, 0.2);
}

.whyus-info-card:hover .whyus-icon-bg i {
  color: #fff;
}

/* ===== PROCESS STEPS (MODERN HORIZONTAL) ===== */

.process-info {
  padding: 70px 0;
  /* background: var(--bg-soft);   */
}

/* container */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
  gap: 20px;
}

/* connector line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: var(--primary-light);
  opacity: 0.25;
  z-index: 0;
}

/* step card */
.step {
  position: relative;
  background: #fff;
  padding: 25px 20px;
  border-radius: 18px;
  text-align: center;
  width: 100%;
  max-width: 230px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 1;
  border: 1px solid var(--border-light);
}

/* hover */
.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

/* number circle */
.step-num {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 3px solid var(--primary-light);
  color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

/* number hover effect */
.step:hover .step-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  box-shadow: 0 0 0 6px rgba(247, 148, 75, 0.15);
}

/* text */
.step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* subtle animation */
.step {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

/* stagger effect */
.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(2) {
  animation-delay: 0.2s;
}

.step:nth-child(3) {
  animation-delay: 0.3s;
}

.step:nth-child(4) {
  animation-delay: 0.4s;
}

/* animation keyframes */
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== SLIDER – INFINITE FORWARD (FIXED) ===== */

.slider-info {
  padding: 70px 0;
  overflow-x: clip;
  background: var(--bg-soft);
}

.slider-info-wrapper {
  position: relative;
  overflow: hidden;
}

/* track */
.slider-info-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* cards */
.slider-info-card {
  flex: 0 0 calc((100% - 75px) / 3);
  /* 4 cards, 3 gaps */
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.slider-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* image */
.slider-info-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* content */
.info-card-content {
  padding: 18px;
}

.info-card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-card-content .category {
  font-size: 0.7rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card-content .description {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.info-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* button */
.info-view {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  padding: 8px 0;
  width: 100%;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.info-view:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.slider-info-btn {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
}

.slider-info-btn:hover {
  background: var(--primary-light);
  transform: translateY(-50%) scale(1.05);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .slider-info-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 576px) {
  .slider-info-card {
    flex: 0 0 100%;
  }

  .slider-info-btn {
    width: 36px;
    height: 36px;
    right: 5px;
  }
}

/* ===== TESTIMONIAL SLIDER PREMIUM ===== */

.testimonials-info {
  padding: 80px 0;
  /* background: var(--bg-soft); */
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.testimonials-slider-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

/* cards */
.testimonial-info-card {
  flex: 0 0 calc((100% - 50px) / 3);
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
}

/* glow border */
.testimonial-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b5e7e, #f7944b);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.testimonial-info-card:hover::before {
  opacity: 0.08;
}

.testimonial-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* quote icon */
.quote-icon i {
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.3;
  margin-bottom: 15px;
}

/* text */
.testimonial-info-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* client */
.client-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-detail img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.client-detail strong {
  color: var(--primary);
  font-size: 0.9rem;
}

.client-detail span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* button */
.testimonial-btn {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.testimonial-btn:hover {
  background: var(--primary-light);
  transform: translateY(-50%) scale(1.1);
}

/* responsive */
@media (max-width: 992px) {
  .testimonial-info-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 576px) {
  .testimonial-info-card {
    flex: 0 0 100%;
  }
}

/* ===== BLOG ===== */
.blog-info {
  padding: 70px 0;
  background: var(--bg-soft);
}

.blog-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-info-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-info-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-info-content {
  padding: 22px;
}

.blog-date {
  font-size: 0.7rem;
  color: var(--primary-light);
  display: block;
  margin-bottom: 10px;
}

.blog-info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.blog-info-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
}

.read-more i {
  transition: 0.2s;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* ===== BLOG RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .blog-info {
    padding: 60px 0;
  }

  .blog-info-card img {
    height: 280px;
  }

  .blog-info-content {
    padding: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .blog-info {
    padding: 50px 0;
  }

  .blog-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-info-card img {
    height: 220px;
  }

  .blog-info-content {
    padding: 16px;
  }

  .blog-info-content h4 {
    font-size: 1rem;
  }

  .blog-info-content p {
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .blog-info {
    padding: 40px 0;
  }

  .blog-info-card img {
    height: 200px;
  }

  .blog-info-content {
    padding: 14px;
  }

  .blog-date {
    font-size: 0.65rem;
  }

  .read-more {
    font-size: 0.8rem;
  }
}

/* ===== FAQ ===== */
.faq-info {
  padding: 70px 0;
  /* background: var(--bg-soft); */
}

.faq-info-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-info-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 15px;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
}

.faq-q i {
  color: var(--primary-light);
  transition: 0.2s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-info-item.active .faq-q i {
  transform: rotate(45deg);
}

.faq-info-item.active .faq-a {
  max-height: 200px;
}

/* ===== FOOTER ENHANCED - using your existing color variables ===== */
.footer-enhanced {
  background: var(--primary-dark, #094c66);
  color: #eef2f6;
  padding: 50px 0 30px;
  margin-top: 0;
}

.footer-enhanced .container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Fixed width columns: 4 equal columns on desktop */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo area styling */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.footer-logo-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  /* color: var(--primary-light, #f7944b); */
  padding-left: 4px;
}

.contact-list li i {
  width: 1.6rem;
  /* color: var(--primary-light, #f7944b); */
  margin-right: 8px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 1.5rem 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  color: #eef2f6;
}

.social-links a:hover {
  background: var(--primary-light, #f7944b);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-bottom i.fa-heart {
  margin: 0 2px;
}

/* ===== RESPONSIVE: fixed widths adapt ===== */
@media (max-width: 992px) {
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .logo-area {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .logo-area {
    justify-content: center;
  }

  .footer-col h4 {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-list li {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-col ul li {
    text-align: center;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }
}

/* ========== BANNER SECTION (NEW) ========== */
.about-banner {
 background:
linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.85)),
url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1600&h=500&fit=crop");
  background-size: cover;
  background-position: center 30%;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  height: 500px;
}

.about-banner .container {
  position: relative;
  z-index: 2;
}

.banner-breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.banner-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.banner-breadcrumb a:hover {
  text-decoration: underline;
  color: #f7944b;
}

.banner-breadcrumb span {
  color: #f7944b;
}

.about-banner h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-banner p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7944b;
  color: #1a2c3e;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.banner-btn:hover {
  background: white;
  gap: 12px;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-banner {
    padding: 70px 0 50px;
  }

  .about-banner h1 {
    font-size: 2.2rem;
  }

  .about-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-banner h1 {
    font-size: 1.8rem;
  }
}

/* ===== ABOUT DETAILED ===== */
.about-detailed {
  padding: 80px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-stats-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img {
  grid-column: span 2;
  width: 100%;
  height: 415px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.stat-card-big {
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid var(--border-light);
}

.stat-card-big:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.about-lead {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.6;
}

.about-highlights {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 12px 25px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-about:hover {
  background: var(--primary-light);
  gap: 14px;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-highlights {
    align-items: center;
  }

  .highlight-item {
    justify-content: center;
    text-align: left;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .about-img {
    height: 260px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 70px 0;
  background: var(--bg-soft);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-card,
.vision-card {
  background: white;
  padding: 45px 30px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid var(--border-light);
  transition: 0.25s;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mission-card i,
.vision-card i {
  font-size: 2.8rem;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========SERVICES ========== */

.services-banner {
  background:
   linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.85)),
    url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?w=1600&h=500&fit=crop");
  background-size: cover;
  background-position: center 30%;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  height: 500px;
}

.services-banner .container {
  position: relative;
  z-index: 2;
}

.banner-breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.banner-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.banner-breadcrumb a:hover {
  text-decoration: underline;
  color: #f7944b;
}

.banner-breadcrumb span {
  color: #f7944b;
}

.services-banner h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.services-banner p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services-banner {
    padding: 70px 0 50px;
  }

  .services-banner h1 {
    font-size: 2.2rem;
  }
}

/* ===== SERVICES GRID (main offerings) ===== */
.services-main {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(247, 148, 75, 0.12);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b2b3b;
}

.section-header h2 .highlight {
  color: var(--primary-light);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 10px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 35px 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.2s;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-light);
}

.service-card:hover .service-icon {
  background: var(--primary-light);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.service-link:hover {
  gap: 10px;
  color: var(--primary);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PROCESS / HOW WE WORK ===== */
.process-section {
  padding: 70px 0;
  background: var(--bg-soft);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
}

.process-step {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: 0.3s;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 60px 0;
  text-align: center;
}

.cta-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.9;
  color: var(--text-muted);
}

/* ========== CONTACT SECTION  ========== */

.contact-banner {
  background:
   linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.85)),
    url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?w=1600&h=500&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  height: 500px;
}

.banner-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.banner-breadcrumb a {
  color: white;
  text-decoration: none;
}

.banner-breadcrumb a:hover {
  text-decoration: underline;
}

.banner-breadcrumb span {
  color: #f7944b;
}

.contact-banner h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-banner p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-banner {
    padding: 70px 0 50px;
  }

  .contact-banner h1 {
    font-size: 2.2rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Contact Info Cards */
.contact-info h2,
.contact-form-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 5px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  background: #f8fafc;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid var(--border-light);
}

.info-item:hover {
  transform: translateX(6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  font-size: 1.3rem;
  color: var(--primary-light);
}

.info-detail h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-detail p,
.info-detail a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}

.info-detail a:hover {
  color: var(--primary-light);
}

.social-contact {
  margin-top: 20px;
}

.social-contact h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(44, 74, 110, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.submit-btn:hover {
  background: var(--primary-light);
  gap: 12px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .contact-form-box {
    padding: 25px;
  }

  .info-item {
    padding: 12px 15px;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0 0 70px;
}

.map-container {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 280px;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
}

.modal-container {
  background: #fff;
  max-width: 500px;
  width: 90%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  padding: 30px;
}

.modal-overlay.show .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--bg-soft);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  transition: 0.2s;
}

.modal-close:hover {
  background: var(--primary-light);
  color: white;
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-header i {
  font-size: 2.5rem;
  color: var(--primary-light);
  background: var(--bg-soft);
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-header p span {
  font-weight: 700;
  color: var(--primary);
}

#inquiryForm .form-group {
  margin-bottom: 18px;
}

#inquiryForm input,
#inquiryForm select,
#inquiryForm textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: 0.2s;
}

#inquiryForm input:focus,
#inquiryForm select:focus,
#inquiryForm textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(44, 74, 110, 0.1);
}

.submit-inquiry {
  background: var(--primary);
  color: white;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
}

.submit-inquiry:hover {
  background: var(--primary-light);
  gap: 12px;
}

@media (max-width: 480px) {
  .modal-container {
    padding: 25px 20px;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }
}


/* ========== BANNER SECTION (NEW) ========== */
.tablet-banner {
  background:
     linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.85)),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1600&h=500&fit=crop");
  background-size: cover;
  background-position: center 30%;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  height: 500px;
}

.tablet-banner .container {
  position: relative;
  z-index: 2;
}

.banner-breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.banner-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.banner-breadcrumb a:hover {
  text-decoration: underline;
  color: #f7944b;
}

.banner-breadcrumb span {
  color: #f7944b;
}

.tablet-banner h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tablet-banner p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7944b;
  color: #1a2c3e;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.banner-btn:hover {
  background: white;
  gap: 12px;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .tablet-banner {
    padding: 70px 0 50px;
  }

  .tablet-banner h1 {
    font-size: 2.2rem;
  }

  .tablet-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tablet-banner h1 {
    font-size: 1.8rem;
  }
}

/* Products Section */
.products-section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2b5c;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #5a6e7c;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Grid - 3 columns */
.product-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  padding: 25px 20px 20px;
  border: 1px solid #eef2f7;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(11, 43, 92, 0.12);
  border-color: #cbdff2;
}

.product-img {
  margin: 0 auto 20px;
  background: #f0f6fe;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  overflow: hidden;
}

.product-card:hover .product-img {
  background: #e2edfb;
}

.product-img img {
  width: 100%;
  height: 250px;
  /* object-fit: cover; */
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b2b5c;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: #5a6e7c;
  line-height: 1.5;
  margin-bottom: 15px;
  padding: 0 5px;
}

.product-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 13px;
  color: #2c6e9e;
  border-top: 1px solid #eef2f7;
  padding-top: 15px;
}

.product-meta span i {
  margin-right: 6px;
  font-size: 12px;
}

.btn-detail {
  display: inline-block;
  margin-top: 18px;
  background: transparent;
  border: 1px solid #1a4d8c;
  color: #1a4d8c;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn-detail:hover {
  background: #1a4d8c;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .product-grid-section {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .tablets-banner h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .tablets-banner {
    padding: 60px 0;
  }

  .tablets-banner h1 {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tablets-banner h1 {
    font-size: 26px;
  }

  .tablets-banner p {
    font-size: 16px;
  }

  .product-img {
    width: 100%;
    height: 200px;
  }
}

/* ========== BANNER ========== */
.product-banner {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.85)),
    url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  padding: 150px 0;
}

.product-banner .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.banner-breadcrumb {
  font-size: 13px;
  color: #93b4d4;
  margin-bottom: 16px;
}

.banner-breadcrumb a {
  color: #ffd966;
  text-decoration: none;
}

.banner-breadcrumb a:hover {
  text-decoration: underline;
}

.banner-breadcrumb span {
  color: #e2e8f0;
}

.product-banner h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-banner p {
  font-size: 17px;
  color: #b0c8e0;
  max-width: 580px;
}

/* ========== SR RIBBON ========== */
.sr-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #1a4d8c, #2563eb);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.sr-ribbon span {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
}

/* ========== MAIN ========== */
.product-main {
  padding: 60px 0 40px;
  background: #ffffff;
}

.container-alt {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ========== IMAGE ========== */
.img-box {
  background: #f8fafc;
  border: 1px solid #eef2f8;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}

.img-box img {
  max-width: 100%;
  /* max-height: 260px; */
  /* object-fit: contain; */
}

.sr-tag-img {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1a4d8c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ========== BADGES ========== */
.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.02em;
}

.badge-blue {
  background: #e6f1fb;
  color: #0c447c;
}

.badge-green {
  background: #eaf3de;
  color: #3b6d11;
}

.badge-amber {
  background: #faeeda;
  color: #854f0b;
}

.badge-purple {
  background: #f0ecfb;
  color: #5b21b6;
}

/* ========== PRODUCT INFO ========== */
.prod-name {
  font-size: 30px;
  font-weight: 700;
  color: #0b2b5c;
  margin-bottom: 6px;
  line-height: 1.25;
}

.generic-name {
  font-size: 16px;
  color: #5a6e7c;
  margin-bottom: 4px;
}

.sku {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* ========== SR ADVANTAGE BOX ========== */
.sr-advantage {
  background: linear-gradient(135deg, #eef5ff, #e6f1fb);
  border: 1px solid #c3d8f5;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sr-advantage .icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sr-advantage h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0b2b5c;
  margin-bottom: 4px;
}

.sr-advantage p {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

/* ========== PRICE ROW ========== */
.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.price-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 3px;
}

.price-value {
  font-size: 20px;
  font-weight: 700;
  color: #185fa5;
}

.moq-badge {
  margin-left: auto;
  font-size: 12px;
  background: #eaf3de;
  color: #3b6d11;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ========== HIGHLIGHTS ========== */
.highlight-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hl-card {
  flex: 1;
  min-width: 90px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
}

.hl-label {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 3px;
}

.hl-value {
  font-size: 13px;
  font-weight: 600;
  color: #0b2b5c;
}

/* ========== SHORT DESC ========== */
.short-desc {
  border-left: 3px solid #1a4d8c;
  padding-left: 16px;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ========== USES ========== */
.uses-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.uses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.use-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.use-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a4d8c;
  flex-shrink: 0;
}

/* ========== ACTION ROW ========== */
.action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.qty-box button {
  background: #f8fafc;
  border: none;
  width: 38px;
  height: 42px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #0b2b5c;
  transition: 0.2s;
}

.qty-box button:hover {
  background: #e2e8f0;
}

.qty-box span {
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: #0b2b5c;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  line-height: 42px;
  min-width: 54px;
  text-align: center;
}

.btn-enquire {
  background: #0b2b5c;
  color: #ffffff;
  border: none;
  padding: 11px 30px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enquire:hover {
  background: #185fa5;
  transform: translateY(-2px);
}

/* ========== WARNING BOX ========== */
.warning-box {
  background: #faeeda;
  border: 1px solid #ef9f27;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #633806;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.warning-box .w-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== COMPARE TABLE ========== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 16px;
}

.compare-table thead th {
  background: #0b2b5c;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
}

.compare-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.compare-table tbody tr {
  border-bottom: 1px solid #eef2f8;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody td {
  padding: 11px 14px;
  color: #334155;
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: #0b2b5c;
}

.compare-table .highlight-row-table {
  background: #eef5ff;
}

.check {
  color: #3b6d11;
  font-weight: 700;
}

.cross {
  color: #b91c1c;
  font-weight: 700;
}

/* ========== TABS ========== */
.tabs-section {
  margin-top: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}

.tab-headers {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  border-right: 1px solid #e2e8f0;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #64748b;
  white-space: nowrap;
  transition: 0.2s;
}

.tab-btn.active {
  background: #ffffff;
  color: #1a4d8c;
  border-bottom: 2.5px solid #1a4d8c;
  margin-bottom: -1px;
}

.tab-body {
  padding: 28px 32px;
}

.tab-pane {
  display: none;
  color: #334155;
  font-size: 14px;
  line-height: 1.75;
}

.tab-pane.active {
  display: block;
}

/* Info sections inside tabs */
.info-section {
  margin-bottom: 22px;
}

.info-section h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #0b2b5c;
  margin-bottom: 8px;
}

.info-section p {
  color: #334155;
  line-height: 1.75;
  font-size: 14px;
}

/* SR vs IR highlight box */
.sr-highlight {
  background: #eef5ff;
  border: 1px solid #c3d8f5;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.sr-highlight h3 {
  font-size: 13px;
  font-weight: 700;
  color: #0b2b5c;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dosage Cards */
.dosage-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 14px;
}

.dosage-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0b2b5c;
  margin-bottom: 6px;
}

.dosage-card p {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
}

.dosage-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.specs-table tr {
  border-bottom: 1px solid #eef2f8;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 8px;
  color: #334155;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #0b2b5c;
  width: 38%;
}

/* Side Effects */
.side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.side-item {
  background: #fff5f5;
  border-left: 3px solid #e24b4a;
  border-radius: 0 8px 8px 0;
  padding: 8px 12px;
  font-size: 14px;
  color: #501313;
}

/* Storage */
.storage-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.s-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e6f1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.s-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0b2b5c;
  margin-bottom: 4px;
}

.s-text p {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

/* ========== RELATED PRODUCTS ========== */
.related-section {
  background: #f8fafc;
  padding: 60px 0;
  margin-top: 50px;
}

.related-title {
  font-size: 26px;
  font-weight: 700;
  color: #0b2b5c;
  text-align: center;
  margin-bottom: 36px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.related-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.related-card img {
  width: 100%;
  height: 200px;
  /* object-fit: cover; */
  margin-bottom: 14px;
}

.related-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0b2b5c;
  margin-bottom: 8px;
}

.related-link {
  font-size: 13px;
  color: #1a4d8c;
  text-decoration: none;
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-banner h1 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .prod-name {
    font-size: 24px;
  }

  .tab-body {
    padding: 20px 16px;
  }

  .uses-grid,
  .side-grid {
    grid-template-columns: 1fr;
  }

  .action-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .compare-table {
    font-size: 12px;
  }
}
