/* =============================================
       CSS VARIABLES & RESET
    ============================================= */
:root {
  --blue: #1e398f;
  --pink: #c7007e;
  --blue-light: #2a4db0;
  --pink-light: #e8009a;
  --white: #ffffff;
  --offwhite: #f8f5ff;
  --dark: #0d1a3a;
  --gray: #6b7280;
  --gold: #f0b429;
  --purple-footer: #2d1b54;
  --gradient-main: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
  --gradient-rev: linear-gradient(135deg, #c7007e 0%, #1e398f 100%);
  --shadow: 0 20px 60px rgba(30, 57, 143, 0.15);
  --shadow-pink: 0 20px 60px rgba(199, 0, 126, 0.2);
  --radius: 24px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

/* =============================================
       SCROLLBAR
    ============================================= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--offwhite);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-main);
  border-radius: 10px;
}

/* =============================================
       TOP BAR
    ============================================= */
/* ----- Topbar ----- */
.topbar {
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1000;
}

.topbar a {
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s;
  text-decoration: none;
}

.topbar a:hover {
  opacity: 1;
}

.topbar .tb-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar .tb-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar i {
  margin-right: 5px;
}

.wa-btn {
  background: #25d366;
  color: #fff !important;
  opacity: 1 !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}

/* ----- Header / Nav ----- */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(30, 57, 143, 0.1);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(135deg, #1e398f, #c7007e) 1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  max-width: 1400px;
  margin: auto;
  gap: 16px;
}

/* Primary logo image */
.logo-img {
  display: block;
  height: 80px; /* controls visual height — adjust to your logo */
  width: 200px;
  object-fit: fill;
  /* No filter here — logo on white bg header, keep natural colours */
  transition: opacity 0.2s;
}
.logo-img:hover {
  opacity: 0.88;
}

/* When image fails: onerror adds this class */
.logo-img--hidden {
  display: none !important;
}

/* Text fallback — hidden by default (display:none inline in PHP) */
.logo-text-fallback {
  display: none; /* overridden to flex by JS on image error */
  flex-direction: column;
  gap: 1px;
}

.logo-tag {
  font-size: 0.62rem;
  color: #6b7280;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Desktop nav list */
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

/* Base link style — exclude .nav-cta so it doesn't inherit */
.nav-links > li > a:not(.nav-cta),
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0d1a3a;
  border-radius: 8px;
  background: none; /* no background fill on hover */
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
  position: relative; /* needed for ::after underline */
}

/* Gradient underline — the ::after pseudo element */
.nav-links > li > a:not(.nav-cta)::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  bottom: 2px; /* sits just below the text */
  left: 12px; /* matches the link's left padding */
  right: 12px;
  height: 2px;
  background: linear-gradient(135deg, #1e398f, #c7007e);
  border-radius: 2px;
  width: 0; /* hidden by default */
  transition: width 0.3s ease;
}

/* On hover / active — slide the underline in */
.nav-links > li > a:not(.nav-cta):hover,
.nav-links > li > a:not(.nav-cta).nav-active,
.nav-dropdown-trigger:hover,
.nav-has-dropdown.open .nav-dropdown-trigger {
  color: #1e398f; /* text turns blue */
}

.nav-links > li > a:not(.nav-cta):hover::after,
.nav-links > li > a:not(.nav-cta).nav-active::after,
.nav-dropdown-trigger:hover::after,
.nav-has-dropdown.open .nav-dropdown-trigger::after {
  width: calc(100% - 24px); /* full width minus left+right padding */
}

/* =============================================
   NAV CTA BUTTON
   Gradient background always, white text always.
   Isolated from the nav-links base styles above.
============================================= */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #1e398f, #c7007e);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.83rem;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(199, 0, 126, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  /* No position:relative / ::after needed — no underline on CTA */
}

.nav-cta:hover {
  color: #fff; /* stays white on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199, 0, 126, 0.45);
}

/* Explicitly prevent any underline from appearing on CTA */
.nav-cta::after {
  display: none !important;
}

.nav-chevron {
  font-size: 0.65rem;
  transition: transform 0.3s;
}

.nav-has-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

/* ----- Services Mega Dropdown ----- */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 560px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(30, 57, 143, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 57, 143, 0.08);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.25s,
    transform 0.25s,
    visibility 0.25s;
  z-index: 100;
}

.nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Arrow tip on dropdown */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid rgba(30, 57, 143, 0.08);
  border-top: 1px solid rgba(30, 57, 143, 0.08);
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.dropdown-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c7007e;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(199, 0, 126, 0.12);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #0d1a3a;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.nav-dropdown a:hover {
  background: linear-gradient(
    135deg,
    rgba(30, 57, 143, 0.07),
    rgba(199, 0, 126, 0.07)
  );
  color: #1e398f;
  transform: translateX(3px);
}

.dd-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.dd-view-all {
  margin-top: 8px;
  color: #c7007e !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
}

.dd-view-all i {
  font-size: 0.75rem;
}

/* ----- Hamburger ----- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(30, 57, 143, 0.06);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e398f;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Mobile Nav Drawer ----- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100vh;
  background: #fff;
  z-index: 1100;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 70px 20px 30px;
  gap: 2px;
}

.mob-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 57, 143, 0.06);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: #6b7280;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.mob-close-btn:hover {
  background: rgba(199, 0, 126, 0.1);
  color: #c7007e;
  transform: rotate(90deg);
}

/* Close button inside drawer */
.mobile-nav-inner::before {
  display: none !important;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0d1a3a;
  border-radius: 12px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.mob-link i {
  width: 18px;
  text-align: center;
  color: #1e398f;
  font-size: 0.9rem;
}

.mob-link:hover {
  background: rgba(30, 57, 143, 0.06);
  color: #1e398f;
}

/* Mobile accordion (Services) */
.mob-accordion {
  border-radius: 12px;
  overflow: hidden;
}

.mob-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: none;
  border: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0d1a3a;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s;
}

.mob-accordion-btn span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mob-accordion-btn span i {
  width: 18px;
  text-align: center;
  color: #1e398f;
  font-size: 0.9rem;
}

.mob-accordion-btn:hover {
  background: rgba(30, 57, 143, 0.06);
}

.mob-acc-chevron {
  font-size: 0.7rem;
  color: #6b7280;
  transition: transform 0.3s;
}

.mob-accordion.open .mob-acc-chevron {
  transform: rotate(180deg);
}

.mob-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(30, 57, 143, 0.03);
  border-radius: 0 0 12px 12px;
}

.mob-accordion.open .mob-accordion-body {
  max-height: 600px;
}

.mob-accordion-body a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 24px;
  font-size: 0.84rem;
  color: #374151;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.mob-accordion-body a:hover {
  color: #1e398f;
  background: rgba(30, 57, 143, 0.05);
  border-left-color: #c7007e;
  padding-left: 28px;
}

.mob-view-all {
  color: #c7007e !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  border-top: 1px solid rgba(199, 0, 126, 0.12) !important;
  margin-top: 4px;
}

.mob-logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(30, 57, 143, 0.08);
}

.mob-logo-img {
  height: 80px; /* controls visual height — adjust to your logo */
  width: 200px;
  object-fit: fill;
  display: block;
}

/* Fallback text in mobile drawer */
.mob-logo-fallback {
  display: none; /* shown via JS onerror */
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1e398f, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile accordion group labels */
.mob-acc-group-label {
  padding: 8px 14px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #c7007e;
}
.mob-acc-group-label--border {
  border-top: 1px solid rgba(199, 0, 126, 0.08);
  margin-top: 4px;
}
/* Mobile CTA */
.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #1e398f, #c7007e);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(199, 0, 126, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.mob-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(199, 0, 126, 0.45);
}

/* Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links > li > a,
  .nav-dropdown-trigger {
    padding: 7px 9px;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 12px 20px;
  }

  .topbar {
    padding: 6px 20px;
    font-size: 0.74rem;
  }

  .hide-mob {
    display: none;
  }
}

/* =============================================
       BLOB BACKGROUNDS (reusable)
    ============================================= */
