/* Design System CSS Variables (Use These Exact Variables) */

:root {
  /* Colors - Base */
  --color-primary: #1E3A5F;
  --color-secondary: #2D5A7B;
  --color-accent: #E8B339;
  --color-neutral-light: #F7F9FB;
  --color-neutral-dark: #1F2937;
  --color-background: #ffffff;
  --color-text: #333333;

  /* Colors - Variations (for sophistication) */
  --color-primary-light: rgba(30, 58, 95, 0.1);
  --color-primary-dark: #1E3A5F;
  --color-overlay-light: rgba(30, 58, 95, 0.05);
  --color-overlay-dark: rgba(30, 58, 95, 0.15);

  /* Typography - Fonts */
  --font-heading: Libre Baskerville, serif;
  --font-body: Nunito, sans-serif;

  /* Typography - Weights (use variety!) */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Typography - Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* Typography - Line Height */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* Shadows - Layered for depth (use multiple!) */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.08);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  /* Spacing Scale (for rhythm) */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 4rem;       /* 64px */
  --space-2xl: 6rem;      /* 96px */
  --space-3xl: 8rem;      /* 128px */

  /* Container */
  --container-width: 1200px;
  --container-padding: var(--space-lg);

  /* Border Radius (vary for visual interest) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions (use appropriate timing) */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-index Scale (for layering) */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Form Styles */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}


/* navigation Section */
/* DESIGN SYSTEM VARIABLES */
:root {
  --primary: #1E3A5F;
  --secondary: #2D5A7B;
  --accent: #E8B339;
  --neutral-light: #F7F9FB;
  --neutral-dark: #1F2937;
  --font-heading: 'Libre Baskerville', serif;
  --font-body: 'Nunito', sans-serif;
  --nav-height: 90px;
  --nav-scrolled-height: 70px;
  --easing: cubic-bezier(0.65, 0, 0.35, 1);
}

/* BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
}

/* NAVIGATION CONTAINER */
.nav-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--primary);
  color: #ffffff;
  z-index: 1000;
  transition: all 0.4s var(--easing);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
}

