/* --- CUSTOM PROPERTIES & DESIGN SYSTEM --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Colors - Light Corporate Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f6fa;
  --bg-tertiary: #e9eff6;
  
  --bg-dark: #090e1a; /* Used for dark high-contrast sections like Hero, Stats, CTA, Footer */
  --bg-dark-secondary: #111827;
  
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --text-inverse: #ffffff;
  --text-light-muted: #a0aec0;

  /* Premium Accents - matching blueprint360.com */
  --accent-purple: #b026b7;
  --accent-purple-hover: #8224e3;
  --accent-gold: #c59a27;
  --accent-gold-rgb: 197, 154, 39;
  --accent-blue: #0693e3;
  
  /* Gradients */
  --grad-hero: linear-gradient(135deg, #090e1a 0%, #17223b 100%);
  --grad-purple-blue: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
  --grad-purple: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-hover) 100%);
  --grad-light-card: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  --grad-dark-card: linear-gradient(145deg, rgba(20, 27, 47, 0.7) 0%, rgba(10, 14, 28, 0.4) 100%);

  /* Shadows */
  --shadow-neon: 0 0 20px rgba(176, 38, 183, 0.15);
  --shadow-gold: 0 0 20px rgba(197, 154, 39, 0.2);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

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

.text-gradient {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-gradient-purple {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.sub-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.sub-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--accent-purple);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header.left-aligned {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  outline: none;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: var(--grad-purple);
  color: var(--text-inverse);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(176, 38, 183, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--accent-purple);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(9, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 75px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-inverse);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-purple);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-purple);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-smooth);
}

.menu-toggle:hover {
  color: var(--accent-purple);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 14, 26, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-link {
    color: #ffffff;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 10px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(6, 9, 19, 0.4) 0%, var(--bg-dark) 85%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  color: #ffffff;
}

.hero h1 span {
  display: block;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
  color: var(--text-light-muted);
}

.hero .sub-title {
  color: var(--accent-purple);
}

.hero .sub-title::before {
  background-color: var(--accent-purple);
}

.hero-btns {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero p {
    margin: 0 auto 30px;
  }
}

/* --- FLOATING PILLARS / FANCY BOXES --- */
.pillars-section {
  padding: 80px 0;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

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

.pillar-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 38, 183, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(176, 38, 183, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-purple);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
  background: var(--accent-purple);
  color: #ffffff;
  transform: rotate(10deg) scale(1.1);
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --- TABS SECTION: LEVERAGE, GROW, SCALE & EXIT --- */
.tabs-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.tabs-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}

.tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-button {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(176, 38, 183, 0.2);
}

.tab-button.active {
  background: #ffffff;
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-neon);
}

.tab-btn-icon {
  font-size: 1.5rem;
  color: var(--accent-purple);
  background: rgba(176, 38, 183, 0.08);
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.tab-btn-icon svg {
  width: 24px;
  height: 24px;
}

.tab-button.active .tab-btn-icon {
  background: var(--accent-purple);
  color: #ffffff;
}

.tab-btn-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.tab-btn-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tab-content-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease-out forwards;
}

.tab-panel.active {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tab-panel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.tab-element-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent-purple);
  border: 1px solid rgba(176, 38, 183, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.tab-panel h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.tab-panel p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.tab-panel-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .tabs-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tab-content-wrapper {
    padding: 24px;
  }
  .tab-panel h3 {
    font-size: 1.6rem;
  }
}

