/* ====================================================================
   SAI ADMISSION — PREMIUM DESIGN SYSTEM
   Deep Navy + Orange/Gold + Electric Cyan
   ==================================================================== */

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

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────────────── */
:root {
  /* Primary */
  --sa-navy: #0a1628;
  --sa-navy-light: #0f2240;
  --sa-navy-mid: #162d50;
  --sa-navy-soft: #1a3560;

  /* Accent */
  --sa-orange: #ff8a00;
  --sa-orange-dark: #e67a00;
  --sa-gold: #ffb400;
  --sa-gold-light: #ffd54f;

  /* Secondary */
  --sa-cyan: #00d4ff;
  --sa-cyan-dark: #00b8d9;
  --sa-teal: #00bfa5;

  /* Neutrals */
  --sa-white: #ffffff;
  --sa-text: #0b1b2b;
  --sa-text-light: #475569;
  --sa-gray-100: #f8fafc;
  --sa-gray-200: #f1f5f9;
  --sa-gray-300: #e2e8f0;
  --sa-gray-400: #94a3b8;

  /* Gradients */
  --sa-gradient-primary: linear-gradient(135deg, #ff8a00 0%, #ff5e00 100%);
  --sa-gradient-navy: linear-gradient(135deg, #0a1628 0%, #162d50 100%);
  --sa-gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #00b8d9 100%);
  --sa-gradient-gold: linear-gradient(135deg, #ffb400 0%, #ff8a00 100%);
  --sa-gradient-dark: linear-gradient(180deg, #061625 0%, #0a1628 100%);
  --sa-gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --sa-gradient-glossy: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Shadows */
  --sa-shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --sa-shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
  --sa-shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.16);
  --sa-shadow-glow: 0 8px 32px rgba(255, 138, 0, 0.25);
  --sa-shadow-cyan: 0 8px 32px rgba(0, 212, 255, 0.20);

  /* Radius */
  --sa-radius-sm: 8px;
  --sa-radius-md: 14px;
  --sa-radius-lg: 20px;
  --sa-radius-xl: 28px;
  --sa-radius-full: 999px;

  /* Timing */
  --sa-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --sa-transition: all 0.3s var(--sa-ease);
}

/* ── GLOBAL RESET / BASE ─────────────────────────────────────────── */
html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--sa-text);
  background: var(--sa-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: var(--sa-transition);
}

/* ── TOP BAR ─────────────────────────────────────────────────────── */
.sa-topbar {
  background: var(--sa-gradient-navy);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sa-topbar a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  transition: var(--sa-transition);
}

.sa-topbar a:hover {
  color: var(--sa-orange) !important;
}

.sa-topbar i {
  color: var(--sa-orange);
  margin-right: 6px;
}

.sa-topbar .sa-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-left: 6px;
  font-size: 13px;
  transition: var(--sa-transition);
}

.sa-topbar .sa-social a:hover {
  background: var(--sa-orange);
  color: #fff !important;
  transform: translateY(-1px);
}

.sa-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

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

/* ── MOBILE TOPBAR ─── compact single line ─── */
@media (max-width: 767px) {
  .sa-topbar {
    padding: 6px 0;
    font-size: 12px;
  }

  .sa-topbar-inner {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .sa-topbar-left {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .sa-topbar-left a {
    white-space: nowrap;
    font-size: 12px;
  }

  .sa-topbar .sa-social a {
    width: 26px;
    height: 26px;
    font-size: 11px;
    margin-left: 3px;
  }

  /* hide email on very small screens to save space */
  .sa-topbar-left .sa-topbar-email {
    display: none;
  }
}

/* ── NAVBAR ──────────────────────────────────────────────────────── */
.sa-navbar {
  background: var(--sa-white);
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--sa-transition);
}

.sa-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 72px;
}

/* Brand */
.sa-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.sa-brand img {
  height: 50px;
  width: auto;
}

.sa-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--sa-navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.sa-brand-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--sa-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links */
.sa-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.sa-nav>li>a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sa-text) !important;
  border-radius: var(--sa-radius-sm);
  white-space: nowrap;
  transition: var(--sa-transition);
  position: relative;
}

