/* ========================
   Eagle Pinnacle - Light UI
   ======================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #F5C45E;
  --primary-light: #FFF8E7;
  /* Light version of golden */
  --primary-dark: #D4A742;
  /* Darker version of golden */
  --accent: #FFA721;
  /* Orange accent from gradient */
  --bg: #F4F6FA;
  --bg-card: #FFFFFF;
  --bg-section: #EEF1F8;
  --text: #0D1117;
  --text-muted: #4B5563;
  --text-light: #6B7280;
  --border: #E2E8F0;
  --shadow: 0 4px 20px rgba(245, 196, 94, 0.15);
  --shadow-lg: 0 12px 40px rgba(245, 196, 94, 0.2);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 88, 208, 0.15);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Top Notice Bar ---- */
.top-notice-bar {
  position: relative;
  width: 100%;
  min-height: 40px;
  background: #F5C05E;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2100;
  padding: 8px 20px;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .top-notice-bar {
    flex-direction: row;
    padding: 8px 10px;
    gap: 4px;
    font-size: 11px;
  }
}

.top-notice-bar.hidden {
  display: none;
}

.countdown-timer {
  background: #222;
  color: #fff;
  padding: 3px 9px;
  border-radius: 6px;
  font-family: 'Inter', monospace;
  font-weight: 700;
  font-size: 13px;
  margin-left: 5px;
}

/* ---- Navbar ---- */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 75px;
  display: flex;
  align-items: center;
}

body.with-notice header {
  /* No manual top offset needed for sticky */
}

header.scrolled {
  top: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 65px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.logo img {
  display: block;
  max-height: 44px;
  width: auto;
  transition: all 0.3s;
}

header.scrolled .logo img {
  max-height: 38px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 900;
  font-size: 22px;
  border: 2px solid var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a:not(.btn-primary):not(.btn-outline) {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.btn-primary):not(.btn-outline):hover,
.nav-links a:not(.btn-primary):not(.btn-outline).active {
  color: var(--primary);
}

.nav-links a.active:not(.btn-primary):not(.btn-outline)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Side Menu (Left Drawer) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: #fff;
  z-index: 2100;
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex !important;
  flex-direction: column;
  padding: 0;
}

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

.mobile-menu-header {
  padding: 24px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mobile-menu-header h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---- Footer ---- */
footer {
  background: #0D1117;
  color: #9CA3AF;
  padding: 72px 0 0;
}

footer .logo-text {
  color: #fff;
}

footer .logo-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

footer a {
  color: #9CA3AF;
}

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

/* ---- Hero Split Layout ---- */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 100px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
  min-height: calc(100vh - 120px);
}

.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF8E7;
  color: var(--primary-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 167, 66, 0.2);
  box-shadow: 0 4px 10px rgba(212, 167, 66, 0.1);
}

.hero-text-col {
  text-align: left;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(245, 196, 94, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(245, 196, 94, 0.1) 50%);
}

.hero-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.3;
}

.hero-form-card input {
  width: 100%;
  padding: 14px 18px;
  background: #F8F9FB;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  transition: all 0.3s;
}

.hero-form-card input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 196, 94, 0.1);
}

