/* Global modern Website theme — light, clean B&W + orange accent */

:root {
  /* Smoke-white palette */
  --ga-bg: #f5f6f8;          /* smoke white */
  --ga-bg-2: #ffffff;        /* pure white cards */
  --ga-surface: #ffffff;
  --ga-surface-muted: #f3f4f6; /* soft gray */
  --ga-border: #e5e7eb;
  --ga-border-strong: #d1d5db;
  --ga-text: #111827;
  --ga-text-soft: #1f2937;
  --ga-muted: #6b7280;
  --ga-accent: var(--Primary_Color, #ff8307);
  --ga-accent-hover: #e67400;
  --ga-blue: #2563eb;
  --ga-radius: 16px;
  --ga-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --ga-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --ga-header-h: 58px;
}

body.ga-site {
  background:
    radial-gradient(900px 480px at 8% -5%, rgba(37, 99, 235, 0.055), transparent 55%),
    radial-gradient(800px 420px at 95% 0%, rgba(255, 131, 7, 0.06), transparent 50%),
    var(--ga-bg);
  color: var(--ga-text);
}

body.ga-site h1,
body.ga-site h2,
body.ga-site h3 {
  color: var(--ga-text);
}
body.ga-site p {
  color: var(--ga-muted);
}

body.ga-site .CRM_Navbar { display: none !important; }
body.ga-site .CRM_Top_Banner_Spacing { padding-top: 0 !important; }
body.ga-site .CRM_Section_Spacing { padding: 0 !important; }
body.ga-site .Contact_Us_Second_Section {
  background: transparent !important;
  box-shadow: none !important;
}

/* Layout width */
body.ga-site .container-lg {
  max-width: 1500px !important;
}
.ga-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 14px;
}



/* Header — compact */
.ga-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--ga-border);
  box-shadow: var(--ga-shadow-sm);
}

/* (ga-container defined above) */

.ga-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  min-height: var(--ga-header-h);
}

.ga-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ga-text);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.ga-brand img {
  height: 26px;
  width: auto;
}

.ga-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ga-link {
  color: var(--ga-text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.ga-link:hover {
  background: var(--ga-surface-muted);
  color: var(--ga-text);
}
.ga-link.is-active {
  background: var(--ga-surface-muted);
  color: var(--ga-text);
  box-shadow: inset 0 0 0 1px var(--ga-border);
}

.ga-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.ga-btn-primary {
  background: linear-gradient(135deg, var(--ga-accent) 0%, #ff9b3a 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 131, 7, 0.28);
}
.ga-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 131, 7, 0.34);
}
.ga-btn-ghost {
  background: var(--ga-bg-2);
  border-color: var(--ga-border);
  color: var(--ga-text-soft);
}
.ga-btn-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--ga-border-strong);
  color: var(--ga-text);
  box-shadow: var(--ga-shadow-sm);
}

/* Footer */
.ga-footer {
  position: relative;
  border-top: 1px solid var(--ga-border);
  background: var(--ga-surface-muted);
  margin-top: 40px;
}

.ga-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ga-blue), var(--ga-accent), transparent);
  opacity: 0.45;
}

.ga-footer-inner {
  padding: 28px 0 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.ga-footer h4 {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ga-muted);
  margin: 0 0 10px;
  font-weight: 800;
}

.ga-footer .ga-brand img {
  height: 28px;
}

.ga-footer .d-grid a {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--ga-bg-2);
  border: 1px solid var(--ga-border);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.ga-footer .d-grid a:hover {
  transform: translateY(-1px);
  border-color: var(--ga-border-strong);
  box-shadow: var(--ga-shadow-sm);
}

.ga-footer a {
  color: var(--ga-text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.ga-footer a:hover {
  color: var(--ga-accent);
}
.ga-footer p {
  margin: 0;
  color: var(--ga-muted);
  font-size: 14px;
}
.ga-footer-strong {
  font-weight: 800;
  color: var(--ga-text) !important;
}

.ga-footer-bottom {
  border-top: 1px solid var(--ga-border);
  padding: 14px 0;
  color: var(--ga-muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ga-page {
  padding: 18px 0 26px;
  min-height: calc(100vh - 120px);
}

/* Shared UI */
.ga-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--ga-border);
  border-radius: 999px;
  background: var(--ga-bg-2);
  color: var(--ga-muted);
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--ga-shadow-sm);
}
.ga-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ga-accent), var(--ga-blue));
}
.ga-section-title {
  font-weight: 800;
  color: var(--ga-text);
  letter-spacing: -0.02em;
}
.ga-section-sub {
  color: var(--ga-muted);
}

.ga-anim {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ga-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
.ga-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--ga-border);
  border-radius: 10px;
  background: var(--ga-bg-2);
  cursor: pointer;
}
.ga-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ga-text);
  border-radius: 2px;
}
.ga-nav-menu {
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .ga-nav-menu.collapse {
    display: flex !important;
    visibility: visible;
    height: auto !important;
  }
}
@media (max-width: 991.98px) {
  .ga-nav {
    flex-wrap: wrap;
    padding: 8px 0;
    min-height: auto;
  }
  .ga-nav-menu {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
  }
  .ga-nav-menu:not(.show) {
    display: none !important;
  }
  .ga-nav-menu.show {
    display: flex !important;
  }
  .ga-links {
    flex-direction: column;
    gap: 2px;
  }
  .ga-link {
    padding: 10px 12px;
  }
  .ga-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 6px;
  }
  .ga-actions .ga-btn {
    width: 100%;
    justify-content: center;
  }
}

body.ga-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.ga-site .website-main {
  flex: 1 0 auto;
  width: 100%;
}

/* Home: no extra main padding (hero handles spacing) */
body.ga-site .website-main.ga-page--home {
  padding: 0;
  min-height: auto;
}

@media (max-width: 992px) {
  .ga-page {
    padding: 14px 0 22px;
    min-height: auto;
  }
  .ga-footer {
    margin-top: 28px;
  }
  .ga-footer-inner {
    grid-template-columns: 1fr;
  }
  .ga-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
}

@media (max-width: 576px) {
  :root {
    --ga-header-h: 52px;
  }
  .ga-brand img {
    height: 24px;
  }
  .ga-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Modal overlays — dark blue + blur (public website) */
body.ga-site .modal-backdrop {
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(30, 58, 138, 0.62) 42%,
    rgba(15, 23, 42, 0.82) 100%
  ) !important;
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
}

body.ga-site .modal-backdrop.show {
  opacity: 1 !important;
}

body.ga-site .swal2-container.swal2-backdrop-show {
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(30, 58, 138, 0.62) 42%,
    rgba(15, 23, 42, 0.82) 100%
  ) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