.sa-nav>li>a:hover,
.sa-nav>li>a:focus {
  color: var(--sa-orange) !important;
  background: rgba(255, 138, 0, 0.06);
}

.sa-nav>li>a .caret {
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.5;
}

/* Active indicator */
.sa-nav>li.active>a {
  color: var(--sa-orange) !important;
}

.sa-nav>li.active>a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--sa-gradient-primary);
  border-radius: 3px;
}

/* Dropdowns */
.sa-nav .sa-dropdown {
  position: relative;
}

.sa-nav .sa-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--sa-white);
  border: 1px solid var(--sa-gray-300);
  border-radius: var(--sa-radius-md);
  box-shadow: var(--sa-shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--sa-transition);
  z-index: 1001;
  list-style: none;
}

.sa-nav .sa-dropdown:hover>.sa-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sa-nav .sa-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sa-text) !important;
  border-radius: var(--sa-radius-sm);
  transition: var(--sa-transition);
}

.sa-nav .sa-dropdown-menu li a:hover {
  background: rgba(255, 138, 0, 0.08);
  color: var(--sa-orange) !important;
  padding-left: 18px;
}

/* Sub-dropdown */
.sa-nav .sa-sub-dropdown {
  position: relative;
}

.sa-nav .sa-sub-dropdown>.sa-dropdown-menu {
  left: 100%;
  top: 0;
}

.sa-nav .sa-sub-dropdown:hover>.sa-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sa-nav .sa-sub-dropdown>a::after {
  content: '▸';
  margin-left: auto;
  font-size: 11px;
  opacity: 0.4;
}

/* Hamburger */
.sa-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--sa-navy);
  border-radius: var(--sa-radius-sm);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: var(--sa-transition);
}

.sa-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sa-navy);
  border-radius: 2px;
  transition: var(--sa-transition);
}

.sa-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.sa-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── MOBILE NAV ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .sa-hamburger {
    display: flex;
  }

  .sa-nav-wrap {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--sa-white);
    box-shadow: -8px 0 40px rgba(10, 22, 40, 0.15);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.35s var(--sa-ease);
  }

  .sa-nav-wrap.is-open {
    right: 0;
  }

  .sa-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--sa-transition);
  }

  .sa-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .sa-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .sa-nav>li {
    width: 100%;
  }

  .sa-nav>li>a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--sa-gray-200);
    border-radius: 0;
  }

  .sa-nav .sa-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    background: var(--sa-gray-100);
    border-radius: 0;
  }

  .sa-nav .sa-dropdown.open>.sa-dropdown-menu {
    display: block;
  }

  .sa-nav .sa-sub-dropdown>.sa-dropdown-menu {
    left: 0;
    top: auto;
    padding-left: 16px;
  }

  .sa-nav .sa-sub-dropdown.open>.sa-dropdown-menu {
    display: block;
  }

  .sa-mobile-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sa-gray-200);
  }

  .sa-mobile-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--sa-gray-200);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sa-transition);
  }

  .sa-mobile-close-btn:hover {
    background: var(--sa-orange);
    color: #fff;
  }
}

@media (min-width: 992px) {
  .sa-nav-overlay {
    display: none !important;
  }

  .sa-mobile-close {
    display: none !important;
  }
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.sa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 28px;
  border-radius: var(--sa-radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--sa-transition);
  position: relative;
  overflow: hidden;
}

.sa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sa-gradient-glossy);
  opacity: 0;
  transition: var(--sa-transition);
}

.sa-btn:hover::before {
  opacity: 1;
}

.sa-btn-primary {
  background: var(--sa-gradient-primary);
  color: #fff !important;
  box-shadow: var(--sa-shadow-glow);
}

.sa-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 138, 0, 0.35);
}

