/* =========================
   ROOT & GLOBAL STYLES
========================= */
:root {
  --blue-deep: #0b2c4d;
  --blue-main: #1e6fd9;
  --blue-sky: #6ecbff;
  --blue-aqua: #3fe0d0;
  --lavender-faint: rgba(186, 165, 255, 0.18);

  --text-dark: #0f172a;
  --text-muted: #475569;

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.4);

  --radius-lg: 22px;
  --radius-md: 16px;
  --contact-bg: #f7f9fc;
  --contact-card-bg: #ffffff;
  --contact-primary: #1e5eff;
  --contact-muted: #6c757d;
  --contact-border: rgba(0, 0, 0, 0.08);
  --contact-radius: 18px;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 30px 60px rgba(15, 23, 42, 0.14);

  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg,
      #f8fbff 0%,
      #eef7ff 40%,
      #f6f4ff 100%);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Smooth scroll for modern feel */
html {
  scroll-behavior: smooth;
}

/* =========================
   NAVBAR
========================= */
.main-navbar {
  position: sticky;
  top: 15px;
  margin: 0 auto;
  width: 95%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  z-index: 999;
}

/* shrink on scroll */
.main-navbar.scrolled {
  top: 8px;
  padding: 6px 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* ===== BRAND ===== */
.brand-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: #132a52 !important;
}

.brand-logo span {
  font-weight: 500;
  color: #6b84b6;
}

/* ===== NAV LINKS ===== */
.nav-link-custom {
  margin-left: 22px;
  position: relative;
  color: #223a66 !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #3a7cff;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 70%;
}

.nav-link-custom.active {
  color: #000 !important;
}

/* CTA */
.nav-cta {
  background: #eef4ff;
  padding: 8px 16px;
  border-radius: 10px;
}

.nav-cta:hover {
  background: #dde8ff;
}

/* ===== HAMBURGER ===== */

.custom-toggler {
  border: none;
  background: none;
  position: relative;
  width: 30px;
  height: 24px;
}

.open-icon span {
  display: block;
  width: 26px;
  height: 2px;
  background: #132a52;
  margin: 6px 0;
  transition: 0.35s ease;
}

.close-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.35s ease;
  color: red;
}

/* active state */
.custom-toggler.active .open-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.custom-toggler.active .open-icon span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active .open-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.custom-toggler.active .close-icon {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  color: red;
}

/* ===== MOBILE MENU ===== */

@media (max-width:991px) {

  .main-nav-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 120px 35px;
    transition: 0.45s ease;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.1);
  }

  .main-nav-collapse.show {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
  }

  .nav-link-custom {
    font-size: 1.25rem;
    margin: 18px 0;
  }

}

/* HERO CAROUSEL */
/* Core height control */
.hero-carousel,
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100vh;
  position: relative;
}

/* Slightly reduce height on very short screens */
@media (max-height: 700px) {

  .hero-carousel,
  .hero-carousel .carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 90vh;
  }
}

/* Background image wrapper */
.hero-carousel .carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 10s ease;
}

/* Subtle cinematic zoom */
.hero-carousel .carousel-item.active .carousel-bg {
  transform: scale(1);
}

/* Dark overlay for readability */
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 44, 77, 0.45),
      rgba(11, 44, 77, 0.7));
  z-index: 1;
}

/*CAPTION – GLASS, DEPTH, MOTION */

.hero-carousel .custom-caption {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  text-align: center;

  max-width: 760px;
  width: calc(100% - 2.5rem);

  background: linear-gradient(135deg,
      rgba(30, 111, 217, 0.55),
      rgba(63, 224, 208, 0.45),
      rgba(186, 165, 255, 0.22));

  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 2.8rem 3rem;

  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);

  animation: heroCaptionRise 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Heading */
.hero-carousel .custom-caption h1 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

/* Text */
.hero-carousel .custom-caption p {
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.95;
}

/* CAROUSEL CONTROLS */

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 64px;
  height: 64px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.hero-carousel .carousel-control-prev {
  left: 2rem;
}

.hero-carousel .carousel-control-next {
  right: 2rem;
}

/* Button base */
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);

  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    box-shadow 0.45s ease;
}

/* Hover interaction */
.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.12);
  background: linear-gradient(135deg,
      rgba(30, 111, 217, 0.75),
      rgba(63, 224, 208, 0.65));
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

/* Active press */
.hero-carousel .carousel-control-prev:active .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:active .carousel-control-next-icon {
  transform: scale(0.96);
}