.nav-header.is-scrolled {
  height: var(--nav-scrolled-height);
  background-color: rgba(30, 58, 95, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

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

/* BRANDING */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  z-index: 1002;
}

.brand-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.nav-brand:hover .brand-icon {
  transform: rotate(-10deg);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-highlight {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 400;
  margin: 0 2px;
}

/* DESKTOP MENU */
.nav-desktop {
  display: none;
  margin-left: auto;
  margin-right: 40px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s var(--easing);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

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

/* ACTIONS AREA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1002;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.nav-phone:hover {
  opacity: 0.8;
}

@media (min-width: 1150px) {
  .nav-phone {
    display: flex;
  }
}

.btn-nav {
  background-color: var(--accent);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.btn-nav:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* MOBILE TOGGLE */
.nav-toggle {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  z-index: 1003;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.hamburger-box {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1), background-color 0s linear 0.1s;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Active Hamburger State */
.nav-toggle[aria-expanded="true"] .hamburger-inner {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--primary);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s var(--easing);
}

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

.mobile-menu-inner {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.mobile-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.mobile-item {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--easing);
}

.mobile-menu.is-open .mobile-item {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for mobile items */
.mobile-menu.is-open .mobile-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-item:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-item:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.is-open .mobile-item:nth-child(7) { transition-delay: 0.4s; }

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

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

.mobile-cta {
  color: var(--accent);
  font-style: italic;
}

.mobile-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}

.mobile-menu.is-open .mobile-footer {
  opacity: 1;
}

.mobile-contact-label {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.mobile-phone {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-decoration: none;
}

/* hero Section */
/* HERO SECTION - REFINED PROFESSIONAL */
.hero {
  position: relative;
  background-color: #1E3A5F;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Background Decorative Shape */
.hero__bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, rgba(45, 90, 123, 0.4) 0%, rgba(30, 58, 95, 0) 100%);
  border-radius: 40px;
  transform: skewX(-12deg);
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Typography & Content */
.hero__eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8B339;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.hero__title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.text-accent {
  color: #E8B339;
  display: block;
  margin-top: 8px;
}

.hero__lead {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #F7F9FB;
  margin-bottom: 40px;
  max-width: 540px;
  opacity: 0.9;
}

/* Actions / Buttons */
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background-color: #E8B339;
  color: #1E3A5F;
  border: 2px solid #E8B339;
}

.btn--primary:hover {
  background-color: #dba528;
  border-color: #dba528;
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Feature List */
.hero__features {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #F3F4F6;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #2D5A7B;
  border-radius: 50%;
  font-size: 12px;
  color: #E8B339;
}

/* Visual Side */
.hero__visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: visible;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Floating Badge */
.hero__badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #ffffff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  border-left: 4px solid #E8B339;
}

.badge-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1E3A5F;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Decorative Pattern */
.hero__pattern {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(232, 179, 57, 0.3);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

.photo-credits {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

.photo-credits a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}

.photo-credits a:hover {
  color: #fff;
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.2s;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
    text-align: center;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__lead {
    margin: 0 auto 32px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__features {
    justify-content: center;
  }

  .image-wrapper {
    aspect-ratio: 16/9;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__badge {
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    white-space: nowrap;
    text-align: left;
  }

  .badge-number {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }

  .image-wrapper {
    aspect-ratio: 1/1;
  }
  
  .hero__badge {
    width: 90%;
    justify-content: center;
  }
}

/* about Section */
/* SECTION BASE */
.about-section {
  position: relative;
  padding: 120px 0;
  background-color: #F7F9FB;
  overflow: hidden;
}

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

/* LAYOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: center;
}

.about-content {
  grid-column: 1 / 7;
  position: relative;
  z-index: 2;
}

.about-visual {
  grid-column: 7 / 13;
  position: relative;
  padding-left: 40px;
}

/* TYPOGRAPHY & CONTENT */
.section-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-tag .line {
  width: 40px;
  height: 2px;
  background-color: #E8B339;
}

.section-tag .text {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2D5A7B;
  font-size: 0.875rem;
}

.about-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: #1E3A5F;
  margin-bottom: 32px;
}

.about-title .highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.about-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: -4px;
  right: -4px;
  height: 12px;
  background-color: rgba(232, 179, 57, 0.3);
  z-index: -1;
  transform: skewX(-10deg);
}

.about-body {
  font-family: 'Nunito', sans-serif;
  color: #4B5563;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-body .lead {
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 16px;
}

/* FEATURE LIST */
.key-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  border-top: 1px solid rgba(45, 90, 123, 0.1);
  padding-top: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: #E8B339;
  font-weight: 700;
}

.feature-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: #1E3A5F;
  font-size: 0.875rem;
}

/* BUTTON */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #1E3A5F;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2D5A7B;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30, 58, 95, 0.15);
}

/* VISUAL COMPOSITION */
.image-composition {
  position: relative;
  z-index: 1;
}

.image-backdrop {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  background-color: #E8B339;
  z-index: -1;
  border-radius: 2px;
}

.image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* Duotone effect to make soccer image abstract/brand-aligned */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(30, 58, 95, 0.6), rgba(30, 58, 95, 0.2));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.image-composition:hover img {
  transform: scale(1.05);
}

/* FLOATING CARD */
.floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #FFFFFF;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #E8B339;
  animation: float 4s ease-in-out infinite;
}

.card-icon {
  font-size: 2rem;
  background: #F7F9FB;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6B7280;
  font-weight: 700;
}

.card-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E3A5F;
  font-family: 'Libre Baskerville', serif;
}

.photo-credits {
  font-size: 0.7rem;
  color: #9CA3AF;
  margin-top: 40px;
  text-align: right;
}