.sa-btn-navy {
  background: var(--sa-gradient-navy);
  color: #fff !important;
  box-shadow: var(--sa-shadow-md);
}

.sa-btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: var(--sa-shadow-lg);
}

.sa-btn-outline {
  background: transparent;
  border: 2px solid var(--sa-orange);
  color: var(--sa-orange) !important;
}

.sa-btn-outline:hover {
  background: var(--sa-gradient-primary);
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
}

.sa-btn-cyan {
  background: var(--sa-gradient-cyan);
  color: var(--sa-navy) !important;
  font-weight: 800;
  box-shadow: var(--sa-shadow-cyan);
}

.sa-btn-sm {
  height: 40px;
  padding: 0 20px;
  font-size: 13px;
}

.sa-btn-lg {
  height: 56px;
  padding: 0 36px;
  font-size: 17px;
}

/* ── GLASS CARDS ─────────────────────────────────────────────────── */
.sa-card {
  background: var(--sa-white);
  border: 1px solid var(--sa-gray-300);
  border-radius: var(--sa-radius-lg);
  padding: 28px;
  box-shadow: var(--sa-shadow-md);
  transition: var(--sa-transition);
}

.sa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sa-shadow-lg);
}

.sa-card-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sa-radius-lg);
  padding: 28px;
  transition: var(--sa-transition);
}

.sa-card-glass:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-4px);
}

/* ── SECTION UTILITIES ───────────────────────────────────────────── */
.sa-section {
  padding: 80px 0;
}

.sa-section-dark {
  background: var(--sa-gradient-dark);
  color: var(--sa-white);
}

.sa-section-light {
  background: var(--sa-gradient-light);
}

.sa-section-navy {
  background: var(--sa-gradient-navy);
  color: var(--sa-white);
}

.sa-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.sa-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--sa-radius-full);
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.20);
  color: var(--sa-orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sa-section-dark .sa-section-badge {
  background: rgba(255, 138, 0, 0.15);
  border-color: rgba(255, 138, 0, 0.30);
}

.sa-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.sa-section-dark .sa-section-title {
  color: var(--sa-white);
}

.sa-section-subtitle {
  font-size: 17px;
  color: var(--sa-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.sa-section-dark .sa-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ── HERO / SLIDER ───────────────────────────────────────────────── */
.sa-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 100%);
  z-index: 1;
}

.sa-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 40px 0;
}

.sa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 138, 0, 0.15);
  border: 1px solid rgba(255, 138, 0, 0.30);
  border-radius: var(--sa-radius-full);
  color: var(--sa-gold-light);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.sa-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.sa-hero-title span {
  background: linear-gradient(135deg, var(--sa-orange), var(--sa-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sa-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
  opacity: 0.9;
}

.sa-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .sa-hero {
    min-height: 500px;
  }

  .sa-hero-title {
    font-size: 32px;
  }

  .sa-hero-desc {
    font-size: 16px;
  }
}

/* ── COURSE CATEGORY CARDS ───────────────────────────────────────── */
.sa-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.sa-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--sa-radius-lg);
  background: var(--sa-white);
  border: 1px solid var(--sa-gray-300);
  box-shadow: var(--sa-shadow-sm);
  transition: var(--sa-transition);
  cursor: pointer;
  text-decoration: none !important;
}

.sa-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sa-shadow-lg);
}

.sa-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--sa-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: var(--sa-shadow-md);
}

.sa-cat-medical .sa-cat-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.sa-cat-nursing .sa-cat-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.sa-cat-engineering .sa-cat-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.sa-cat-management .sa-cat-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.sa-cat-it .sa-cat-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.sa-cat-agriculture .sa-cat-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.sa-cat-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--sa-text);
  margin: 0 0 6px;
}

.sa-cat-count {
  font-size: 13px;
  color: var(--sa-text-light);
  font-weight: 500;
}