/* MOBILE ADJUSTMENTS */

@media (max-width: 768px) {

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 52px;
    height: 52px;
  }

  .hero-carousel .carousel-control-prev {
    left: 1rem;
  }

  .hero-carousel .carousel-control-next {
    right: 1rem;
  }
}

/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {
  .hero-carousel .custom-caption {
    bottom: 12%;
    padding: 2rem 1.6rem;
    border-radius: 20px;
  }
}

/* ANIMATION */

@keyframes heroCaptionRise {
  from {
    opacity: 0;
    transform: translate(-50%, 40px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  padding: 6rem 0;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, var(--lavender-faint), transparent 60%),
    radial-gradient(circle at bottom left, rgba(63, 224, 208, 0.15), transparent 55%);
  pointer-events: none;
}

.about-section h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.about-section p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

/* =========================
   REASONS SECTION
========================= */
.reasons-section {
  padding: 6rem 0;
}

.reason-card {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--transition-smooth),
    box-shadow 0.5s var(--transition-smooth);
  height: 100%;
}

.reason-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.reason-icon {
  font-size: 2.8rem;
  background: linear-gradient(135deg,
      var(--blue-main),
      var(--blue-aqua));
  -webkit-text-fill-color: transparent;
}

.reason-card h4 {
  font-weight: 700;
  margin-top: 1rem;
}

.reason-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== MAIN FOOTER BASE ===== */

.main-footer {
  position: relative;
  background: linear-gradient(180deg, #f6f9ff, #eef4ff);
  color: #243b64;
  padding-top: 120px;
  overflow: hidden;
}

.footer-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(76, 119, 218, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(160, 200, 255, 0.12), transparent 40%);
  animation: glowMove 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowMove {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(20px);
  }
}

/* ===== SVG WAVE ===== */

.footer-wave svg {
  width: 100%;
  height: 120px;
  display: block;
}

.wave-path {
  fill: #aab9d7;
  animation: waveFloat 10s ease-in-out infinite alternate;
}

@keyframes waveFloat {
  from {
    transform: translateY(-4px);
  }

  to {
    transform: translateY(4px);
  }
}


/* ===== INNER CONTAINER ===== */

.footer-inner {
  position: relative;
  z-index: 2;
}

/* ===== GRID LAYOUT ===== */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

/* ===== BRAND COLUMN ===== */

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2e55;
}

.footer-logo span {
  font-weight: 500;
  color: #6b84b6;
}

.footer-description {
  margin-top: 14px;
  line-height: 1.7;
  color: #5f7294;
  max-width: 280px;
}

/* ===== HEADINGS ===== */

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1f3666;
  position: relative;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #a7c1ff;
  margin-top: 6px;
  border-radius: 20px;
}

/* ===== LINKS ===== */

.footer-link {
  display: block;
  margin: 10px 0;
  color: #5c6f91;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.footer-link:hover {
  color: #000;
  transform: translateX(5px);
}

/* ===== CONTACT ITEMS ===== */

.contact-item {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7d90b2;
  margin-bottom: 2px;
}

.footer-contact a {
  color: #2f5ed9;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* DEV COLUMN */

.footer-dev-text {
  font-size: 0.9rem;
  color: #7d90b2;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* BUTTON WRAPPER */
.footer-dev-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY LINK */
.dev-link {
  background: white;
  color: #111;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: .25s ease;
}

.dev-link:hover {
  transform: translateY(-2px);
}

/* OUTLINE LINK */
.dev-link-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #7d90b2;
  transition: .25s ease;
}

.dev-link-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== BOTTOM BAR ===== */

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0 30px;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #7b8cab;
}

/* ===== RESPONSIVENESS ===== */

@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-description {
    max-width: 100%;
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media(max-width:480px) {
  .main-footer {
    padding-top: 90px;
  }

  .footer-wave {
    height: 90px;
  }
}

/* ===== About Us Page ===== */

/* ABOUT PAGE HERO */
.hero-section {
  position: relative;
  min-height: 55vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
  overflow: hidden;

  background:
    radial-gradient(circle at top left,
      rgba(110, 203, 255, 0.22),
      transparent 55%),
    radial-gradient(circle at bottom right,
      rgba(186, 165, 255, 0.18),
      transparent 55%),
    linear-gradient(180deg,
      #f9fcff 0%,
      #eef7ff 100%);
}

/* very subtle motion — not attention-seeking */
.hero-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle,
      rgba(63, 224, 208, 0.12),
      transparent 60%);
  animation: heroFloat 30s linear infinite;
  opacity: 0.4;
  z-index: 0;
}