.photo-credits a {
  color: #6B7280;
  text-decoration: underline;
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.reveal-image.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-content,
  .about-visual {
    grid-column: 1 / -1;
  }

  .about-visual {
    padding-left: 0;
    padding-right: 20px;
    margin-top: 20px;
  }

  .about-title {
    font-size: 2.25rem;
  }

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

@media (max-width: 640px) {
  .about-section {
    padding: 80px 0;
  }

  .key-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .floating-card {
    left: 10px;
    bottom: -20px;
    right: auto;
  }
}

/* services Section */
/* SERVICES SECTION - Dark Technical Theme */
.services-section {
  position: relative;
  background-color: var(--color-primary, #1E3A5F);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle background pattern */
.services-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

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

/* Header Typography */
.services-header {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.services-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.text-accent {
  color: var(--color-accent, #E8B339);
  font-style: italic;
}

.services-intro {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* GRID LAYOUT: 2-Column Wide Cards */
.services-grid {
  display: grid;
  /* Explicit 2 columns for tablet/desktop */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* CARD DESIGN */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  gap: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background-color: var(--color-accent, #E8B339);
  transition: height 0.4s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  height: 100%;
}

/* Icon Styling */
.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent, #E8B339);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--color-accent, #E8B339);
  color: var(--color-primary, #1E3A5F);
  transform: scale(1.1);
}

/* Content Styling */
.service-content {
  flex: 1;
}

.service-number {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.service-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.service-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* CTA Area */
.services-cta {
  text-align: center;
  margin-top: 60px;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--color-accent, #E8B339);
  color: var(--color-primary, #1E3A5F);
}

.btn-primary:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 100ms; }
.service-card:nth-child(2) { transition-delay: 200ms; }
.service-card:nth-child(3) { transition-delay: 300ms; }
.service-card:nth-child(4) { transition-delay: 400ms; }
.service-card:nth-child(5) { transition-delay: 500ms; }
.service-card:nth-child(6) { transition-delay: 600ms; }

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr; /* Stack on mobile/tablet */
    gap: 20px;
  }
  
  .service-card {
    padding: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .services-title {
    font-size: 2rem;
  }
}

/* features Section */
/* Features Bento Grid Section */
.features-bento {
  background-color: #F7F9FB;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric background decoration */
.features-bento::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* The Grid Layout */
.bento-grid {
  display: grid;
  /* 12 column grid for maximum control */
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

/* Grid Items Placement */
.bento-item {
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 4px;
  padding: 48px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.bento-lead {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0 48px 0 0;
}

.feature-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* The bottom wide card */
.feature-card.wide {
  grid-column: 7 / span 6;
  grid-row: 2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .bento-lead { grid-column: 1 / span 12; grid-row: auto; padding: 0 0 48px 0; }
  .feature-card { grid-column: span 6; }
  .feature-card.wide { grid-column: span 12; grid-row: auto; }
  .bento-grid { grid-auto-rows: auto; }
}

@media (max-width: 640px) {
  .feature-card { grid-column: span 12; }
}

/* Content Styling */
.eyebrow {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E8B339;
  margin-bottom: 24px;
}

.bento-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  line-height: 1.1;
  color: #1E3A5F;
  margin-bottom: 32px;
}

.bento-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Link/Button Styling */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: #1E3A5F;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.btn-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #E8B339;
  transition: width 0.3s ease;
}

.btn-text:hover::after {
  width: 100%;
}

.btn-text svg {
  transition: transform 0.3s ease;
}

.btn-text:hover svg {
  transform: translateX(4px);
}

/* Feature Cards Styling */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(30, 58, 95, 0.1);
  border-color: rgba(232, 179, 57, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #E8B339;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.icon-box {
  width: 56px;
  height: 56px;
  background: #F7F9FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #1E3A5F;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  background: #1E3A5F;
  color: #ffffff;
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: #1E3A5F;
  margin-bottom: 16px;
}

.feature-card p {
  font-family: 'Nunito', sans-serif;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* Wide card internal layout */
.feature-card.wide .card-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.feature-card.wide .icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .bento-heading {
    font-size: 2.25rem;
  }
  .feature-card.wide .card-row {
    flex-direction: column;
    gap: 24px;
  }
}

/* Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
  .bento-item {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
  }
  
  .bento-lead { animation-delay: 0.1s; }
  .feature-card:nth-of-type(2) { animation-delay: 0.3s; }
  .feature-card:nth-of-type(3) { animation-delay: 0.4s; }
  .feature-card:nth-of-type(4) { animation-delay: 0.5s; }

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

/* portfolio Section */
/* PORTFOLIO SECTION STYLES */
.portfolio-section {
  position: relative;
  background-color: #F7F9FB; /* Neutral Light */
  padding: 100px 0;
  overflow: hidden;
}

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

/* Header */
.portfolio-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: #E8B339; /* Accent */
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #1E3A5F; /* Primary */
  margin-bottom: 24px;
}

.section-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.6;
}

/* Grid Layout - Mosaic Style */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

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

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 280px);
    height: auto;
  }

  /* Mosaic Logic */
  .item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  
  /* Explicit placement for the rest to ensure layout integrity */
  .portfolio-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  
  .portfolio-item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
  
  .portfolio-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  
  .portfolio-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  
  .portfolio-item:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
  }
}

/* Item Styles */
.portfolio-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background-color: #E5E7EB;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Aspect ratios for mobile/tablet where grid is simpler */
@media (max-width: 1023px) {
  .portfolio-item {
    aspect-ratio: 4/3;
  }
  .item-large {
    aspect-ratio: 16/9;
  }
}

.img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .img-wrapper img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 95, 0.85); /* Primary with opacity */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 24px;
  text-align: center;
  cursor: pointer;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.zoom-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8B339;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transform: translateY(10px);
  transition: transform 0.4s ease, background 0.2s ease;
}

