/*=============================================================
  Ascendia North America — Brand CSS
  Sections: Fonts → Variables → Icons → Header → Hero →
            Stats → Who We Help → Services → Process →
            About → CTA → Pricing → FAQ → Contact → Footer
=============================================================*/

/* ============================================================
   1. FONT IMPORTS (loaded directly — no network dependency)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   2. BOOTSTRAP ICONS — font files are at a_data/fonts/ (correct path)
      The bootstrap-icons.css @font-face uses ./fonts/ relative to itself,
      which resolves correctly now that the font files are in place.
   ============================================================ */

/* ============================================================
   3. BRAND COLOR VARIABLES
   ============================================================ */
:root {
  /* Brand palette */
  --navy:           #0B1D3A;
  --navy-mid:       #132444;
  --navy-light:     #1a2f5e;
  --gold:           #C9A84C;
  --gold-light:     #dfc06e;
  --gold-pale:      rgba(201,168,76,0.12);
  --off-white:      #F7F8FC;
  --light-bg:       #EEF1F8;
  --border-color:   #DDE3EF;
  --text-dark:      #0B1D3A;
  --text-body:      #3D4A5C;
  --text-muted:     #6B7A90;

  /* Override template tokens */
  --accent-color:       #C9A84C;
  --heading-color:      #0B1D3A;
  --default-color:      #3D4A5C;
  --background-color:   #ffffff;
  --surface-color:      #ffffff;
  --contrast-color:     #ffffff;

  /* Nav */
  --nav-color:                      #0B1D3A;
  --nav-hover-color:                #C9A84C;
  --nav-mobile-background-color:    #ffffff;
  --nav-dropdown-background-color:  #ffffff;
  --nav-dropdown-color:             #0B1D3A;
  --nav-dropdown-hover-color:       #C9A84C;
}

/* ============================================================
   4. GLOBAL TYPOGRAPHY
   ============================================================ */
body {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  line-height: 1.8;
}

a {
  color: var(--gold);
  transition: color 0.25s;
}

a:hover {
  color: var(--gold-light);
}

/* Section title override */
.section-title h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.section-title h2::after {
  background: var(--gold);
  opacity: 0.4;
}

.section-title p {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .section-title p { font-size: 26px; }
}

.light-background {
  --background-color: #EEF1F8;
  --surface-color: #ffffff;
}

/* ============================================================
   5. HEADER & NAV
   ============================================================ */
.header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

/* Transparent on hero */
.index-page .header {
  --default-color:  #ffffff;
  --heading-color:  #ffffff;
  --nav-color:      #ffffff;
  background-color: rgba(11,29,58,0.15);
}

/* Scrolled state */
.scrolled .header,
.index-page.scrolled .header {
  --background-color: #0B1D3A;
  --default-color:    #ffffff;
  --heading-color:    #ffffff;
  --nav-color:        #ffffff;
  background-color:   #0B1D3A !important;
  box-shadow: 0 2px 20px rgba(11,29,58,0.25);
}

/* Logo */
.header .logo .sitename {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.header .logo .logo-dot {
  color: var(--gold);
}

.logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-top: 3px;
  opacity: 0.9;
}

/* Nav links */
.navmenu a,
.navmenu a:focus {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* CTA button */
.header .cta-btn,
.header .cta-btn:focus {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  padding: 9px 22px;
}

.header .cta-btn:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero .carousel-item::before {
  background-color: rgba(11,29,58,0.68);
}

/* Slide label bottom-left tag */
.hero-slide-label {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
}

.hero-slide-label .slide-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.55);
  color: #C9A84C;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero-slide-label .slide-tag i {
  font-size: 14px;
}

/* Carousel indicators — gold dots */
.hero-indicators {
  bottom: 50px !important;
}

.hero-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.4) !important;
  border: none !important;
  margin: 0 4px !important;
  transition: 0.3s !important;
}

.hero-indicators button.active {
  background: #C9A84C !important;
  width: 24px !important;
  border-radius: 4px !important;
}

@media (max-width: 768px) {
  .hero-slide-label { bottom: 110px; }
  .hero-slide-label .slide-tag { font-size: 11px; padding: 6px 14px; }
}

.hero .info h2 {
  font-family: 'Sora', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero .info h2 { font-size: 32px; }
}

.hero .info h2:after {
  background: var(--gold);
  width: 60px;
  height: 3px;
}

.hero .info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 10px;
}

.hero .info .btn-get-started {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  padding: 14px 40px;
  letter-spacing: 0.2px;
  margin: 10px 8px;
  display: inline-block;
  transition: 0.3s;
}