/* ======================================================
   HERO CONTENT
====================================================== */

.hero-body {
  position: relative;
  z-index: 1;

  max-width: 860px;
  text-align: center;

  padding: clamp(2.4rem, 5vw, 3.4rem);
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(30, 111, 217, 0.08);
}

/* ======================================================
   TYPOGRAPHY – EDUCATIVE, NOT LOUD
====================================================== */

.hero-body h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;

  /* solid color for guaranteed readability */
  color: var(--blue-deep);
}

.hero-text {
  max-width: 680px;
  margin-inline: auto;

  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.75;

  color: var(--text-muted);
}

/* subtle divider for structure */
.hero-body::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 1.8rem auto 0;

  border-radius: 999px;
  background: linear-gradient(90deg,
      var(--blue-main),
      var(--blue-aqua));
  opacity: 0.7;
}

/* ======================================================
   RESPONSIVE REFINEMENT
====================================================== */

@media (max-width: 768px) {
  .hero-section {
    min-height: 48vh;
    padding: 4rem 1rem;
  }

  .hero-body {
    padding: 2rem 1.5rem;
    border-radius: 22px;
  }
}

/* ======================================================
   ANIMATION
====================================================== */

@keyframes heroFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-60px);
  }
}

/* ===== ABOUT CONTENT ===== */

.about-content {
  padding: 80px 20px;
  background-color: #ffffff;
}

.about-header {
  font-weight: 700;
  color: #1c2f55;
  position: relative;
}

/* soft underline */
.about-header::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #b7d2ff;
  display: block;
  margin: 12px auto 0;
  border-radius: 20px;
}

.about-content .lead {
  color: #5d6f89;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}


/* ===== STRENGTH CARDS ===== */

.strength-card {
  background: #f7faff;
  border-radius: 18px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.strength-card h4 {
  margin-top: 15px;
  font-weight: 600;
  color: #223b6b;
}

.strength-card p {
  color: #667a96;
  line-height: 1.6;
}


/* icon circles */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e6f0ff, #f4f8ff);
  font-size: 26px;
  color: #2b6cff;
  transition: transform 0.3s ease;
}

.strength-card:hover .icon-circle {
  transform: scale(1.08);
}


/* ===== SUCCESS STATS ===== */

.success-stats {
  margin-top: 70px;
  padding: 40px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2a56a3;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.success-stats .col-md-4:hover .stat-number {
  transform: translateY(-4px);
}

.success-stats p {
  color: #6c7f99;
  margin: 0;
}


/* ===== FINAL PARAGRAPH ===== */

.about-content .text-center.mt-5.lead {
  color: #5d6f89;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}


/* ===== RESPONSIVENESS ===== */

@media (max-width: 992px) {

  .hero-section {
    padding: 70px 15px 60px;
  }

  .about-content {
    padding: 60px 15px;
  }
}

@media (max-width: 768px) {

  .strength-card {
    padding: 25px 18px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

.manager-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.8rem;

  padding: 3rem;
  border-radius: 32px;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.72));

  backdrop-filter: blur(18px);
  isolation: isolate;

  box-shadow:
    0 40px 90px rgba(15, 23, 42, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);

  overflow: hidden;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

/* ======================================================
   ROTATING GRADIENT BORDER GLOW
====================================================== */

.manager-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;

  background: conic-gradient(from 0deg,
      var(--blue-main),
      var(--blue-aqua),
      rgba(186, 165, 255, .6),
      var(--blue-main));

  animation: spinGlow 9s linear infinite;
  opacity: .35;
  z-index: -1;
}

/* inner mask */
.manager-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}

/* ======================================================
   PARTICLE AURA (HOVER ILLUSION)
====================================================== */

.manager-card:hover {
  transform: translateY(-10px);
}

.manager-card:hover::before {
  opacity: .75;
  filter: blur(2px);
}

.manager-card:hover .manager-media::after {
  opacity: 1;
}

/* ======================================================
   MEDIA / IMAGE SIDE
====================================================== */

.manager-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manager-image-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 6px;

  background: linear-gradient(135deg,
      var(--blue-main),
      var(--blue-aqua),
      rgba(186, 165, 255, .5));

  box-shadow: 0 25px 60px rgba(30, 111, 217, .4);
}

.manager-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

/* Aura glow */
.manager-media::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle,
      rgba(63, 224, 208, .35),
      transparent 60%);
  opacity: 0;
  transition: opacity .8s ease;
  z-index: -1;
}

