/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');
@import url('modal.css');

:root {
  --primary-color: #5A189A;
  /* JVH Purple */
  --accent-color: #F48C06;
  /* JVH Orange */
  --text-dark: #0B0F19;
  --text-light: #64748B;
  /* Slate 500 */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  /* Slate 50 */
  --font-main: 'Outfit', sans-serif;
  --gradient-hero: linear-gradient(135deg, #F3E8FF 0%, #FFFFFF 100%);
  /* Soft Purple Tint */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(90, 24, 154, 0.15), 0 10px 10px -5px rgba(90, 24, 154, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hide Scrollbar but keep functionality */
html {
  scrollbar-width: none;
  /* Firefox */
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -ms-overflow-style: none;
  /* IE/Edge */
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Opera */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, #3C096C 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(90, 24, 154, 0.35);
}

.btn-primary:hover {
  background-color: #3C096C;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-4 {
  margin-bottom: 40px;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  /* More transparency */
  backdrop-filter: blur(12px);
  /* Stronger blur */
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  /* Subtle divider instead of shadow */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding: 10px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  /* mix-blend-mode removed */
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  padding: 50px 0 50px;
  /* Compact hero */
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  /* Left align */
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-color), #4cc9f0);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.badge-1 {
  top: 20%;
  left: -20px;
  transform: rotate(3deg);
}

.badge-2 {
  bottom: 20%;
  right: -20px;
  transform: rotate(-2deg);
}

/* Stats Bar */
.stats-bar {
  background: white;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive updates for new hero */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero {
    padding: 30px 0 30px;
  }

  .hero-visual {
    margin-top: 30px;
    padding: 0 40px;
  }

  .section-padding {
    padding: 30px 0;
  }

  .services-highlight {
    margin-top: 30px;
    margin-bottom: 30px;
    gap: 15px;
  }

  .cta-section {
    padding: 40px 0;
  }
}

/* Services Highlight - Bento Grid */
.services-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Uneven columns */
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  /* Separated from stats bar */
  margin-bottom: 50px;
}

.main-service {
  grid-row: 1 / 3;
  /* Spans 2 rows */
  grid-column: 1 / 2;
  background: linear-gradient(135deg, white 0%, #F8FAFC 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-service h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.main-service .card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  margin-bottom: 30px;
}

/* .sub-service { } removed */

@media (max-width: 768px) {
  .services-highlight {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .main-service {
    grid-row: auto;
    grid-column: auto;
  }
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  /* Rounder */
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(67, 97, 238, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(67, 97, 238, 0.1);
  /* Based on primary now */
  border-radius: 16px;
  /* Squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-light);
}

/* About Section */
.about {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 30px;
}

.feature {
  margin-bottom: 20px;
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

/* Detailed Services */
.services-list {
  background-color: var(--bg-light);
}

.service-item {
  display: flex;
  background: white;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-content {
  padding: 40px;
  flex: 1;
}

.service-image {
  flex: 1;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

/* CTA Section */
.cta-section {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #EEF2FF 0%, #FFFFFF 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #10002B;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ffffff;
}

.footer-col a:hover {
  color: white;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #adb5bd;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
  }

  .service-image {
    height: 200px;
  }

  .navbar .nav-links {
    display: none;
  }

  .logo {
    margin-left: 10px;
    /* Adjust logo position */
  }

  /* Mobile menu simplified */
  .footer-col {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 25px;
    /* More breathing room for logo/button */
  }
}