/* ============================================
   ROOT VARIABLES
============================================ */
:root {
  --primary: #1e4fd8;
  --primary-dark: #163db0;
  --primary-light: #e8efff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --footer-bg: #f4f6f9;
}

* {
  font-family: 'Poppins', sans-serif;
}

/* ============================================
   NAVBAR
============================================ */
.navbar-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  margin-right: 8px;
}

.navbar-brand span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary-custom {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-white:hover {
  background: #f0f0f0;
  color: var(--primary-dark);
}

.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
}

/* ============================================
   PAGE HERO - GLOBAL
============================================ */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.75);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero__breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.page-hero__breadcrumb a:hover {
  color: #fff;
}

.page-hero__breadcrumb-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero__breadcrumb .current {
  color: #fff;
}

.page-hero__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero__title .accent {
  color: var(--primary);
  display: inline-block;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   SECTION LABEL & TITLE
============================================ */
.section-label {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title--lg {
  font-size: 2.75rem;
}

.divider-primary {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border: none;
  margin: 1rem 0;
}

/* ============================================
   DOT GRID BACKGROUNDS
============================================ */
.dot-grid {
  background-image: radial-gradient(circle, #c5d4f5 1px, transparent 1px);
  background-size: 24px 24px;
}

.dot-grid-white {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ============================================
   HERO SECTION (Home Page)
============================================ */
.hero-section {
  padding: 80px 0 60px;
}

.hero-section h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-section h1 .highlight {
  color: var(--primary);
}

.hero-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   WHO WE ARE (Home Page)
============================================ */
.who-we-are-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.arrow-bg-shape {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 75%;
  height: 110%;
  background: linear-gradient(135deg, #e8efff 0%, #d4e2fc 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
  z-index: 0;
}

.arrow-bg-shape-2 {
  width: 65%;
  height: 95%;
  right: 2%;
  background: linear-gradient(135deg, #f0f5ff 0%, #e8efff 100%);
  clip-path: polygon(18% 5%, 95% 5%, 95% 95%, 18% 95%, 0% 50%);
  opacity: 0.7;
}

.who-image-wrap {
  padding: 2rem 1rem;
}

.who-image {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(30, 79, 216, 0.2);
  max-height: 380px;
  object-fit: cover;
  width: 85%;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.feature-box .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-box h6 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.feature-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   SERVICE CARDS (Home Page)
============================================ */
.service-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(30, 79, 216, 0.12);
  transform: translateY(-4px);
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h6 {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-card a {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

/* ============================================
   BLUE SECTION (Connectivity & Infrastructure)
============================================ */
.blue-section {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.blue-section .dot-grid-white {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.infra-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.infra-item .icon-wrap {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.infra-item h6 {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.infra-item p {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

.infra-collage {
  position: relative;
  height: 380px;
}

.infra-collage img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.infra-collage .img-main {
  width: 220px;
  height: 280px;
  top: 20px;
  left: 30px;
  z-index: 2;
}

.infra-collage .img-secondary {
  width: 180px;
  height: 140px;
  top: 0;
  right: 20px;
  z-index: 1;
}

.infra-collage .img-tertiary {
  width: 160px;
  height: 120px;
  bottom: 20px;
  right: 60px;
  z-index: 3;
}

/* ============================================
   CURVE DIVIDERS
============================================ */
.curve-divider {
  position: relative;
  line-height: 0;
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   WHY CHOOSE US (Global)
============================================ */
.why-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.why-item .circle-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.why-item h6 {
  font-weight: 600;
  font-size: 0.85rem;
}

.why-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   STATISTICS BAR
============================================ */
.stats-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.stat-item .stat-number {
  font-size: 2.25rem;
  font-weight: 700;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ============================================
   PRODUCT CARDS
============================================ */
.product-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 0.75rem;
}

.product-card h6 {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}

/* ============================================
   TESTIMONIAL CARD
============================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
  background: var(--primary);
  border-radius: 24px;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner .dot-grid-white {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
}

.cta-banner h2 {
  font-weight: 700;
  font-size: 1.75rem;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--footer-bg);
  padding: 3rem 0 1.5rem;
}

footer h6 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

footer ul li a:hover {
  color: var(--primary);
}

footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer .contact-item i {
  color: var(--primary);
  margin-top: 3px;
}

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.float-btn.chat {
  background: var(--primary);
}

.float-btn.whatsapp {
  background: #25d366;
}

/* ============================================
   SECTION PAD (Global)
============================================ */
.section-pad {
  padding: 80px 0;
}

/* ============================================
   RESPONSIVE (Global)
============================================ */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .arrow-bg-shape,
  .arrow-bg-shape-2 {
    width: 90%;
    height: 100%;
    right: -15%;
  }

  .infra-collage {
    height: 300px;
    margin-bottom: 2rem;
  }

  .page-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .page-hero__title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title--lg {
    font-size: 2.25rem;
  }

  .section-pad {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .page-hero__title {
    font-size: 1.75rem;
  }

  .page-hero__desc {
    font-size: 0.95rem;
  }

  .page-hero__breadcrumb {
    font-size: 0.75rem;
  }

  .stat-box__number {
    font-size: 1.75rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .section-pad {
    padding: 40px 0;
  }
}

/* ============================================
   ABOUT US PAGE
============================================ */

/* Stats Icons */
.home-stats__icon i {
  font-size: 1.8rem;
  color: #fff;
}

/* Our Story */
.about-pg__story {
  background: #fff;
}

.about-pg__story-img-wrap {
  position: relative;
}

.about-pg__story-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.about-pg__story-promise {
  bottom: -20px;
  right: -20px;
  max-width: 200px;
  border-left: 4px solid var(--primary);
}

.about-pg__story-promise-text {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
}

.about-pg__story-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Vision & Mission */
.about-pg__vision-mission {
  background: var(--footer-bg);
}

.about-pg__vision-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.about-pg__vision-card:hover {
  box-shadow: 0 8px 30px rgba(30, 79, 216, 0.1);
  transform: translateY(-4px);
}

.about-pg__vision-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.about-pg__vision-card h3 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.about-pg__vision-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Team / Directors */
.about-pg__team {
  background: #fff;
}

.about-pg__team-card {
  transition: box-shadow 0.3s, transform 0.3s;
}

.about-pg__team-card:hover {
  box-shadow: 0 8px 30px rgba(30, 79, 216, 0.12);
  transform: translateY(-4px);
}

.about-pg__team-card .team-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-light);
}

.about-pg__team-card h5 {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.about-pg__team-role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
}

.about-pg__team-bio {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.cta-subtitle {
  opacity: 0.9;
  margin: 0.5rem 0 0;
}

/* About Responsive */
@media (max-width: 991px) {
  .about-pg__team-card .team-avatar {
    width: 100px;
    height: 100px;
  }

  .about-pg__story-promise {
    bottom: -10px;
    right: -10px;
    max-width: 160px;
    padding: 0.75rem 1rem !important;
  }

  .about-pg__story-promise-text {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 767px) {
  .about-pg__team-card .team-avatar {
    width: 80px;
    height: 80px;
  }

  .about-pg__story-promise {
    display: none;
  }

  .about-pg__story-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .about-pg__team-card .team-avatar {
    width: 70px;
    height: 70px;
  }

  .about-pg__team-card {
    padding: 1rem;
  }
}

/* ============================================
   SERVICES PAGE
============================================ */

/* Intro Section */
.svc-pg__intro {
  padding: 80px 0 40px;
  background: #fff;
}

.svc-pg__intro-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.svc-pg__intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.svc-pg__intro-sub {
  max-width: 700px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.svc-pg__intro-content h1,
.svc-pg__intro-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.svc-pg__intro-content p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Service Cards Grid */
.svc-pg__grid {
  padding: 40px 0 80px;
  background: var(--footer-bg);
}

.svc-pg__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #eef0f4;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-pg__card:hover {
  box-shadow: 0 12px 40px rgba(30, 79, 216, 0.12);
  transform: translateY(-6px);
}

.svc-pg__card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--primary-dark);
}

.svc-pg__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.svc-pg__card:hover .svc-pg__card-img-wrap img {
  transform: scale(1.05);
}

.svc-pg__card-icon-img {
  position: absolute;
  bottom: -20px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 79, 216, 0.3);
  z-index: 2;
}

.svc-pg__card-icon-img i {
  font-size: 1.5rem;
  color: #fff;
}

.svc-pg__card-body {
  padding: 1.5rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-pg__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding-right: 20px;
}

.svc-pg__card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.svc-pg__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s;
}

.svc-pg__card-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Why Choose - Services Version */
.svc-pg__why {
  padding: 80px 0;
  background: #fff;
}

.svc-pg__why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.svc-pg__why-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.svc-pg__why-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.svc-pg__why-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-pg__pillars-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-pg__pillar {
  background: var(--footer-bg);
  border-radius: 16px;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #eef0f4;
}

.svc-pg__pillar:hover {
  box-shadow: 0 8px 30px rgba(30, 79, 216, 0.1);
  transform: translateY(-4px);
}

.svc-pg__pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.svc-pg__pillar-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.svc-pg__pillar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.svc-pg__pillar-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Services Responsive */
@media (max-width: 991px) {
  .svc-pg__intro {
    padding: 60px 0 30px;
  }

  .svc-pg__intro-title {
    font-size: 2rem;
  }

  .svc-pg__grid {
    padding: 30px 0 60px;
  }

  .svc-pg__why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-pg__pillars-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .svc-pg__intro {
    padding: 40px 0 20px;
  }

  .svc-pg__intro-title {
    font-size: 1.75rem;
  }

  .svc-pg__card-img-wrap {
    height: 140px;
  }

  .svc-pg__pillars-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-pg__pillar {
    padding: 1.25rem;
  }
}

@media (max-width: 575px) {
  .svc-pg__intro-title {
    font-size: 1.5rem;
  }

  .svc-pg__card-img-wrap {
    height: 120px;
  }

  .svc-pg__card-icon-img {
    width: 40px;
    height: 40px;
    bottom: -16px;
    right: 12px;
  }

  .svc-pg__card-icon-img i {
    font-size: 1.2rem;
  }

  .svc-pg__pillar {
    padding: 1rem;
  }
}

/* ============================================
   SERVICE DETAIL PAGE
============================================ */
.service-detail {
  padding: 80px 0;
}

.service-detail__image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 2rem;
  object-fit: cover;
  max-height: 500px;
}

.service-detail__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-detail__divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.service-detail__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail__benefits {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--footer-bg);
  border-radius: 16px;
}

.service-detail__benefits-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-detail__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail__benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-detail__benefits-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.service-detail__gallery {
  margin-top: 2rem;
}

.service-detail__gallery-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-detail__gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.service-detail__gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-detail__gallery-item:hover img {
  transform: scale(1.05);
}

.service-detail__gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 79, 216, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-detail__gallery-item:hover .service-detail__gallery-overlay {
  opacity: 1;
}

.service-detail__sidebar {
  position: sticky;
  top: 100px;
}

.service-detail__sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.service-detail__sidebar-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0.75rem;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-detail__sidebar-card:hover {
  box-shadow: 0 4px 15px rgba(30, 79, 216, 0.1);
  transform: translateX(4px);
}

.service-detail__sidebar-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.service-detail__sidebar-card h6 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.service-detail__sidebar-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.3s;
}

.service-detail__sidebar-see-all:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Service Detail Responsive */
@media (max-width: 991px) {
  .service-detail {
    padding: 60px 0;
  }

  .service-detail__image {
    max-height: 350px;
  }

  .service-detail__sidebar {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }

  .service-detail__gallery-item img {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .service-detail {
    padding: 40px 0;
  }

  .service-detail__image {
    max-height: 250px;
  }

  .service-detail__title {
    font-size: 1.5rem;
  }

  .service-detail__benefits {
    padding: 1.25rem;
  }

  .service-detail__gallery-item img {
    height: 100px;
  }

  .service-detail__sidebar-card img {
    width: 50px;
    height: 50px;
  }
}

/* ============================================
   CONTACT PAGE
============================================ */
.ct-pg__section {
  padding: 80px 0;
  background: #fff;
}

.ct-pg__left-panel {
  background: var(--text-dark);
  color: #fff;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ct-pg__left-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(30, 79, 216, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ct-pg__left-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.ct-pg__info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.ct-pg__info-item:last-of-type {
  margin-bottom: 0;
}

.ct-pg__info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
}

.ct-pg__info-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.ct-pg__info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.ct-pg__info-text {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.ct-pg__info-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.ct-pg__info-text a:hover {
  color: var(--primary-light);
}

.ct-pg__social {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.ct-pg__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.ct-pg__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.ct-pg__social-link i {
  font-size: 1rem;
}

.ct-pg__right-panel {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  border: 1px solid #eef0f4;
  height: 100%;
}

.ct-pg__right-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.ct-pg__right-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2rem;
}

.ct-pg__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-pg__form-group {
  margin-bottom: 1.25rem;
}

.ct-pg__form-group.focused .ct-pg__form-label {
  color: var(--primary);
}

.ct-pg__form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}

.ct-pg__form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #eef0f4;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fafbfc;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.ct-pg__form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.08);
  background: #fff;
}

.ct-pg__form-control::placeholder {
  color: #b0b8c4;
  font-size: 0.85rem;
}

.ct-pg__form-control--error {
  border-color: #dc3545;
}

.ct-pg__form-control--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

textarea.ct-pg__form-control {
  resize: vertical;
  min-height: 120px;
}

.ct-pg__submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.ct-pg__submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 79, 216, 0.25);
}

.ct-pg__submit-btn svg {
  transition: transform 0.3s;
}

.ct-pg__submit-btn:hover svg {
  transform: translateX(4px);
}

.ct-pg__form-feedback {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.ct-pg__form-feedback--success {
  background: #e8f5e9;
  color: #2e7d32;
}

.ct-pg__form-feedback--error {
  background: #fbe9e7;
  color: #c62828;
}

.ct-pg__map-strip {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.ct-pg__map-strip iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ct-pg__scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 79, 216, 0.3);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-pg__scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ct-pg__scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 79, 216, 0.4);
}

.ct-pg__scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* Contact Responsive */
@media (max-width: 991px) {
  .ct-pg__section {
    padding: 60px 0;
  }

  .ct-pg__left-panel {
    padding: 2rem 1.5rem;
  }

  .ct-pg__right-panel {
    padding: 2rem 1.5rem;
  }

  .ct-pg__map-strip {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .ct-pg__section {
    padding: 40px 0;
  }

  .ct-pg__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ct-pg__left-panel {
    padding: 1.5rem 1.25rem;
  }

  .ct-pg__right-panel {
    padding: 1.5rem 1.25rem;
  }

  .ct-pg__map-strip {
    height: 200px;
  }

  .ct-pg__scroll-top {
    width: 38px;
    height: 38px;
    bottom: 20px;
    left: 20px;
  }

  .ct-pg__social-link {
    width: 36px;
    height: 36px;
  }

  .ct-pg__submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ct-pg__section {
    padding: 30px 0;
  }

  .ct-pg__left-panel {
    padding: 1.25rem 1rem;
  }

  .ct-pg__right-panel {
    padding: 1.25rem 1rem;
  }

  .ct-pg__map-strip {
    height: 160px;
  }
}

/* ============================================
   BLOG PAGE
============================================ */

/* Blog Intro */
.blog-intro {
  padding: 60px 0 40px;
  background: #fff;
}

.blog-intro .container {
  padding-top: 20px;
}

/* Blog Container */
.blog-container {
  padding: 80px 0;
  background: #fff;
}

/* Search Section */
.blog-search-section {
  padding: 20px 0 40px;
  background: #fff;
}

.search-wrapper {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--footer-bg);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.search-box:focus-within {
  border-color: var(--primary);
}

.search-box i {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-right: 12px;
}

.search-box input {
  border: none;
  background: transparent;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-dark);
  flex: 1;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.clear-search {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0 8px;
}

.clear-search:hover {
  color: var(--primary);
}

/* Search Info */
.search-info {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.search-info strong {
  color: var(--text-dark);
}

.clear-results {
  color: var(--primary);
  text-decoration: none;
  margin-left: 8px;
}

.clear-results:hover {
  text-decoration: underline;
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef0f4;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(30, 79, 216, 0.08);
  transform: translateY(-4px);
}

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

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

.blog-card:hover .blog-img-box img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
}

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  background: var(--footer-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef0f4;
}

.featured-article__image {
  height: 100%;
  min-height: 300px;
}

.featured-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article__content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-article__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.featured-article__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.featured-article__title a {
  color: var(--text-dark);
  text-decoration: none;
}

.featured-article__title a:hover {
  color: var(--primary);
}

.featured-article__excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.featured-article__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s;
  align-self: flex-start;
}

.featured-article__btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

.blog-grid-wrapper {
  padding: 20px 0 40px;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results i {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.no-results h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.no-results p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-back {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-back:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* Sidebar */
.sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.popular-card {
  display: flex;
  gap: 14px;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f2f5;
}

.popular-card:last-child {
  border-bottom: none;
}

.popular-img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.popular-info {
  flex: 1;
}

.popular-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 4px;
  line-height: 1.4;
}

.popular-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.popular-title a:hover {
  color: var(--primary);
}

.popular-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.popular-meta i {
  margin-right: 4px;
}

/* Pagination */
.styled-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin-top: 2.5rem;
  list-style: none;
}

.styled-pagination li {
  display: inline-block;
}

.styled-pagination li a,
.styled-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #eef0f4;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.styled-pagination li a:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.styled-pagination li.active a,
.styled-pagination li.active span {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.styled-pagination li.disabled span {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Blog Details */
.blog-details-container {
  padding: 80px 0;
  background: #fff;
}

.blog-details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.article-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eef0f4;
  overflow: hidden;
}

.article-cover {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.article-body {
  padding: 2rem;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-meta i {
  margin-right: 4px;
}

.article-content {
  color: var(--text-dark);
  line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.article-content ul li,
.article-content ol li {
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

/* Blog Responsive */
@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-details-layout {
    grid-template-columns: 1fr;
  }

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

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article__image {
    min-height: 200px;
  }

  .featured-article__content {
    padding: 1.5rem;
  }

  .featured-article__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .blog-container {
    padding: 40px 0;
  }

  .blog-details-container {
    padding: 40px 0;
  }

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

  .blog-img-box {
    height: 180px;
  }

  .search-wrapper {
    margin: 0 auto 2rem;
  }

  .featured-article__image {
    min-height: 180px;
  }

  .featured-article__title {
    font-size: 1.25rem;
  }

  .featured-article__excerpt {
    font-size: 0.9rem;
  }

  .featured-article__content {
    padding: 1.25rem;
  }

  .blog-search-section {
    padding: 15px 0 25px;
  }

  .article-body {
    padding: 1.5rem;
  }

  .article-cover {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .blog-img-box {
    height: 150px;
  }

  .popular-img {
    width: 60px;
    height: 55px;
  }

  .article-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .styled-pagination li a,
  .styled-pagination li span {
    min-width: 34px;
    height: 34px;
    font-size: 0.8rem;
    padding: 0 8px;
  }
}

/* ============================================
   PRODUCTS PAGE
============================================ */

/* Products Intro */
.prod-pg__intro {
  padding: 80px 0 40px;
  background: #fff;
}

.prod-pg__intro-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.prod-pg__intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.prod-pg__intro-sub {
  max-width: 700px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.prod-pg__intro-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.prod-pg__intro-content p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Products Grid */
.prod-pg__grid {
  padding: 40px 0 80px;
  background: var(--footer-bg);
}

.prod-pg__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #eef0f4;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-pg__card:hover {
  box-shadow: 0 12px 40px rgba(30, 79, 216, 0.12);
  transform: translateY(-6px);
}

.prod-pg__card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--primary-dark);
}

.prod-pg__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.prod-pg__card:hover .prod-pg__card-img-wrap img {
  transform: scale(1.05);
}

.prod-pg__card-icon {
  position: absolute;
  bottom: -20px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 79, 216, 0.3);
  z-index: 2;
}

.prod-pg__card-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.prod-pg__card-body {
  padding: 1.5rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-pg__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding-right: 20px;
}

.prod-pg__card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.prod-pg__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s;
}

.prod-pg__card-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Product Specifications */
.prod-pg__specs {
  padding: 80px 0;
  background: #fff;
}

.prod-pg__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.prod-pg__spec-item {
  background: var(--footer-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #eef0f4;
  transition: box-shadow 0.3s, transform 0.3s;
}

.prod-pg__spec-item:hover {
  box-shadow: 0 8px 30px rgba(30, 79, 216, 0.08);
  transform: translateY(-4px);
}

.prod-pg__spec-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.prod-pg__spec-item h5 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.prod-pg__spec-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Why Choose (Products) */
.prod-pg__why {
  padding: 80px 0;
  background: var(--footer-bg);
}

.prod-pg__why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.prod-pg__why-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.prod-pg__why-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.prod-pg__why-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.prod-pg__pillars-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.prod-pg__pillar {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #eef0f4;
}

.prod-pg__pillar:hover {
  box-shadow: 0 8px 30px rgba(30, 79, 216, 0.1);
  transform: translateY(-4px);
}

.prod-pg__pillar .circle-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.prod-pg__pillar h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.prod-pg__pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   PRODUCT DETAIL PAGE
============================================ */
.product-detail {
  padding: 80px 0;
}

.product-detail__image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 2rem;
  object-fit: cover;
  max-height: 500px;
}

.product-detail__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-detail__divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.product-detail__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.product-detail__specs {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--footer-bg);
  border-radius: 16px;
}

.product-detail__specs-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-detail__specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-detail__specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-detail__specs-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.product-detail__gallery {
  margin-top: 2rem;
}

.product-detail__gallery-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-detail__gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.product-detail__gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-detail__gallery-item:hover img {
  transform: scale(1.05);
}

.product-detail__gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 79, 216, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-detail__gallery-item:hover .product-detail__gallery-overlay {
  opacity: 1;
}

.product-detail__sidebar {
  position: sticky;
  top: 100px;
}

.product-detail__sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.product-detail__sidebar-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0.75rem;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-detail__sidebar-card:hover {
  box-shadow: 0 4px 15px rgba(30, 79, 216, 0.1);
  transform: translateX(4px);
}

.product-detail__sidebar-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.product-detail__sidebar-card h6 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.product-detail__sidebar-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.3s;
}

.product-detail__sidebar-see-all:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Products Responsive */
@media (max-width: 991px) {
  .prod-pg__intro {
    padding: 60px 0 30px;
  }

  .prod-pg__intro-title {
    font-size: 2rem;
  }

  .prod-pg__grid {
    padding: 30px 0 60px;
  }

  .prod-pg__specs {
    padding: 60px 0;
  }

  .prod-pg__specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prod-pg__why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prod-pg__why-title {
    font-size: 2rem;
  }

  .product-detail {
    padding: 60px 0;
  }

  .product-detail__image {
    max-height: 350px;
  }
}

@media (max-width: 767px) {
  .prod-pg__intro {
    padding: 40px 0 20px;
  }

  .prod-pg__intro-title {
    font-size: 1.75rem;
  }

  .prod-pg__intro-sub {
    font-size: 0.9rem;
  }

  .prod-pg__grid {
    padding: 20px 0 40px;
  }

  .prod-pg__card-img-wrap {
    height: 160px;
  }

  .prod-pg__specs {
    padding: 40px 0;
  }

  .prod-pg__specs-grid {
    grid-template-columns: 1fr;
  }

  .prod-pg__why {
    padding: 50px 0;
  }

  .prod-pg__why-title {
    font-size: 1.75rem;
  }

  .prod-pg__pillars-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prod-pg__pillar {
    padding: 1.25rem;
  }

  .product-detail {
    padding: 40px 0;
  }

  .product-detail__image {
    max-height: 250px;
  }

  .product-detail__title {
    font-size: 1.5rem;
  }

  .product-detail__specs {
    padding: 1.25rem;
  }

  .product-detail__sidebar {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .prod-pg__intro-title {
    font-size: 1.5rem;
  }

  .prod-pg__card-img-wrap {
    height: 130px;
  }

  .prod-pg__card-icon {
    width: 40px;
    height: 40px;
    bottom: -16px;
    right: 12px;
  }

  .prod-pg__card-icon i {
    font-size: 1.2rem;
  }

  .prod-pg__card-title {
    font-size: 0.85rem;
  }

  .prod-pg__why-title {
    font-size: 1.5rem;
  }

  .prod-pg__pillar {
    padding: 1rem;
  }

  .prod-pg__pillar .circle-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .product-detail__image {
    max-height: 200px;
  }

  .product-detail__gallery-item img {
    height: 100px;
  }

  .product-detail__sidebar-card img {
    width: 50px;
    height: 50px;
  }
}



/* todays */
/* --- Logo --- */
.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* --- CTA Banner --- */
.cta-banner-row {
    z-index: 1;
}

/* --- Modal Form Feedback --- */
.modal-feedback {
    display: flex;
    margin-top: 15px;
}

/* --- Footer --- */
.footer-desc {
    font-size: 0.85rem;
}
.footer-copy {
    font-size: 0.75rem;
}
.contact-link-unstyled {
    color: inherit;
    text-decoration: none;
}

/* --- Hero --- */
.hero-image-height {
    max-height: 420px;
}

/* --- About Section --- */
.about-title-lg {
    font-size: 2rem;
}
.about-body-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Section Titles --- */
.section-title-lg {
    font-size: 2rem;
}

/* --- Connectivity --- */
.connectivity-container {
    z-index: 1;
}
.connectivity-title-lg {
    font-size: 1.75rem;
}

/* --- Product Section --- */
.view-all-link {
    font-size: 0.9rem;
}

/* --- Testimonials --- */
.testimonial-name {
    font-size: 0.9rem;
}
/* --- Service Detail Icons --- */
.service-icon-primary {
    color: var(--primary);
}

/* --- Gallery Zoom Icon --- */
.gallery-zoom-icon {
    font-size: 2rem;
    color: #fff;
}

/* --- Sidebar Empty State --- */
.service-detail__sidebar-empty {
    color: var(--text-muted);
    font-size: 0.85rem;
}
/* --- Service Detail Icons --- */
.service-icon-primary {
    color: var(--primary);
}

/* --- Gallery Zoom Icon --- */
.gallery-zoom-icon {
    font-size: 2rem;
    color: #fff;
}

/* --- Sidebar Empty State --- */
.service-detail__sidebar-empty {
    color: var(--text-muted);
    font-size: 0.85rem;
}
/* --- Product Card SVG Icon --- */
.prod-pg__card-icon-svg {
    width: 13px;
    height: 13px;
}
/* --- Product Detail Icon (Primary Color) --- */
.product-icon-primary {
    color: var(--primary);
}

/* --- Gallery Zoom Icon --- */
.gallery-zoom-icon {
    font-size: 2rem;
    color: #fff;
}

/* --- Sidebar Empty State --- */
.product-detail__sidebar-empty {
    color: var(--text-muted);
    font-size: 0.85rem;
}