/* ======================================================
   ROLE BADGE
====================================================== */

.manager-badge {
  margin-top: 1.2rem;
  padding: .45rem 1.1rem;
  border-radius: 999px;

  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;

  background: linear-gradient(135deg,
      rgba(30, 111, 217, .15),
      rgba(63, 224, 208, .25));

  color: var(--blue-main);
  border: 1px solid rgba(30, 111, 217, .25);
}

/* ======================================================
   INFO SIDE
====================================================== */

.manager-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manager-name {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: .2rem;
}

.manager-role {
  font-weight: 600;
  color: var(--blue-main);
  margin-bottom: .6rem;
}

.manager-desc {
  max-width: 520px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ======================================================
   CONTACT BLOCK
====================================================== */

.manager-contact {
  display: flex;
  gap: 1.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: linear-gradient(135deg,
      var(--blue-main),
      var(--blue-aqua));

  color: #fff;
  font-size: .85rem;
}

.contact-link {
  font-weight: 600;
  color: var(--blue-main);
  text-decoration: none;
  position: relative;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--blue-main),
      var(--blue-aqua));
  transition: width .4s cubic-bezier(.22, 1, .36, 1);
}

.contact-link:hover::after {
  width: 100%;
}

/* ======================================================
   SOCIAL ICONS
====================================================== */

.manager-socials {
  display: flex;
  gap: .9rem;
  margin-top: 1.8rem;
}

.manager-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: rgba(30, 111, 217, .08);
  color: var(--blue-main);

  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    background .4s ease;
}

.manager-socials a:hover {
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg,
      var(--blue-main),
      var(--blue-aqua));
  color: #fff;
}

/* ======================================================
   ACTION BUTTON
====================================================== */

.manager-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;

  background: linear-gradient(135deg,
      var(--blue-main),
      var(--blue-aqua));
  color: #fff;

  box-shadow: 0 18px 40px rgba(30, 111, 217, .45);

  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s ease;
}

.manager-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(30, 111, 217, .6);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {
  .manager-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.4rem 1.8rem;
  }

  .manager-contact {
    justify-content: center;
  }

  .manager-socials {
    justify-content: center;
  }
}

/* ======================================================
   ANIMATION
====================================================== */

@keyframes spinGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* CONTACT PAGE */

/* CONTACT HERO */
.contact-hero {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0;
  background:
    linear-gradient(180deg,
      rgba(30, 94, 255, 0.08),
      rgba(255, 255, 255, 0.9));
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.contact-hero p {
  max-width: 720px;
  margin: 0.8rem auto 0;
  color: var(--contact-muted);
}

/* CONTACT SECTION LAYOUT */
.contact-section {
  background: var(--contact-bg);
  padding: clamp(4rem, 6vw, 6rem) 0;
}

/* CONTACT CARD */
.contact-card {
  height: 100%;
  background: var(--contact-card-bg);
  border-radius: var(--contact-radius);
  padding: clamp(2rem, 3vw, 2.6rem);
  border: 1px solid var(--contact-border);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
  font-weight: 600;
  color: #0f172a;
}

/* =========================
   CONTACT INFO ITEMS
========================= */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #334155;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--contact-primary);
  margin-top: 0.2rem;
}

.info-item a {
  color: var(--contact-primary);
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form .form-label {
  font-weight: 500;
  color: #334155;
}

.contact-form .form-control {
  border-radius: 12px;
  border: 1px solid var(--contact-border);
  padding: 0.75rem 0.9rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form .form-control:focus {
  border-color: var(--contact-primary);
  box-shadow: 0 0 0 4px rgba(30, 94, 255, 0.12);
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg,
      #1e5eff,
      #4f8cff);
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 94, 255, 0.35);
}

/* =========================
   MAP SECTION
========================= */
.contact-map {
  margin-top: clamp(4rem, 6vw, 6rem);
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--contact-radius);
  height: 420px;
  border: 1px solid var(--contact-border);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 991px) {
  .contact-hero {
    padding: 4.5rem 1rem;
  }

  .map-container {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .contact-card {
    padding: 1.8rem;
  }
}

/* ======================================================
   BUSINESS DIRECTORY SECTION
====================================================== */

.business-directory {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: linear-gradient(180deg,
      #f8fbff 0%,
      #eef5ff 100%);
}

/* ======================================================
   HEADER
====================================================== */

.directory-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.directory-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.directory-description {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

/* ======================================================
   CATEGORY TABS
====================================================== */

.directory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.85);
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.08);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.tab-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.tab-btn.active {
  background: linear-gradient(135deg,
      #1e6fd9,
      #3fe0d0);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(30, 111, 217, 0.35);
}

/* ======================================================
   DIRECTORY GRID
====================================================== */

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

/* Individual business card (JS-generated items) */
.directory-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 1.5rem;

  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.directory-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 70px rgba(15, 23, 42, 0.12);
}

/* Business name */
.directory-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

/* Category or description */
.directory-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
}

