/* ============================================
   TERRAINFRA - Professional Website Styles
   ============================================ */

/* CSS Custom Properties */
:root {
  --primary: #1a1a1a;
  --primary-light: #333333;
  --secondary: #d32f2f;
  --secondary-light: #e53935;
  --accent: #b71c1c;
  --accent-light: #ef5350;
  --success: #d32f2f;
  --white: #ffffff;
  --light: #f5f5f5;
  --light-gray: #e5e5e5;
  --gray: #666666;
  --dark-gray: #333333;
  --dark: #000000;
  --font-primary: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: "Poppins", "Inter", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.top-bar-left span i {
  color: var(--secondary);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-right a {
  color: var(--white);
  opacity: 0.8;
  font-size: 1rem;
  transition: var(--transition);
}

.top-bar-right a:hover {
  opacity: 1;
  color: var(--secondary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 140px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
}

.navbar-brand .navbar-logo {
  height: 130px;
  max-height: 130px;
  width: auto;
  display: block;
}

.navbar-brand .logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.navbar-brand span.brand-highlight {
  color: var(--secondary);
}

.footer-brand .navbar-brand .navbar-logo {
  height: 100px;
  max-height: 100px;
}

@media (max-width: 1024px) {
  .navbar .container {
    height: 110px;
  }
  .navbar-brand .navbar-logo {
    height: 100px;
    max-height: 100px;
  }
  .footer-brand .navbar-brand .navbar-logo {
    height: 80px;
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    height: 90px;
  }
  .navbar-brand .navbar-logo {
    height: 80px;
    max-height: 80px;
  }
  .footer-brand .navbar-brand .navbar-logo {
    height: 64px;
    max-height: 64px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-gray);
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
  background: transparent;
}

.nav-menu li:not(.nav-cta) a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--secondary);
  background: transparent;
}

.nav-menu li:not(.nav-cta) a:hover::after {
  width: 60%;
}

.nav-menu li a.active {
  color: var(--secondary);
  font-weight: 600;
  background: transparent;
}

.nav-menu li:not(.nav-cta) a.active::after {
  width: 70%;
}

/* Ensure CTA button keeps its styled look */
.nav-cta a,
.nav-cta a:hover,
.nav-cta a:active,
.nav-cta a:focus {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
  border-radius: var(--radius-xl) !important;
  position: relative;
}

.nav-cta a:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--primary-light)) !important;
}

/* Dropdown */
.nav-menu li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  z-index: 100;
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu li .dropdown a {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 0;
  display: block;
}

.nav-menu li .dropdown a:hover {
  background: var(--light);
  color: var(--secondary);
}

.nav-cta {
  margin-left: 12px;
}

.nav-cta a {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
  background: linear-gradient(
    135deg,
    var(--secondary-light),
    var(--primary-light)
  ) !important;
}

/* Navbar Utilities (Accessibility + Language) */
.nav-utilities {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #222222 50%,
    var(--primary-light) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23D32F2F' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,170.7C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: cover;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.hero-particle:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
  width: 6px;
  height: 6px;
}
.hero-particle:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 2s;
}
.hero-particle:nth-child(4) {
  top: 70%;
  left: 80%;
  animation-delay: 3s;
  width: 8px;
  height: 8px;
}
.hero-particle:nth-child(5) {
  top: 10%;
  left: 50%;
  animation-delay: 4s;
}
.hero-particle:nth-child(6) {
  top: 80%;
  left: 40%;
  animation-delay: 5s;
  width: 5px;
  height: 5px;
}
.hero-particle:nth-child(7) {
  top: 40%;
  left: 90%;
  animation-delay: 1.5s;
}
.hero-particle:nth-child(8) {
  top: 90%;
  left: 60%;
  animation-delay: 2.5s;
  width: 3px;
  height: 3px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.7;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.hero .hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-wrapper .hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 40px;
  left: -40px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 40px;
  right: -30px;
  animation-delay: 1.5s;
}