.portfolio-item:hover .zoom-btn {
  transform: translateY(0);
}

.zoom-btn:hover {
  background: #fff;
  color: #E8B339;
}

.caption {
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}

.portfolio-item:hover .caption {
  transform: translateY(0);
}

.caption h3 {
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.caption p {
  color: #E5E7EB;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer/Credits */
.portfolio-footer {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background-color: #1E3A5F;
  color: #fff;
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid #1E3A5F;
}

.btn-primary:hover {
  background-color: transparent;
  color: #1E3A5F;
}

.photo-credits {
  margin-top: 32px;
  font-size: 0.75rem;
  color: #9CA3AF;
  font-family: 'Nunito', sans-serif;
}

.photo-credits a {
  color: #6B7280;
  text-decoration: underline;
  transition: color 0.2s;
}

.photo-credits a:hover {
  color: #1E3A5F;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
  animation: lightboxFadeIn 0.3s ease-out;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #E8B339;
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.portfolio-item:nth-child(1) { transition-delay: 0.1s; }
.portfolio-item:nth-child(2) { transition-delay: 0.2s; }
.portfolio-item:nth-child(3) { transition-delay: 0.3s; }
.portfolio-item:nth-child(4) { transition-delay: 0.1s; }
.portfolio-item:nth-child(5) { transition-delay: 0.2s; }
.portfolio-item:nth-child(6) { transition-delay: 0.3s; }

/* team Section */
/* TEAM SECTION - Clean, Professional, Trust-Oriented */
:root {
  --team-bg: #FFFFFF;
  --team-text: #1F2937;
  --team-accent: #E8B339;
  --team-primary: #1E3A5F;
  --team-gap: 40px;
}

.team-section {
  background-color: var(--team-bg);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern background element */
.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, #F7F9FB 0%, rgba(247, 249, 251, 0) 100%);
  z-index: 0;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Styling */
.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--team-accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.75rem;
  line-height: 1.2;
  color: var(--team-primary);
  margin-bottom: 24px;
}

.section-lead {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4B5563;
}

/* GRID LAYOUT - Strictly defined columns */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--team-gap);
  margin-bottom: 60px;
}

/* CARD STYLING */
.team-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

/* Image Wrapper with specific aspect ratio */
.card-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background-color: #E5E7EB;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

/* Hover effect: Subtle zoom + slight desaturation lift */
.team-card:hover .card-image {
  transform: scale(1.05);
  filter: contrast(1.05);
}

/* Overlay for Experience Badge */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--team-primary);
  color: white;
  padding: 8px 16px;
  border-top-right-radius: 4px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-card:hover .card-overlay {
  transform: translateY(0);
}

.card-overlay-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

/* Content Styling */
.card-content {
  padding: 0 8px;
}

.member-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.75rem;
  color: var(--team-primary);
  margin-bottom: 4px;
}