.hero .info .btn-get-started:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.hero .info .btn-outline-hero {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 6px;
  padding: 12px 36px;
  margin: 10px 8px;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
}

.hero .info .btn-outline-hero:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   7. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-bar .stat-item {
  text-align: center;
}

.stats-bar .stat-item .stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stats-bar .stat-item .stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ============================================================
   8. WHO WE HELP
   ============================================================ */
.who-we-help .region-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  padding: 9px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 5px;
  box-shadow: 0 2px 10px rgba(11,29,58,0.06);
  transition: 0.25s;
}

.who-we-help .region-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.18);
}

.who-we-help .region-badge .flag {
  font-size: 20px;
}

.gold-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px 0 22px;
}

/* ============================================================
   9. SERVICES SECTION
   ============================================================ */
.services .services-content .subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 4px;
  padding: 6px 14px;
}

.services .services-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.services .services-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-body);
}

.services .services-content .btn-consultation {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--navy);
  color: #ffffff;
  border-radius: 6px;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.services .services-content .btn-consultation:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Service cards */
.service-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 26px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(11,29,58,0.12);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon-box {
  width: 54px;
  height: 54px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon-box i {
  font-size: 24px;
  color: var(--gold);
}

.service-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card h4 a {
  color: var(--navy);
  text-decoration: none;
}

.service-card h4 a:hover { color: var(--gold); }

.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.service-card .service-number {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(11,29,58,0.04);
  line-height: 1;
  pointer-events: none;
}

.service-card .arrow-link {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.service-card .arrow-link:hover {
  background: var(--gold);
  color: #ffffff;
}

/* ============================================================
   10. PROCESS SECTION
   ============================================================ */
.process-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .section-title h2 {
  color: var(--gold);
}

.process-section .section-title p {
  color: #ffffff;
}

.process-step {
  text-align: center;
  padding: 30px 16px;
  position: relative;
}

.process-step .step-number {
  width: 68px;
  height: 68px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 22px;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.process-step h4 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-step p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

.process-connector {
  position: absolute;
  top: 54px;
  right: -24px;
  color: rgba(201,168,76,0.45);
  font-size: 22px;
  z-index: 1;
}

/* ============================================================
   11. ABOUT / WHY CHOOSE US
   ============================================================ */
.about .about-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,29,58,0.15);
}

.about .experience-badge {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(11,29,58,0.12);
}

.about .experience-badge h2 {
  font-family: 'Sora', sans-serif;
  color: var(--gold);
  font-size: 3rem;
  font-weight: 800;
}

.about .experience-badge p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
}

.about .projects-badge {
  background: var(--navy);
  border-radius: 10px 0 0 10px;
}

.about .projects-badge h2 {
  font-family: 'Sora', sans-serif;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 800;
}

.about .projects-badge p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
}

.why-us-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.why-us-item .why-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-item .why-icon i {
  font-size: 22px;
  color: var(--gold);
}

.why-us-item h5 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-us-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.about .btn-primary,
.about .btn.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--navy);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 13px 32px;
  letter-spacing: 0.3px;
  transition: 0.3s;
}

.about .btn-primary:hover,
.about .btn.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   12. CALL TO ACTION
   ============================================================ */
.call-to-action {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.call-to-action .badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 18px;
  border-radius: 50px;
}

.call-to-action h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.call-to-action .lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.call-to-action .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.call-to-action .feature-item i {
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.call-to-action .btn.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 13px 32px;
  transition: 0.3s;
}

.call-to-action .btn.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.call-to-action .btn.btn-outline {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  padding: 11px 28px;
  margin-left: 12px;
  transition: 0.3s;
}

.call-to-action .btn.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.call-to-action .trust-indicators small {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.call-to-action .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 6px;
}

.call-to-action .rating i { color: var(--gold); font-size: 14px; }

.call-to-action .rating span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-left: 6px;
}

/* ============================================================
   13. PRICING SECTION
   Strategy: override CSS custom properties ON the .featured element
   so that all color-mix() calls in main.css resolve against white.
   ============================================================ */

/* --- Base card (white) --- */
.pricing .pricing-item {
  background: #ffffff !important;
  border: 1.5px solid var(--border-color) !important;
  border-radius: 14px !important;
  padding: 36px 28px 32px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.pricing .pricing-item:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 16px 48px rgba(11,29,58,0.12) !important;
  transform: translateY(-5px) !important;
}