/* ── COURSE CARDS ────────────────────────────────────────────────── */
.sa-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.sa-course-card {
  border-radius: var(--sa-radius-lg);
  overflow: hidden;
  background: var(--sa-white);
  border: 1px solid var(--sa-gray-300);
  box-shadow: var(--sa-shadow-sm);
  transition: var(--sa-transition);
}

.sa-course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sa-shadow-lg);
}

.sa-course-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.sa-course-body {
  padding: 20px;
}

.sa-course-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--sa-radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sa-course-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--sa-text);
}

.sa-course-desc {
  font-size: 14px;
  color: var(--sa-text-light);
  line-height: 1.5;
  margin: 0 0 16px;
}

.sa-course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--sa-gray-200);
}

/* ── STATS / MILESTONES ──────────────────────────────────────────── */
.sa-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.sa-stat-card {
  text-align: center;
  padding: 28px 18px;
}

.sa-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--sa-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.sa-stat-label {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
}

.sa-section-dark .sa-stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ── REVIEW CARDS ────────────────────────────────────────────────── */
.sa-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.sa-review-card {
  background: var(--sa-white);
  border: 1px solid var(--sa-gray-300);
  border-radius: var(--sa-radius-lg);
  padding: 24px;
  box-shadow: var(--sa-shadow-sm);
  transition: var(--sa-transition);
}

.sa-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sa-shadow-md);
}

.sa-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sa-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--sa-radius-md);
  background: var(--sa-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.sa-review-name {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.sa-review-role {
  font-size: 13px;
  color: var(--sa-text-light);
  margin: 2px 0 0;
}

.sa-stars {
  color: var(--sa-gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.sa-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sa-text-light);
  margin: 12px 0 0;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.sa-footer {
  background: linear-gradient(180deg, #071828 0%, #0a1e30 50%, #0b2236 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 60px 0 0;
}

.sa-footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}

.sa-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--sa-gradient-primary);
  border-radius: 3px;
}

.sa-footer p,
.sa-footer span {
  color: rgba(255, 255, 255, 0.88) !important;
}

.sa-footer a {
  color: rgba(255, 255, 255, 0.88) !important;
  transition: var(--sa-transition);
  font-size: 14px;
}

.sa-footer a:hover {
  color: var(--sa-orange) !important;
  padding-left: 4px;
}

.sa-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sa-footer-links li {
  margin-bottom: 10px;
}

.sa-footer-links li a::before {
  content: '→ ';
  color: var(--sa-orange);
  opacity: 0.8;
}

.sa-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── FLOATING CTA (MOBILE) ───────────────────────────────────────── */
.sa-floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--sa-gray-300);
  backdrop-filter: blur(12px);
  display: flex;
  gap: 10px;
}

.sa-float-btn {
  flex: 1;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--sa-radius-md);
  font-weight: 800;
  text-decoration: none !important;
  font-size: 16px;
  color: #fff !important;
  transition: var(--sa-transition);
}

.sa-float-call {
  background: var(--sa-gradient-navy);
}

.sa-float-wa {
  background: #25D366;
}

.sa-float-btn i {
  font-size: 20px;
}

body.sa-body {
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .sa-floating-cta {
    flex-direction: column;
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
    gap: 10px;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
  }

  .sa-float-btn {
    flex: none;
    width: auto;
    height: auto;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  body.sa-body {
    padding-bottom: 0 !important;
  }
}

/* ── PAGE BANNER ─────────────────────────────────────────────────── */
.sa-page-banner {
  background: var(--sa-gradient-navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.sa-page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.sa-page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--sa-white);
  margin: 0 0 12px;
}

.sa-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.sa-breadcrumb li {
  color: rgba(255, 255, 255, 0.6);
}

.sa-breadcrumb li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.sa-breadcrumb li a:hover {
  color: var(--sa-orange) !important;
}

.sa-breadcrumb li+li::before {
  content: '/';
  margin-right: 8px;
  opacity: 0.4;
}

/* ── CONTACT SECTION ─────────────────────────────────────────────── */
.sa-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.sa-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--sa-radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: var(--sa-transition);
}