/* ---- Dark Footer Styles ---- */
.footer-dark {
  background: #0B0E14;
  color: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-dark-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-dark-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-dark-desc {
  color: #9CA3AF;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 320px;
}

.footer-dark-links {
  list-style: none;
}

.footer-dark-links li {
  margin-bottom: 15px;
}

.footer-social-pill {
  display: flex;
  gap: 12px;
}

.social-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-box:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-dark-links a {
  color: #9CA3AF;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-dark-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-dark-links a::before {
  content: '—';
  font-size: 12px;
  opacity: 0.5;
}

.footer-bottom-dark {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-dark p {
  color: #6B7280;
  font-size: 14px;
}

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

.footer-bottom-links a {
  color: #6B7280;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-text-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-btns {
    justify-content: center;
  }
}

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

  .hero-split-grid {
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .footer-dark-grid {
    grid-template-columns: 1fr;
  }
}

/* Header Countdown Banner (Redundant but kept for structure) */
.top-notice-bar-v2 {
  background: linear-gradient(90deg, #F5C45E 0%, #FFA721 100%);
  color: #000;
  text-align: center;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1001;
}

.countdown-timer {
  display: inline-block;
  margin-left: 8px;
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

.footer-brand .footer-desc {
  margin: 20px 0 28px;
  font-size: 14px;
  line-height: 1.8;
  color: #9CA3AF;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #9CA3AF;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: #60a5fa;
  padding-left: 4px;
}

.footer-col ul li a::before {
  content: '→';
  font-size: 11px;
  opacity: 0.4;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: #60a5fa;
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #9CA3AF;
}

.social-links a:hover {
  border-color: #60a5fa;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: #9CA3AF;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

/* ---- Welcome Popup (5s delay) ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(6px);
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #fff;
  border-radius: 28px;
  padding: 52px 44px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.popup-overlay.open .popup-box {
  transform: translateY(0) scale(1);
}

.popup-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.popup-box h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.popup-box h2 span {
  color: var(--primary);
}

.popup-box p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.popup-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1;
  transition: all 0.2s;
}

.popup-close-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---- Scroll Popup Form (50% scroll) ---- */
.scroll-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8500;
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  max-width: 360px;
  width: calc(100% - 56px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px var(--border);
  transform: translateX(calc(100% + 60px));
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: none;
}

.scroll-popup.ready {
  display: block;
}

.scroll-popup.open {
  transform: translateX(0);
}

.scroll-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.scroll-popup-header h3 {
  font-size: 18px;
  font-weight: 800;
}

.scroll-popup-header h3 span {
  color: var(--primary);
}

.scroll-popup-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--text-muted);
  transition: all 0.2s;
  line-height: 1;
}

.scroll-popup-close:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.scroll-popup p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.scroll-popup .form-group {
  margin-bottom: 12px;
}

.scroll-popup .form-input {
  padding: 11px 14px;
  font-size: 13px;
}

.scroll-popup .submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.scroll-popup .submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.scroll-popup-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.scroll-popup-success.show {
  display: block;
}

.scroll-popup-success p {
  color: #065f46;
  font-weight: 700;
  font-size: 15px;
}

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

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

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

  .scroll-popup {
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 22px 22px 0 0;
  }
}

/* ---- Centered Contact Modal (Triggered by Get Quote/Contact Us) ---- */
#contactModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

#contactModal.open {
  opacity: 1;
  visibility: visible;
}

#contactModal .popup-box {
  width: 95%;
  max-width: 460px;
  max-height: 96vh;
  overflow-y: auto;
  padding: 24px;
  transform: translateY(40px) scale(0.95);
  border-radius: 24px;
}

@media (max-width: 500px) {
  #contactModal .popup-box {
    padding: 20px 16px;
  }

  #contactModal .popup-icon {
    font-size: 36px;
    margin-bottom: 8px;
  }

  #contactModal h2 {
    font-size: 19px;
    margin-bottom: 6px;
  }
}

#contactModal.open .popup-box {
  transform: translateY(0) scale(1);
}

#contactModal h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

#contactModal p {
  margin-bottom: 14px;
  font-size: 14px;
}

#contactModal .form-input {
  margin-bottom: 8px;
}

/* ---- Page Wrapper ---- */
.page-wrapper {
  padding-top: 0;
  /* Let hero flow behind header */
}

/* Base Section Spacing */
.section {
  padding: 80px 0;
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }
}

/* ---- CTA Section - Full Width ---- */
.cta-section {
  padding: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  width: 100%;
  overflow: hidden;
}

.cta-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
}

.cta-box h2 {
  font-size: clamp(30px, 5vw, 58px);
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 40px;
    text-align: center;
  }
  .cta-box h2 {
    text-align: center !important;
  }
  .cta-box p {
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .cta-box {
    padding: 50px 20px;
    gap: 32px;
  }
  .cta-box h2 {
    font-size: clamp(26px, 8vw, 36px);
  }
}

@media (max-width: 600px) {
  .page-wrapper {
    /* padding-top: 70px; */
  }
}

/* ---- Section Titles ---- */
h1,
h2,
.section-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 40px auto !important;
  text-align: center !important;
}

.section-header, .test-header {
  text-align: center !important;
  width: 100%;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 32px !important;
    /* Title Font Need to be bigger */
    text-align: center !important;
    /* Center Align Needed */
    letter-spacing: 0.05em;
    /* Fix overlapping space between letters */
    line-height: 1.4;
    /* Space Between line need to be proper */
    margin-bottom: 20px;
  }

  .section-subtitle {
    text-align: center !important;
    margin: 0 auto 30px auto !important;
  }
}

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

/* ---- Split Feature Section ---- */
.split-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-content {
  text-align: left;
}