.blob-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.blob-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

/* =============================================
       SECTION COMMON
    ============================================= */
section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1300px;
  margin: auto;
  padding: 90px 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-center .section-subtitle {
  margin: auto;
}

/* =============================================
       BUTTONS
    ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 8px 30px rgba(199, 0, 126, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(199, 0, 126, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline-dark:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

/* Shared blob base */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  /* 
    IMPORTANT: No transform on base class.
    Parallax JS will set translateY via inline style.
    Drift animation lives on the inner ::after pseudo instead (see below).
  */
}

/* ---- Blob 1 — top-left (pink) ---- */
.hero-blob--1 {
  width: 480px;
  height: 480px;
  top: -80px;
  left: -120px;
  background: radial-gradient(circle, rgba(199, 0, 126, 0.28), transparent 70%);
  /* Drift via animation on opacity/scale only — no transform so JS parallax isn't killed */
  animation: blobPulse1 12s ease-in-out infinite;
}

/* ---- Blob 2 — bottom-right (blue) ---- */
.hero-blob--2 {
  width: 440px;
  height: 440px;
  bottom: -80px;
  right: -50px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.5), transparent 70%);
  animation: blobPulse2 15s ease-in-out infinite;
}

/* ---- Blob 3 — center-ish (gold) ---- */
.hero-blob--3 {
  width: 320px;
  height: 320px;
  /* Position without transform so JS can freely set translateY */
  top: calc(
    40% - 160px
  ); /* equivalent of top:40% + translateY(-50%) baked in */
  left: calc(40% - 160px);
  background: radial-gradient(
    circle,
    rgba(248, 245, 255, 0.5),
    transparent 70%
  );
  animation: blobPulse3 10s ease-in-out infinite;
}

/* 
  Pulse animations — only scale/opacity, NEVER transform translate.
  This way JS inline translateY won't conflict with keyframes.
*/
@keyframes blobPulse1 {
  0%,
  100% {
    opacity: 0.85;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(20px) scale(1.06);
  }
}
@keyframes blobPulse2 {
  0%,
  100% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-18px) scale(1.04);
  }
}
@keyframes blobPulse3 {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* =============================================
       FOOTER
    ============================================= */
footer {
  background: var(--purple-footer);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(199, 0, 126, 0.1), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(30, 57, 143, 0.15), transparent 40%);
}

.footer-inner {
  max-width: 1300px;
  margin: auto;
  padding: 70px 40px 40px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr; /* 4 balanced columns */
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 80px; /* controls visual height — adjust to your logo */
  width: 200px;
  object-fit: fill;
}
.footer-col h5 {
  color: #fff;
  font-family: "DM Sans";
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.branch-entry {
  margin-bottom: 12px;
}

.branch-entry strong {
  color: #fff;
  font-size: 0.82rem;
  display: block;
}

.branch-entry span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-items {
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact-item i {
  width: 18px;
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.iso-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-inner {
    padding: 60px 30px 36px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .footer-inner {
    padding: 56px 24px 32px;
  }

  .footer-logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    padding: 50px 16px 28px;
  }

  .footer-col h5 {
    margin-bottom: 14px;
    padding-bottom: 8px;
    font-size: 0.8rem;
  }

  .footer-logo-img {
    width: 160px;
    height: auto;
  }

  .footer-contact-item {
    font-size: 0.8rem;
    align-items: flex-start;
  }

  .footer-contact-item span {
    word-break: break-word;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .iso-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
  }
}

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

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-contact-item,
.footer-col ul li a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-contact-item:hover,
.footer-col ul li a:hover {
  transform: translateX(3px);
}
/* =============================================
       SCROLL REVEAL ANIMATION
    ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
       FLOATING WHATSAPP
    ============================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 900;
  animation: waFloat 3s ease-in-out infinite;
  transition: transform 0.3s;
}

.float-wa:hover {
  transform: scale(1.15);
}

@keyframes waFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =============================================
       BACK TO TOP
    ============================================= */
.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
}

/* Particle canvas */
.bs-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}