/* --- FEATURED card: redefine CSS variables so color-mix resolves to white --- */
.pricing .pricing-item.featured {
  /* Redefine the variables that main.css uses inside color-mix() */
  --default-color:   #ffffff;
  --heading-color:   #ffffff;
  --surface-color:   #1a2f5e;
  --accent-color:    #C9A84C;
  --contrast-color:  #0B1D3A;

  background: linear-gradient(145deg, #0B1D3A 0%, #132444 100%) !important;
  border: 2px solid rgba(201,168,76,0.3) !important;
  box-shadow: 0 20px 60px rgba(11,29,58,0.35) !important;
}

/* Explicit overrides for anything that doesn't use color-mix */
.pricing .pricing-item.featured h3 {
  color: #ffffff !important;
}

.pricing .pricing-item.featured .price {
  color: #ffffff !important;
}

.pricing .pricing-item.featured .price .currency {
  color: #C9A84C !important;
}

.pricing .pricing-item.featured .price .period {
  color: rgba(255,255,255,0.6) !important;
}

.pricing .pricing-item.featured .description {
  color: rgba(255,255,255,0.75) !important;
}

.pricing .pricing-item.featured .features-list li {
  color: rgba(255,255,255,0.88) !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}

.pricing .pricing-item.featured .features-list li i {
  color: #C9A84C !important;
}

.pricing .pricing-item.featured .pkr-note {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(201,168,76,0.4) !important;
  color: rgba(255,255,255,0.82) !important;
}

.pricing .pricing-item.featured .pkr-note strong {
  color: #C9A84C !important;
}

.pricing .pricing-item.featured .btn-pricing {
  background: #C9A84C !important;
  color: #0B1D3A !important;
  border-radius: 6px !important;
}

.pricing .pricing-item.featured .btn-pricing:hover {
  background: #dfc06e !important;
  color: #0B1D3A !important;
}

.pricing .pricing-item.featured .pricing-icon {
  background: rgba(201,168,76,0.18) !important;
}

.pricing .pricing-item.featured .pricing-icon i {
  color: #C9A84C !important;
}

/* Pricing badge */
.pricing .pricing-item .pricing-badge {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #C9A84C !important;
  color: #0B1D3A !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 5px 20px !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(201,168,76,0.45) !important;
}

/* Icon box (non-featured) */
.pricing .pricing-item .pricing-icon {
  background: rgba(201,168,76,0.1) !important;
  border-radius: 12px !important;
  margin: 0 0 18px 0 !important;
}

.pricing .pricing-item .pricing-icon i {
  color: #C9A84C !important;
}

/* Heading */
.pricing .pricing-item h3 {
  font-family: 'Sora', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0B1D3A !important;
  margin-bottom: 6px !important;
}

/* Price */
.pricing .pricing-item .price {
  font-family: 'Sora', sans-serif !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #0B1D3A !important;
  line-height: 1 !important;
  margin: 14px 0 !important;
  letter-spacing: -0.03em !important;
}

.pricing .pricing-item .price .currency {
  font-size: 20px !important;
  font-weight: 700 !important;
  vertical-align: top !important;
  margin-top: 8px !important;
  display: inline-block !important;
  color: #C9A84C !important;
}

.pricing .pricing-item .price .period {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #6B7A90 !important;
}

/* Description */
.pricing .pricing-item .description {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #6B7A90 !important;
  line-height: 1.65 !important;
  margin-bottom: 20px !important;
}

/* Features list */
.pricing .pricing-item .features-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  flex: 1 !important;
}

.pricing .pricing-item .features-list li {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  padding: 8px 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #3D4A5C !important;
  border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  line-height: 1.5 !important;
}

.pricing .pricing-item .features-list li:last-child {
  border-bottom: none !important;
}

.pricing .pricing-item .features-list li i {
  color: #C9A84C !important;
  font-size: 15px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

/* PKR note */
.pkr-note {
  background: rgba(201,168,76,0.07) !important;
  border: 1px solid rgba(201,168,76,0.25) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  margin-top: 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: #0B1D3A !important;
  line-height: 1.4 !important;
}

.pkr-note strong {
  color: #C9A84C !important;
  font-weight: 700 !important;
}

/* CTA button (non-featured) */
.pricing .pricing-item .btn-pricing {
  display: block !important;
  text-align: center !important;
  background: #0B1D3A !important;
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  padding: 13px 24px !important;
  border-radius: 6px !important;
  transition: 0.3s !important;
  text-decoration: none !important;
  margin-top: auto !important;
}

.pricing .pricing-item .btn-pricing:hover {
  background: #C9A84C !important;
  color: #0B1D3A !important;
}

/* Installment box */
.installment-box {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 40px;
}

.installment-box h5 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.installment-box > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}