.feature-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-video-wrap {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  background: #000;
  line-height: 0;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border: 10px solid #1a1a1a;
  box-sizing: border-box;
}

.feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .split-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .feature-content .section-title,
  .feature-content .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.mb-section {
  margin-bottom: 80px;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

/* ---- Grid helpers ---- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Tag / Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(0, 63, 160, 0.35);
  margin: 0 auto 16px;
  text-align: center;
  width: fit-content;
}

@media (max-width: 600px) {
  .badge {
    margin: 0 auto 16px;
    display: flex;
    justify-content: center;
    width: fit-content;
  }
}

/* ---- Form inputs ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--primary);
  background: #fff;
}

.form-input::placeholder {
  color: var(--text-light);
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes float {

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

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

.animate-fade-up {
  animation: fadeUp 0.7s ease both;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}


/* ---- Responsive ---- */
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 768px) {

  /* General Spacing */
  .section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .mb-section {
    margin-bottom: 48px;
  }

  .page-hero {
    padding: 80px 0 40px;
    text-align: center;
  }

  /* Scroll Popup Above Bottom Nav removal */
  .scroll-popup {
    border-radius: 22px !important;
    margin: 0 16px;
    width: calc(100% - 32px) !important;
  }
}

@media (max-width: 600px) {

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ---- Floating Corner Form (Bottom Right) ---- */
.side-drawer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 360px;
  max-width: calc(100vw - 40px);
  max-height: calc(90vh - 100px);
  background: #fff;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.side-drawer.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.side-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(3px);
}

.side-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-drawer-header {
  padding: 20px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-drawer-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.side-drawer-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}

.side-drawer-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.side-drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.side-drawer-body h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--text);
}

.side-drawer-body p {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Floating Toggle Bubble */
.side-drawer-toggle {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 9997;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-drawer-toggle::before {
  content: '📩';
  font-size: 18px;
}

.side-drawer-toggle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 500px) {
  .side-drawer {
    right: 15px;
    left: 15px;
    bottom: 90px;
    width: auto;
  }

  .side-drawer-toggle {
    right: 15px;
    bottom: 20px;
  }
}


/* ==== Premium Banner Background System ==== */
.premium-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.premium-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  filter: saturate(1.2) brightness(1.1);
}

.banner-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(140px);
  border-radius: 50%;
  opacity: 0.12;
  animation: blob-move 25s infinite alternate ease-in-out;
}

.blob-1 {
  width: 800px;
  height: 800px;
  background: var(--primary);
  top: -300px;
  left: -150px;
  animation-duration: 40s;
}

.blob-2 {
  width: 700px;
  height: 700px;
  background: var(--accent);
  bottom: -200px;
  right: -100px;
  animation-name: blob-move-rev;
  animation-duration: 45s;
}

.blob-3 {
  width: 500px;
  height: 500px;
  background: #3B82F6;
  top: 15%;
  left: 55%;
  animation-duration: 30s;
  opacity: 0.12;
}

.blob-4 {
  width: 450px;
  height: 450px;
  background: #10B981;
  bottom: 10%;
  left: -50px;
  animation-duration: 28s;
  opacity: 0.08;
}

@keyframes blob-move {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(120px, 80px) rotate(90deg) scale(1.15);
  }

  100% {
    transform: translate(-40px, 140px) rotate(180deg) scale(0.9);
  }
}

@keyframes blob-move-rev {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(0.85);
  }

  50% {
    transform: translate(-150px, -60px) rotate(-120deg) scale(1.1);
  }

  100% {
    transform: translate(60px, -140px) rotate(-240deg) scale(1);
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==== Infinite Logo Marquee ==== */
.marquee-container {
  overflow: hidden;
  padding: 20px 0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-row {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scroll-left 50s linear infinite;
}

.marquee-row.reverse {
  animation: scroll-right 50s linear infinite;
}

.marquee-container:hover .marquee-row {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 280px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 15px;
  cursor: pointer;
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: brightness(0.95);
  opacity: 1;
}

.marquee-item:hover {
  transform: scale(1.15) translateY(-5px);
  z-index: 10;
}

.marquee-item:hover img {
  filter: brightness(1.1);
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1200px) {
  .marquee-item {
    width: 300px;
    height: 190px;
  }
}

@media (max-width: 768px) {
  .marquee-item {
    width: 220px;
    height: 150px;
    /* padding: 10px; */
  }

  .marquee-row {
    gap: 32px;
  }
}