.hero-float-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.hero-float-card .card-icon.blue {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.hero-float-card .card-icon.green {
  background: linear-gradient(135deg, var(--accent), #8b0000);
}
.hero-float-card .card-icon.orange {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.hero-float-card .card-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.hero-float-card .card-text p {
  font-size: 0.75rem;
  color: var(--gray);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-bar .container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border: 1px solid var(--light-gray);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--light-gray);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.08);
  border: 1px solid rgba(211, 47, 47, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   SERVICES / FEATURES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(211, 47, 47, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  position: relative;
}

.service-icon.blue {
  background: rgba(211, 47, 47, 0.1);
  color: var(--secondary);
}

.service-icon.green {
  background: rgba(51, 51, 51, 0.1);
  color: var(--dark-gray);
}

.service-icon.orange {
  background: rgba(183, 28, 28, 0.1);
  color: var(--accent);
}

.service-icon.purple {
  background: rgba(102, 102, 102, 0.1);
  color: #666666;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card .card-link:hover {
  gap: 10px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-image .experience-badge .text {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-feature span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0.2;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #222222 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(211, 47, 47, 0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(211, 47, 47, 0.05);
  border-radius: 50%;
}

.cta-banner .container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  margin: 0 8px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.partner-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray);
  opacity: 0.4;
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.partner-logo:hover {
  opacity: 0.8;
  color: var(--secondary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(211, 47, 47, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-item a:hover {
  color: var(--secondary);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--secondary);
}

.form-check label {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.form-check a {
  color: var(--secondary);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-column ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #222222 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(211, 47, 47, 0.05);
  border-radius: 50%;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a:hover {
  color: var(--secondary);
}

.page-hero .breadcrumb span {
  color: var(--secondary);
}

.page-hero .breadcrumb i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   DETAIL CONTENT (Inner pages)
   ============================================ */
.detail-section {
  padding: 80px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.detail-grid.reverse {
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.detail-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.detail-content ul {
  margin: 16px 0 24px;
}

.detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.detail-content ul li i {
  color: var(--secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

.detail-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ============================================
   COOKIE BANNER (GDPR)
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--secondary);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  flex: 1;
  line-height: 1.6;
}

.cookie-banner p a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================
   BACK TO TOP (LEFT SIDE)
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   ACCESSIBILITY BUTTON
   ============================================ */
.nav-accessibility {
  position: relative;
  margin-left: 4px;
}

.accessibility-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
  font-size: 1.1rem;
}

.accessibility-toggle:hover,
.accessibility-toggle.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.accessibility-toggle:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

.accessibility-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-gray);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}

.accessibility-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.accessibility-panel h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.accessibility-panel h4 i {
  color: var(--secondary);
}

.a11y-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.a11y-option:last-child {
  border-bottom: none;
}

.a11y-option-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.a11y-option-label i {
  color: var(--secondary);
  width: 18px;
  text-align: center;
}

.a11y-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.a11y-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray);
  background: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition);
  font-weight: 700;
}

.a11y-btn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.a11y-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

.a11y-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--light-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.a11y-toggle-switch.active {
  background: var(--secondary);
}

.a11y-toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.a11y-toggle-switch.active::after {
  left: 23px;
}

.a11y-reset {
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--light);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.a11y-reset:hover {
  background: #e63946;
  color: var(--white);
  border-color: #e63946;
}

/* High Contrast Mode */
body.high-contrast {
  --primary: #000000;
  --primary-light: #1a1a1a;
  --dark: #000000;
  --dark-gray: #111111;
  --gray: #333333;
  --light: #ffffff;
  --light-gray: #cccccc;
  --white: #ffffff;
}

body.high-contrast .navbar,
body.high-contrast .service-card,
body.high-contrast .testimonial-card,
body.high-contrast .process-step {
  border: 2px solid #000 !important;
}

body.high-contrast a {
  text-decoration: underline;
}

/* Dyslexia-Friendly */
body.dyslexia-friendly {
  font-family: "OpenDyslexic", "Comic Sans MS", "Arial", sans-serif !important;
  letter-spacing: 0.05em;
  word-spacing: 0.15em;
}

body.dyslexia-friendly * {
  font-family: inherit !important;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.nav-language {
  position: relative;
  margin-left: 4px;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--light-gray);
  background: var(--light);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.language-toggle:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.language-toggle:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

.language-toggle .flag-icon {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}

.language-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.language-option:hover {
  background: var(--light);
  color: var(--secondary);
}

.language-option.active {
  background: rgba(211, 47, 47, 0.08);
  color: var(--secondary);
  font-weight: 600;
}

.language-option .flag-icon {
  width: 24px;
  height: 17px;
  border-radius: 2px;
  flex-shrink: 0;
}

.language-option .lang-name {
  flex: 1;
}

.language-option .lang-check {
  color: var(--secondary);
  font-size: 0.8rem;
  opacity: 0;
}

.language-option.active .lang-check {
  opacity: 1;
}

/* Flag SVGs inline */
.flag-nl {
  background: linear-gradient(
    180deg,
    #ae1c28 33.3%,
    #fff 33.3%,
    #fff 66.6%,
    #21468b 66.6%
  );
}
.flag-en {
  background: #012169;
  position: relative;
  overflow: hidden;
}
.flag-sq {
  background: #e41e20;
}

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}
.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}
.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}
.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
  .hero .hero-text {
    margin: 0 auto 36px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid.reverse {
    direction: ltr;
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar .container {
    height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu li a {
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
    display: block;
  }

  .nav-menu li .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }
  .nav-cta a {
    display: block;
    text-align: center;
  }

  /* Navbar utility buttons on mobile */
  .nav-utilities {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
  }

  .accessibility-panel {
    position: fixed;
    top: 70px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .language-dropdown {
    position: fixed;
    top: 70px;
    right: 10px;
    min-width: 180px;
  }

  .hero {
    min-height: 70vh;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero .hero-subtitle {
    font-size: 1.2rem;
  }

  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar .container {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    height: 75px;
  }
  .navbar-brand .navbar-logo {
    height: 60px;
    max-height: 60px;
  }
  .footer-brand .navbar-brand .navbar-logo {
    height: 50px;
    max-height: 50px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
  .hero .hero-subtitle {
    font-size: 1rem;
  }
  .hero .hero-text {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .section-header p {
    font-size: 0.95rem;
  }
  .service-card {
    padding: 28px 20px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  .cta-banner p {
    font-size: 1rem;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
  .detail-content h2 {
    font-size: 1.5rem;
  }
  .contact-info h3 {
    font-size: 1.4rem;
  }
  .contact-form-wrapper {
    padding: 24px 16px;
  }
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer {
    padding: 50px 0 0;
  }
  .accessibility-panel {
    left: 5px;
    right: 5px;
  }
}

@media (max-width: 360px) {
  .navbar .container {
    height: 68px;
  }
  .navbar-brand .navbar-logo {
    height: 50px;
    max-height: 50px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero .hero-subtitle {
    font-size: 0.9rem;
  }
  .section-header h2 {
    font-size: 1.4rem;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .page-hero {
    padding: 80px 0 60px;
  }
  .page-hero h1 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 16px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}
.text-secondary {
  color: var(--secondary) !important;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Feature list styling for inner pages */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: var(--secondary);
  margin-top: 4px;
}