/* Optional badge */
.directory-card .badge {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 999px;

  background: rgba(30, 111, 217, 0.1);
  color: #1e6fd9;
}

/* ======================================================
   PAGINATION
====================================================== */

.directory-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.directory-pagination button {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;

  background: #ffffff;
  color: #1e6fd9;
  border: 1px solid rgba(30, 111, 217, 0.25);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.directory-pagination button:hover {
  background: #1e6fd9;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(30, 111, 217, 0.35);
}

#pageIndicator {
  font-size: 0.85rem;
  color: #475569;
}

/* ======================================================
   BUSINESS CARD V2 – PREMIUM DIRECTORY ITEM
====================================================== */

.business-card-v2 {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 1.8rem 1.7rem 2rem;

  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.06);

  animation: cardFadeUp 0.7s ease forwards;
  opacity: 0;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.business-card-v2:hover {
  transform: translateY(-8px);
  box-shadow:
    0 36px 80px rgba(15, 23, 42, 0.14);
}

/* HEADER ROW */
.business-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* LOGO WRAPPER */
.business-logo {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e6eef6;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: .3s ease;
}

.business-card-v2:hover .business-logo {
  transform: scale(1.05);
}

/* LOGO IMAGE */
.business-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FALLBACK LOGO */
.logo-fallback {
  font-weight: 600;
  font-size: 1.4rem;
  color: #2c7be5;
}

/* TITLE AREA */
.business-title {
  display: flex;
  flex-direction: column;
}

.business-title .meta-item {
  font-size: .8rem;
  color: #6b7c93;
}

/* SUITE BADGE */

.business-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;

  padding: 0.35rem 0.75rem;
  border-radius: 999px;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  background: linear-gradient(135deg,
      #1e6fd9,
      #3fe0d0);
  color: #ffffff;

  box-shadow: 0 8px 22px rgba(30, 111, 217, 0.35);
}

/* ======================================================
   CONTENT
====================================================== */

.business-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Business Name */
.business-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-top: 0.5rem;
}

/* Description */
.business-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
}

/* ======================================================
   META / CATEGORY
====================================================== */

.business-meta {
  margin-top: 0.3rem;
}

.meta-item {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 999px;

  background: rgba(30, 111, 217, 0.1);
  color: #1e6fd9;
}

/* CONTACT LINKS */

.business-contact {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.contact-link {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;

  border: 1px solid rgba(30, 111, 217, 0.25);
  color: #1e6fd9;
  background: #ffffff;

  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.contact-link:hover {
  background: #1e6fd9;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(30, 111, 217, 0.35);
}

/* SOCIAL LINKS */

.business-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.2rem;
}

.business-social a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  position: relative;
}

.business-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,
      #1e6fd9,
      #3fe0d0);
  transition: width 0.35s ease;
}

.business-social a:hover {
  color: #1e6fd9;
}

.business-social a:hover::after {
  width: 100%;
}

/* ======================================================
   ACTION BUTTONS
====================================================== */

.business-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.book-btn,
.reserve-btn {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0;
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Primary */
.book-btn {
  background: linear-gradient(135deg,
      #1e6fd9,
      #3fe0d0);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(30, 111, 217, 0.35);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(30, 111, 217, 0.45);
}

/* Secondary */
.reserve-btn {
  background: #ffffff;
  color: #1e6fd9;
  border: 1px solid rgba(30, 111, 217, 0.3);
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.15);
}

/* ======================================================
   ANIMATION
====================================================== */

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 575px) {
  .business-card-v2 {
    padding: 1.5rem;
  }

  .business-name {
    font-size: 1.05rem;
  }
}

/* ======================================================
   RESPONSIVE TWEAKS
====================================================== */

@media (max-width: 768px) {
  .directory-header {
    margin-bottom: 2.5rem;
  }

  .directory-tabs {
    gap: 0.45rem;
  }

  .tab-btn {
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
  }
}

/* ======================================================
   REQUEST / CREATE PAGE – ELITE MVP MODE
====================================================== */