.installment-box .install-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.installment-box .install-step .pct {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50px;
  padding: 5px 16px;
  min-width: 68px;
  text-align: center;
  flex-shrink: 0;
}

/* Fulfillment table */
.fulfillment-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,29,58,0.08);
}

.fulfillment-table th {
  background: var(--navy);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 18px;
}

.fulfillment-table td {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  padding: 12px 18px;
  border-bottom: 1px solid #f0f3f8;
}

.fulfillment-table tr:last-child td { border-bottom: none; }

.fulfillment-table tr:hover td {
  background: rgba(201,168,76,0.04);
}

/* ============================================================
   14. FAQ SECTION
   ============================================================ */
.faq .faq-tabs .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 22px;
  margin: 4px;
  transition: 0.25s;
}

.faq .faq-tabs .nav-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.faq .faq-tabs .nav-link.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.faq .faq-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.faq .faq-item h3 .num {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  background: var(--gold);
  color: var(--navy);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq .faq-item .faq-toggle {
  color: var(--gold);
}

.faq .faq-item .faq-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq .faq-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-body);
}

.faq .faq-cta .btn.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--navy);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  transition: 0.3s;
}

.faq .faq-cta .btn.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   15. CONTACT SECTION
   ============================================================ */
.contact .contact-card .icon-box {
  background: var(--gold-pale);
  border-radius: 10px;
}

.contact .contact-card .icon-box i {
  color: var(--gold);
  font-size: 20px;
}

.contact .contact-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact .contact-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

.contact .contact-form-container h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact .contact-form-container p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact .contact-form-container .form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  border-color: var(--border-color);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text-dark);
}

.contact .contact-form-container .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.contact .contact-form-container button[type=submit] {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--navy);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 13px 28px;
  cursor: pointer;
  transition: 0.3s;
}

.contact .contact-form-container button[type=submit]:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: #060e22;
  font-family: 'DM Sans', sans-serif;
}

.footer .footer-content .logo .sitename {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.footer .footer-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer h4:after {
  background-color: var(--gold);
}

.footer .footer-links ul a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

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

.footer .footer-links ul a i {
  color: var(--gold);
}

.footer .footer-contact .contact-icon {
  background: rgba(201,168,76,0.12);
}

.footer .footer-contact .contact-icon i {
  color: var(--gold);
}

.footer .footer-contact .contact-item .contact-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer .social-links a {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
}

.footer .social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer .newsletter-form h5 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.footer .newsletter-form .btn-subscribe {
  background: var(--gold);
  color: var(--navy);
}

.footer .newsletter-form .btn-subscribe:hover {
  background: var(--gold-light);
}

.footer .footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer .footer-bottom .copyright p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer .footer-bottom .footer-bottom-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

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

.footer .footer-bottom .credits {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

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

/* ============================================================
   17. WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float i {
  font-size: 26px;
  color: #ffffff;
}

/* ============================================================
   18. SCROLL TOP
   ============================================================ */
.scroll-top {
  background: var(--gold);
}

.scroll-top i {
  color: var(--navy);
}

.scroll-top:hover {
  background: var(--gold-light);
}

/* ============================================================
   19. PRELOADER
   ============================================================ */
#preloader:before {
  border-color: var(--gold);
  border-top-color: transparent;
}

/* ============================================================
   20. SWIPER NAVIGATION
   ============================================================ */
.swiper-nav-prev,
.swiper-nav-next {
  background: var(--navy);
  color: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 5px;
  font-size: 16px;
}

.swiper-nav-prev:hover,
.swiper-nav-next:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   21. MISC UTILITIES
   ============================================================ */
/* Section headings used inline */
h4.fw-bold {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
}

/* Pricing section toggle badge */
.pricing .text-center .badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

/* General btn-primary used outside components */
.btn.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  border-radius: 6px;
  transition: 0.3s;
}

/* ============================================================
   22. RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .call-to-action h2 { font-size: 28px; }
  .services .services-content h2 { font-size: 28px; }
  .process-connector { display: none; }
}

@media (max-width: 768px) {
  .hero .info h2 { font-size: 30px; }
  .hero .info p { font-size: 15px; }
  .section-title p { font-size: 24px; }
  .stats-bar .stat-item .stat-number { font-size: 32px; }
  .pricing-item .price { font-size: 34px; }
  .installment-box { padding: 22px 20px; }
}

@media (max-width: 480px) {
  .hero .info .btn-get-started,
  .hero .info .btn-outline-hero {
    display: block;
    margin: 8px auto;
    max-width: 260px;
  }
}