.sa-contact-item:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.sa-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--sa-gradient-primary);
  border-radius: var(--sa-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

/* ── FORM STYLES ─────────────────────────────────────────────────── */
.sa-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sa-gray-300);
  border-radius: var(--sa-radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--sa-text);
  background: var(--sa-white);
  transition: var(--sa-transition);
  outline: none;
}

.sa-form-control:focus {
  border-color: var(--sa-orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.12);
}

.sa-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--sa-text);
  margin-bottom: 6px;
}

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes saFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes saPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes saShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.sa-animate-up {
  animation: saFadeUp 0.6s var(--sa-ease) both;
}

.sa-animate-up-delay {
  animation: saFadeUp 0.6s var(--sa-ease) 0.15s both;
}

.sa-animate-up-delay2 {
  animation: saFadeUp 0.6s var(--sa-ease) 0.3s both;
}

/* ── WHY CHOOSE US ───────────────────────────────────────────────── */
.sa-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.sa-why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--sa-radius-lg);
  background: var(--sa-white);
  border: 1px solid var(--sa-gray-300);
  box-shadow: var(--sa-shadow-sm);
  transition: var(--sa-transition);
}

.sa-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sa-shadow-lg);
  border-color: var(--sa-orange);
}

.sa-why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
  color: var(--sa-orange);
  transition: var(--sa-transition);
}

.sa-why-card:hover .sa-why-icon {
  background: var(--sa-gradient-primary);
  color: #fff;
  transform: scale(1.1);
}

.sa-why-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
}

.sa-why-desc {
  font-size: 14px;
  color: var(--sa-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── UTILITY CLASSES ─────────────────────────────────────────────── */
.sa-text-center {
  text-align: center;
}

.sa-text-orange {
  color: var(--sa-orange) !important;
}

.sa-text-navy {
  color: var(--sa-navy) !important;
}

.sa-text-cyan {
  color: var(--sa-cyan) !important;
}

.sa-text-white {
  color: var(--sa-white) !important;
}

.sa-bg-navy {
  background: var(--sa-navy) !important;
}

.sa-bg-light {
  background: var(--sa-gray-100) !important;
}

.sa-mt-0 {
  margin-top: 0 !important;
}

.sa-mb-0 {
  margin-bottom: 0 !important;
}

/* ── PAGE BANNER (INNER PAGES) ──────────────────────────────────── */
.sa-page-banner {
  background: var(--sa-gradient-navy);
  padding: 55px 0 45px;
  position: relative;
  overflow: hidden;
}

.sa-page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.sa-page-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.sa-page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--sa-white);
  margin: 0 0 12px;
  line-height: 1.2;
  position: relative;
}

/* ── BREADCRUMBS ────────────────────────────────────────────────── */
.sa-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.sa-breadcrumb li {
  color: rgba(255, 255, 255, 0.6);
}

.sa-breadcrumb li a {
  color: var(--sa-orange) !important;
}

.sa-breadcrumb li a:hover {
  color: var(--sa-gold-light) !important;
  text-decoration: underline;
}

.sa-breadcrumb li+li::before {
  content: '/';
  margin-right: 8px;
  opacity: 0.4;
  color: rgba(255, 255, 255, 0.5);
}

/* Gallery */
.sa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.sa-gallery-item {
  border-radius: var(--sa-radius-lg);
  overflow: hidden;
  box-shadow: var(--sa-shadow-sm);
  transition: var(--sa-transition);
}

.sa-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sa-shadow-lg);
}

.sa-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--sa-transition);
}

.sa-gallery-item:hover img {
  transform: scale(1.05);
}

/* ── RESPONSIVE TOPBAR ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .sa-topbar {
    font-size: 12px;
    padding: 6px 0;
  }

  .sa-topbar-left {
    gap: 10px;
  }

  .sa-section {
    padding: 50px 0;
  }

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

  .sa-page-banner h1 {
    font-size: 28px;
  }

  .sa-page-banner {
    padding: 40px 0;
  }
}