.member-role {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--team-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.member-divider {
  width: 40px;
  height: 2px;
  background-color: #E5E7EB;
  margin-bottom: 16px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.team-card:hover .member-divider {
  width: 60px;
  background-color: var(--team-accent);
}

.member-bio {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #6B7280;
  max-width: 90%;
}

/* SPECIAL FEATURE CARD (4th item) */
.feature-card .card-image-wrapper {
  aspect-ratio: 4/5;
}

.feature-card .card-image {
  filter: brightness(0.7);
}

.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: rgba(30, 58, 95, 0.6);
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Show overlay by default on the feature card, or on hover? 
   Design choice: Always visible to break grid monotony or visible on hover? 
   Let's make it visible but transparent-ish, fully opaque on hover. 
*/
.feature-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.9), rgba(30, 58, 95, 0.4));
}

.feature-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #FFF;
}

.feature-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #E5E7EB;
  margin-bottom: 24px;
}

.feature-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--team-accent);
  color: var(--team-primary);
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.feature-link:hover {
  background-color: #FFFFFF;
}

/* CREDITS */
.credits-container {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
}

.photo-credits {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  color: #9CA3AF;
}

.photo-credits a {
  color: #6B7280;
  text-decoration: underline;
  transition: color 0.2s;
}

.photo-credits a:hover {
  color: var(--team-primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
  
  .card-image-wrapper {
    aspect-ratio: 16/10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .card-image,
  .card-overlay,
  .member-divider {
    transition: none !important;
    transform: none !important;
  }
}

/* testimonials Section */
/* AWARD-WINNING TESTIMONIALS STYLE */
.testimonials-section {
  background-color: #1E3A5F; /* Primary Dark Blue */
  color: #F7F9FB;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Background Decor */
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  right: 5%;
  font-family: 'Libre Baskerville', serif;
  font-size: 400px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .testimonials-container {
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
  }
}

/* Left Column: Intro */
.testimonials-intro {
  position: relative;
}

@media (min-width: 992px) {
  .testimonials-intro {
    position: sticky;
    top: 120px;
  }
}

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: #E8B339; /* Accent Gold */
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.section-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #E8B339;
  border-color: #E8B339;
  color: #1E3A5F;
  transform: translateY(-2px);
}

.slider-indicators {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
}

.slider-indicators .separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

/* Right Column: Cards Track */
.testimonials-track-wrapper {
  width: 100%;
  overflow: hidden;
  /* Gradient fade on the right edge for indication of more content */
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.testimonial-cards-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px; /* Space for shadow */
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-cards-track::-webkit-scrollbar {
  display: none;
}

/* Card Design */
.review-card {
  min-width: 100%;
  scroll-snap-align: start;
  background: #fff;
  color: #1F2937;
  padding: 48px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.95);
}

@media (min-width: 768px) {
  .review-card {
    min-width: 600px;
  }
}

/* Active state (handled via JS intersection observer) */
.review-card.in-view {
  opacity: 1;
  transform: scale(1);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1E3A5F, #2D5A7B);
}

.stars {
  color: #E8B339;
  font-size: 1.25rem;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.review-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #1E3A5F;
  margin-bottom: 20px;
  font-style: italic;
}

.review-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 32px;
}

.card-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-weight: 700;
  color: #1F2937;
  font-size: 1rem;
}

.client-location {
  font-size: 0.875rem;
  color: #6B7280;
}

.service-tag {
  background: #F3F4F6;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1E3A5F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Accessibility - reduced motion */
@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .testimonial-cards-track {
    scroll-behavior: auto;
  }
}

/* cta Section */
/* 
 * PATTERN: Impact Focus CTA
 * CONCEPT: Deep immersion with high-contrast hierarchy
 * TONE: Urgent, reliable, premium
 */

:root {
  --cta-bg-dark: #0f1d30;
  --cta-bg-light: #1E3A5F;
  --cta-accent: #E8B339;
  --cta-text-primary: #ffffff;
  --cta-text-secondary: #cbd5e1;
}

.cta-section {
  position: relative;
  background-color: var(--cta-bg-dark);
  color: var(--cta-text-primary);
  padding: 100px 0;
  overflow: hidden;
  /* Create depth */
  box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

/* Full-bleed Background Elements */
.cta-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--cta-bg-light) 0%, var(--cta-bg-dark) 70%);
  opacity: 0.8;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.cta-flow-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* Container & Layout */
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #4ade80;
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: rgba(74, 222, 128, 0.4);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Typography */
.cta-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.cta-heading-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cta-accent);
  opacity: 0.9;
}