/* ---------- Background Orbs ---------- */
.orb-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.85;
  mix-blend-mode: multiply;
  animation: drift 18s linear infinite alternate;
}

/* individual orbs */
.orb.green {
  width: 260px;
  height: 260px;
  background: rgba(11, 71, 43, 0.45);
  top: 10%;
  left: 5%;
}

.orb.mint {
  width: 200px;
  height: 200px;
  background: rgba(199, 250, 233, 0.8);
  top: 60%;
  left: 15%;
  animation-duration: 22s;
}

.orb.gold {
  width: 180px;
  height: 180px;
  background: rgba(230, 195, 106, 0.85);
  top: 30%;
  right: 8%;
  animation-duration: 20s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(40px, -30px);
  }

  50% {
    transform: translate(-30px, 20px);
  }

  75% {
    transform: translate(20px, 40px);
  }

  100% {
    transform: translate(-40px, -20px);
  }
}

/* ---------- Form Container ---------- */
.request-form {
  max-width: 980px;
  margin: clamp(4rem, 8vw, 6rem) auto;
  padding: clamp(2.5rem, 5vw, 4rem);

  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
  border-radius: 36px;

  box-shadow:
    0 40px 90px rgba(15, 23, 42, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);

  position: relative;
}

/* ---------- Hero ---------- */
.form-hero {
  text-align: center;
  margin: 0 auto 3.5rem;
}

.form-hero-brand {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.15rem;
  border-radius: 24px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.95),
      rgba(245, 247, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);

  animation: brandDrift 7s ease-in-out infinite;
}

/* Halo that actually frames the logo */
.form-hero-brand::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  background: radial-gradient(circle at center,
      rgba(79, 70, 229, 0.28),
      transparent 72%);
  filter: blur(14px);
  opacity: 0.7;
  z-index: -1;
}

/* Subtle border shimmer (very slow) */
.form-hero-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(79, 70, 229, 0.18),
      transparent 70%);
  opacity: 0.25;
  animation: shimmer 10s linear infinite;
}

/* ===== LOGO ===== */
.form-hero-logo {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

/* Intentional hover — not jumpy */
.form-hero-brand:hover .form-hero-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 24px rgba(79, 70, 229, 0.35));
}

/* ===== ANIMATIONS ===== */
@keyframes brandDrift {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }

  20% {
    opacity: 0.25;
  }

  40% {
    opacity: 0;
    transform: translateX(30%);
  }

  100% {
    opacity: 0;
  }
}

.form-pill {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  background: linear-gradient(135deg,
      #1e6fd9,
      #3fe0d0);
  color: #fff;
  box-shadow: 0 10px 25px rgba(30, 111, 217, 0.35);
  margin-bottom: 1.2rem;
}

.form-hero h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.form-hero p {
  color: #64748b;
  line-height: 1.75;
}

/* ---------- Background Shapes ---------- */
.background-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: shapeDrift 22s linear infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  background: #1e6fd9;
  top: 15%;
  left: 8%;
}

.circle-2 {
  width: 260px;
  height: 260px;
  background: #3fe0d0;
  bottom: 20%;
  right: 12%;
  animation-duration: 30s;
}

.circle-3 {
  width: 180px;
  height: 180px;
  background: #baa5ff;
  bottom: 10%;
  left: 30%;
  animation-duration: 36s;
}

/* ---------- Inputs ---------- */
.form-groups {
  position: relative;
}

.form-label {
  font-weight: 600;
  color: #334155;
}

.common-input {
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.common-input:focus {
  border-color: #1e6fd9;
  box-shadow: 0 0 0 4px rgba(30, 111, 217, 0.15);
  transform: translateY(-1px);
}

textarea.common-input {
  resize: none;
}

/* ---------- Checkbox ---------- */
.form-check-input {
  border-radius: 6px;
}

.form-check-input:checked {
  background-color: #1e6fd9;
  border-color: #1e6fd9;
}

/* ---------- Submit Button ---------- */
.form-btn {
  padding: 0.75rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;

  background: linear-gradient(135deg,
      #1e6fd9,
      #3fe0d0);
  border: none;

  box-shadow: 0 18px 40px rgba(30, 111, 217, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(30, 111, 217, 0.55);
}

/* ---------- Animations ---------- */
@keyframes orbFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-80px);
  }
}

@keyframes shapeDrift {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .request-form {
    padding: 2.2rem 1.6rem;
    border-radius: 26px;
  }

  .form-hero {
    margin-bottom: 2.5rem;
  }
}