/* --- STRATEGIES SECTION / SERVICE GRID --- */
.strategies-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-card);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(to bottom right, var(--accent-purple), var(--accent-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(176, 38, 183, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--accent-purple);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
  background: var(--accent-purple);
  color: #ffffff;
  box-shadow: var(--shadow-neon);
}

.service-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.carousel-btn {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.carousel-btn:hover {
  background: var(--accent-purple);
  color: #ffffff;
  border-color: var(--accent-purple);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicator.active {
  background: var(--accent-purple);
  width: 24px;
}

/* Callout inside Strategies Section */
.strategies-callout {
  text-align: center;
  max-width: 900px;
  margin: 80px auto 0;
  padding: 40px;
  background: var(--bg-secondary);
  border: 1px solid rgba(176, 38, 183, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.strategies-callout h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-main);
}

.strategies-callout .growth-factor {
  font-size: 3.5rem;
  font-weight: 800;
  margin-top: 10px;
  line-height: 1;
}

/* --- ABOUT JACOB & STATS --- */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-muted);
}

.signature-block {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.signature-img {
  height: 50px;
}

.signature-text h4 {
  font-size: 1.1rem;
  color: var(--text-main);
}

.signature-text p {
  font-size: 0.85rem;
  color: var(--accent-purple);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-item {
  text-align: center;
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  position: relative;
}

.stats-section h3, .stats-section h2 {
  color: #ffffff;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-title {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --- BOOK SHOWCASE --- */
.book-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.book-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.book-details h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.book-details p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.book-list-icon {
  color: var(--accent-purple);
  font-size: 1.2rem;
  margin-top: 3px;
  font-weight: 800;
}

.book-list-text {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 400;
}

.book-img-wrap {
  text-align: center;
  position: relative;
}

.book-img-wrap img {
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition-bounce);
}

.book-img-wrap:hover img {
  transform: translateY(-8px) rotate(-3deg);
}

@media (max-width: 768px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .book-img-wrap {
    order: -1;
  }
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 80px 0;
  background: var(--grad-purple);
  color: var(--text-inverse);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.cta-section .btn {
  background: #ffffff;
  color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-section .btn:hover {
  background: var(--bg-dark);
  color: #ffffff;
  transform: translateY(-3px);
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.testimonials-slider {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: max-content;
}

.testimonial-card {
  width: 850px;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-card-inner {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  border: 3px solid var(--accent-gold);
  margin: 0 auto 30px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-main);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 30px;
}

.testimonial-meta h4 {
  font-size: 1.15rem;
  color: var(--accent-purple);
  margin-bottom: 4px;
}

.testimonial-meta p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.testimonial-rating {
  margin-top: 12px;
  color: var(--accent-gold);
  display: flex;
  justify-content: center;
  gap: 4px;
}

@media (max-width: 900px) {
  .testimonial-card {
    width: calc(100vw - 48px);
  }
  .testimonial-card-inner {
    padding: 30px 20px;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
}

/* --- QUALIFICATION & INQUIRY FORM --- */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: var(--text-muted);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(176, 38, 183, 0.06);
  border: 1px solid rgba(176, 38, 183, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.info-item:hover .info-icon {
  background: var(--accent-purple);
  color: #ffffff;
  box-shadow: var(--shadow-neon);
}

.info-text h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.info-text p, .info-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-text a:hover {
  color: var(--accent-purple);
}

.flags-grid {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.flags-grid img {
  height: 68px;
  opacity: 0.95;
}

/* Contact Form Styling */
.form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group label span {
  color: var(--accent-purple);
  margin-left: 3px;
}

.form-control {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-control:focus {
  border-color: var(--accent-purple);
  outline: none;
  box-shadow: var(--shadow-neon);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Select drop down customization */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

select.form-control option {
  background-color: #ffffff;
  color: var(--text-main);
}

/* Checkbox Grid Group */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.checkbox-label:hover {
  color: var(--text-main);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-purple);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.spam-check {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spam-check label {
  margin-bottom: 0;
}

.spam-check input {
  width: 100px;
}

.form-submit-btn {
  width: 100%;
}

/* Alert States */
.form-alert {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-info {
    position: static;
  }
}

@media (max-width: 600px) {
  .form-card {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group.full-width {
    grid-column: auto;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FOOTER --- */
footer {
  background-color: #03050a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  text-align: center;
  color: #ffffff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-top-color: var(--accent-purple);
  border-radius: var(--radius-full);
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