.cta-heading-main {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(180deg, #FFFFFF 20%, #E0E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--cta-text-secondary);
  max-width: 600px;
}

/* Buttons */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 8px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--cta-accent);
  color: #0f1d30;
  border: 2px solid var(--cta-accent);
  box-shadow: 0 4px 15px rgba(232, 179, 57, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 179, 57, 0.5);
  background-color: #f0c050;
  border-color: #f0c050;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.05);
  border-color: #fff;
}

/* Trust Indicators */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cta-text-secondary);
  font-family: 'Nunito', sans-serif;
}

.trust-item svg {
  color: var(--cta-accent);
  opacity: 0.8;
}

/* Fade In Animation Setup */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.status-badge { transition-delay: 0.1s; }
.cta-heading { transition-delay: 0.2s; }
.cta-description { transition-delay: 0.3s; }
.cta-actions { transition-delay: 0.4s; }
.cta-trust { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
  .cta-heading-main {
    font-size: 2.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .status-dot::after {
    animation: none;
  }
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* footer Section */
/* AWARD-WINNING FOOTER STYLES */
.footer {
  position: relative;
  background-color: #1E3A5F; /* Primary Brand Color */
  color: #F7F9FB;
  padding: 100px 0 40px;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
}

/* Subtle Background Textures for Depth */
.footer__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
                    radial-gradient(circle at 80% 100%, rgba(232, 179, 57, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.footer__glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(45, 90, 123, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP SECTION: BRAND & CTA */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 1.125rem;
  color: #E8B339; /* Accent Color */
  margin: 0;
  font-weight: 600;
  opacity: 0.9;
}

.footer__action {
  text-align: right;
}

.footer__emergency-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aebecd;
  margin-bottom: 4px;
}

.footer__phone-link {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer__phone-link:hover {
  color: #E8B339;
}

/* DIVIDER */
.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
  margin-bottom: 60px;
}

/* MAIN GRID LAYOUT */
.footer__main-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col--info {
  grid-column: span 4;
  padding-right: 20px;
}

.footer__col--nav {
  grid-column: span 2;
}

.footer__col--contact {
  grid-column: span 4;
}

.footer__heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

/* Elegant underline for headings */
.footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 24px;
  height: 2px;
  background-color: #E8B339;
}

.footer__description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 32px;
}

/* NAVIGATION LINKS */
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-list li {
  margin-bottom: 14px;
}

.footer__link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer__link:hover {
  color: #E8B339;
  transform: translateX(4px);
}

/* SOCIAL ICONS */
.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: #fff;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: #E8B339;
  color: #1E3A5F;
  transform: translateY(-2px);
}

/* CONTACT DETAILS */
.footer__address {
  font-style: normal;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer__icon {
  font-size: 1.2rem;
  line-height: 1;
  filter: grayscale(100%);
  opacity: 0.7;
}

/* BOTTOM BAR */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer__to-top {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 8px;
}

.footer__to-top:hover {
  color: #E8B339;
}

.footer__arrow-up {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer__to-top:hover .footer__arrow-up {
  transform: translateY(-4px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer__main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 24px;
  }

  .footer__col--info,
  .footer__col--contact {
    grid-column: span 1;
  }

  .footer__col--nav {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer__action {
    text-align: left;
  }

  .footer__main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__col--info,
  .footer__col--contact,
  .footer__col--nav {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: flex-start;
  }
}

/* FIXES */
/* Fix hero overflow to allow badge to show */
.hero {
  overflow: visible !important;
}

.hero .hero__visual {
  z-index: 1;
  position: relative;
}

.hero .hero__visual .image-wrapper {
  overflow: visible !important;
  z-index: 2;
  position: relative;
}

.hero .hero__visual .image-wrapper .hero__badge {
  position: absolute;
  z-index: 100;
  bottom: 40px;
  left: -30px;
}

/* Fix btn-secondary text color in CTA */
.cta-section .cta-actions .btn-secondary .btn-text {
  color: #ffffff !important;
}

.btn-secondary .btn-text {
  color: #ffffff !important;
}