/* 
 * Code Khalaq - Main Stylesheet
 * ================================
 * Brand colors and styles based on Figma design
 */

/* CSS Variables - Code Khalaq Brand */
:root {
  /* Brand Colors from Figma */
  --color-primary: #1d3e59;
  --color-primary-dark: #1a3244;
  --color-primary-light: #2a4d68;
  --color-primary-darker: #131e27;

  --color-accent: #3b79a3;
  --color-accent-dark: #2d6389;
  --color-accent-light: #4a8bb8;

  --color-secondary: #203d54;
  --color-secondary-dark: #1a3244;
  --color-secondary-light: #2a4d68;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;

  /* Status Colors */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b79a3;

  /* Typography - Poppins from Figma */
  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;
  --font-heading: "Poppins", var(--font-sans);
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-header: 0 2px 10px rgba(32, 61, 84, 0.08);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-white);
}

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

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.875rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Form Elements */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.form-file {
  width: 100%;
  padding: var(--spacing-sm);
  font-size: 0.875rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: var(--spacing-xs);
}
.mt-2 {
  margin-top: var(--spacing-sm);
}
.mt-3 {
  margin-top: var(--spacing-md);
}
.mt-4 {
  margin-top: var(--spacing-lg);
}
.mt-5 {
  margin-top: var(--spacing-xl);
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}
.mb-2 {
  margin-bottom: var(--spacing-sm);
}
.mb-3 {
  margin-bottom: var(--spacing-md);
}
.mb-4 {
  margin-bottom: var(--spacing-lg);
}
.mb-5 {
  margin-bottom: var(--spacing-xl);
}

/* Section Spacing */
.section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  color: var(--color-gray-600);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease,
    backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 4px 30px rgba(32, 61, 84, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Glassy navbar for About page */
/* Opaque white header for About and Careers pages */
.page-about .header,
.page-careers .header {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-about .header.scrolled,
.page-careers .header.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

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

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

/* Dropdown Arrow */
.nav-link.has-dropdown::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  transition: transform var(--transition-fast);
}

.nav-link.has-dropdown:hover::after {
  transform: rotate(180deg);
}

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 150px;
  height: 40px;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Hide mobile CTA on desktop */
.nav-item-cta {
  display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle .hamburger {
  position: relative;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .hamburger::before {
  top: -7px;
}

.nav-toggle .hamburger::after {
  top: 7px;
}

/* Mobile Toggle Active State */
.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-cta {
    min-width: 130px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(32, 61, 84, 0.1);
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
  }

  /* On mobile, when menu is open, make header opaque */
  .header.menu-open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .nav-item:last-child {
    border-bottom: none;
    margin-top: 16px;
  }

  .nav-link {
    padding: 16px 0;
    font-size: 16px;
  }

  /* Hide desktop CTA button on mobile */
  .nav-cta-desktop {
    display: none !important;
  }

  /* Show CTA inside mobile menu */
  .nav-item-cta {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-100);
  }

  .nav-link-cta {
    display: block;
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all var(--transition-fast);
  }

  .nav-link-cta:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white) !important;
  }
}

/* No body padding - hero handles the offset */
body {
  padding-top: 0;
}

/* Page Header (for pages like Portfolio) */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
  text-align: center;
  z-index: 1;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 16px;
  }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 180px 0 120px; /* Extra top padding to account for navbar */
  background-image: url("../images/hero/Hero-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1; /* Ensure hero stays behind fixed header */
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero Content (Left Side) */
.hero-content {
  max-width: 586px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  color: #131e27;
  margin-bottom: 20px;
}

.hero-title .text-accent {
  color: #285371;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #727272;
  margin-bottom: 20px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1d3e59;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 150px;
  height: 40px;
  transition: all var(--transition-fast);
}

.btn-hero:hover {
  background-color: #162f45;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 62, 89, 0.3);
}

/* Hero Cards (Right Side) */
.hero-cards {
  display: grid;
  grid-template-columns: 305px 305px;
  grid-template-rows: 280px 100px;
  gap: 20px;
}

/* Image Card */
.hero-image-card {
  width: 305px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 121, 163, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Stats Card */
.hero-stats-card {
  width: 305px;
  height: 280px;
  background-color: #131e27;
  border-radius: 20px;
  padding: 84px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.stats-number {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  color: #fafafa;
}

.stats-text {
  font-family: "Outfit", var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #fafafa;
}

/* Specialization Banner */
.hero-banner {
  grid-column: 1 / -1;
  width: 100%;
  height: 100px;
  background-color: #1d3e59;
  border-radius: 20px;
  padding: 21px 27px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-icon {
  width: 36.5px;
  height: 43.4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-icon-img {
  width: 36.5px;
  height: 43.4px;
  object-fit: contain;
}

.banner-text {
  font-family: "Outfit", var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: #fafafa;
  margin: 0;
}

/* Hero Responsive */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-cards {
    grid-template-columns: 260px 260px;
    grid-template-rows: 240px 90px;
  }

  .hero-image-card,
  .hero-stats-card {
    width: 260px;
    height: 240px;
  }

  .hero-stats-card {
    padding: 60px 16px;
  }

  .hero-banner {
    height: 90px;
  }

  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 140px 0 80px;
  }

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

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-cards {
    justify-content: center;
    max-width: 630px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .hero-image-card,
  .hero-stats-card {
    width: 100%;
    height: 220px;
  }

  .hero-stats-card {
    padding: 40px 20px;
  }

  .stats-number {
    font-size: 40px;
  }

  .stats-text {
    font-size: 16px;
  }

  .hero-banner {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .banner-text {
    font-size: 16px;
  }
}

/* ============================================
   SERVICES SECTION (New Figma Design)
   ============================================ */
.services-section {
  background-color: #e3e4e4;
}

/* Services Header */
.services-header {
  text-align: center;
  padding: 50px 0 30px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.05;
  color: #1d3d54;
  margin-bottom: 20px;
}

.services-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #727272;
  margin: 0;
}

/* Services Content */
.services-content {
  padding: 0 0 50px;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Service Tabs (Left Side) */
.service-tabs {
  flex: 0 0 515px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-tab {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.service-tab:hover {
  background-color: rgba(29, 62, 89, 0.05);
}

.service-tab.active {
  background-color: #1d3e59;
}

.service-tab .tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(32, 61, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-tab.active .tab-icon {
  background-color: rgba(250, 250, 250, 0.1);
}

.service-tab .tab-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(23%) saturate(1058%)
    hue-rotate(168deg) brightness(92%) contrast(91%);
}

.service-tab.active .tab-icon img {
  filter: brightness(0) invert(1);
}

.service-tab .tab-content {
  flex: 1;
}

.service-tab .tab-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #1d3e59;
  margin: 0 0 10px;
}

.service-tab.active .tab-title {
  color: #fafafa;
}

.service-tab .tab-description {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #727272;
  margin: 0;
}

.service-tab.active .tab-description {
  color: #fafafa;
}

/* Service Panels Container */
.service-panels {
  flex: 1;
}

.service-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-panel.active {
  display: block;
  opacity: 1;
}

/* Service Cards Grid (Right Side) */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  grid-template-rows: auto;
  gap: 16px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 140px;
}

.service-card:hover {
  background-color: #ffffff;
  border-color: #3b79a3;
  box-shadow: 0 8px 24px rgba(59, 121, 163, 0.15);
  transform: translateY(-4px);
}

.service-card:last-child {
  grid-column: 1;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e3e8ef 100%);
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon-wrapper {
  background: linear-gradient(135deg, #3b79a3 0%, #285371 100%);
  transform: scale(1.05);
}

.card-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.service-card:hover .card-icon img {
  filter: brightness(0) invert(1);
}

.service-card .card-content {
  flex: 1;
  background-color: transparent;
}

.service-card .card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #1d3e59;
  margin: 0 0 6px;
  transition: color 0.3s ease;
}

.service-card:hover .card-title {
  color: #3b79a3;
}

.service-card .card-description {
  font-family: var(--font-sans);
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-description,
.service-card.show-description .card-description {
  max-height: 200px;
  opacity: 1;
  margin-top: 6px;
}

/* Service Cards Grid Variations */
.service-cards-grid-6 {
  grid-template-columns: repeat(2, 320px);
  grid-template-rows: auto;
}

.service-cards-grid-6 .service-card:last-child {
  grid-column: 2;
}

.service-cards-grid-3 {
  grid-template-columns: repeat(2, 320px);
  grid-template-rows: auto;
}

.service-cards-grid-3 .service-card:last-child {
  grid-column: 1;
}

.service-cards-grid-2 {
  grid-template-columns: repeat(2, 320px);
  grid-template-rows: auto;
}

.service-cards-grid-2 .service-card:last-child {
  grid-column: 2;
}

/* Services Responsive */
@media (max-width: 1400px) {
  .service-cards-grid,
  .service-cards-grid-6,
  .service-cards-grid-3,
  .service-cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .service-cards-grid-6 .service-card:last-child,
  .service-cards-grid-3 .service-card:last-child,
  .service-cards-grid-2 .service-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1200px) {
  .services-layout {
    flex-direction: column;
    gap: 40px;
  }

  .service-tabs {
    flex: 1;
    width: 100%;
  }

  .service-cards-grid {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services-header {
    padding: 40px 0 30px;
  }

  .services-title {
    font-size: 28px;
  }

  .services-subtitle {
    font-size: 16px;
  }

  .service-tab {
    padding: 16px 20px;
  }

  .service-tab .tab-title {
    font-size: 18px;
  }

  .service-tab .tab-description {
    font-size: 14px;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .service-tab {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================
   IMPACT STATS SECTION
   ============================================ */
/* ==========================
   Impact Stats Section
   ========================== */

.impact-stats-section {
  position: relative;
  background: var(--color-white);
  padding: 100px 0;
  overflow: hidden;
}

.impact-stats-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.impact-stats-header .section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.impact-stats-header .section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 16px;
}

.impact-stats-header .section-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0 auto;
  max-width: 600px;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-stat-card {
  position: relative;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition-slow);
}

.impact-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(29, 62, 89, 0.12);
}

.impact-stat-card .stat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-slow);
}

.impact-stat-card .stat-icon svg {
  stroke: var(--color-accent);
  fill: none;
  transition: all var(--transition-slow);
}

.impact-stat-card .stat-icon svg * {
  stroke: inherit;
  fill: none;
}

.impact-stat-card:hover .stat-icon {
  background: var(--color-primary);
  transform: scale(1.05);
}

.impact-stat-card:hover .stat-icon svg {
  stroke: #ffffff !important;
  fill: none !important;
}

.impact-stat-card:hover .stat-icon svg * {
  stroke: #ffffff !important;
  fill: none !important;
}

.impact-stat-card .stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
  gap: 4px;
}

.impact-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.impact-stat-card:hover .stat-number {
  color: var(--color-accent);
}

.impact-stat-card .stat-suffix {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  transition: color var(--transition-base);
}

.impact-stat-card:hover .stat-suffix {
  color: var(--color-accent);
}

.impact-stat-card .stat-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-gray-600);
  margin: 0;
  transition: color var(--transition-base);
}

.impact-stat-card:hover .stat-label {
  color: var(--color-gray-700);
}

/* Impact Stats Responsive */
@media (max-width: 1024px) {
  .impact-stats-section {
    padding: 80px 0;
  }

  .impact-stats-header .section-title {
    font-size: 36px;
  }

  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .impact-stat-card .stat-number {
    font-size: 48px;
  }

  .impact-stat-card .stat-suffix {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .impact-stats-section {
    padding: 60px 0;
  }

  .impact-stats-header {
    margin-bottom: 48px;
  }

  .impact-stats-header .section-title {
    font-size: 32px;
  }

  .impact-stats-header .section-subtitle {
    font-size: 16px;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .impact-stat-card {
    padding: 36px 24px;
  }

  .impact-stat-card .stat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .impact-stat-card .stat-number {
    font-size: 44px;
  }

  .impact-stat-card .stat-suffix {
    font-size: 28px;
  }

  .impact-stat-card .stat-label {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .impact-stats-section {
    padding: 50px 0;
  }

  .impact-stats-header .section-title {
    font-size: 28px;
  }

  .impact-stats-header .section-subtitle {
    font-size: 15px;
  }

  .impact-stat-card {
    padding: 32px 20px;
  }

  .impact-stat-card .stat-icon {
    width: 56px;
    height: 56px;
  }

  .impact-stat-card .stat-number {
    font-size: 40px;
  }

  .impact-stat-card .stat-suffix {
    font-size: 26px;
  }

  .impact-stat-card .stat-label {
    font-size: 14px;
  }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-section {
  background: var(--color-gray-50);
}

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

.feature-item {
  text-align: center;
  padding: 24px;
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #131e27;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9375rem;
  color: #727272;
  margin: 0;
}

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

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1d3e59 0%, #131e27 100%);
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-content .btn {
  background: var(--color-white);
  color: #1d3e59;
  font-weight: 600;
  padding: 14px 32px;
}

.cta-content .btn:hover {
  background: var(--color-gray-100);
  color: #131e27;
}

/* ============================================
   DISCOVER SECTION
   ============================================ */
.discover-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.discover-grid {
  display: flex;
  align-items: center;
  gap: 120px;
}

/* Left Content */
.discover-content {
  flex: 0 0 517px;
  max-width: 517px;
}

.discover-title {
  font-family: "Montserrat", var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.065;
  color: #1d3e59;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.discover-text {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #727272;
  margin: 0;
}

/* Right Content - Stats Grid */
.discover-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.discover-stats-row {
  display: grid;
  grid-template-columns: 270px 270px;
  gap: 0;
}

/* Images */
.discover-image {
  width: 270px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
}

.discover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stat Item */
.discover-stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.discover-stat-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.375;
  color: #1d3e59;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.32;
  color: #727272;
}

/* Responsive */
@media (max-width: 1200px) {
  .discover-grid {
    gap: 60px;
  }

  .discover-content {
    flex: 0 0 400px;
    max-width: 400px;
  }

  .discover-stats-row {
    grid-template-columns: 220px 220px;
  }

  .discover-image {
    width: 220px;
    height: 150px;
  }

  .discover-stat-item {
    padding: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .discover-grid {
    flex-direction: column;
    gap: 48px;
  }

  .discover-content {
    flex: 1;
    max-width: 100%;
    text-align: center;
  }

  .discover-stats {
    width: 100%;
    max-width: 540px;
  }
}

@media (max-width: 640px) {
  .discover-title {
    font-size: 28px;
  }

  .discover-text {
    font-size: 16px;
  }

  .discover-stats-row {
    grid-template-columns: 1fr;
  }

  .discover-image {
    width: 100%;
    height: 180px;
  }

  .discover-stat-item {
    padding: 24px;
  }
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 125px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 139px;
  height: 80px;
  padding: 15px;
}

.client-logo img {
  display: block;
  width: 128px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1200px) {
  .clients-logos {
    gap: 60px;
  }
}

@media (max-width: 1024px) {
  .clients-logos {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .clients-logos {
    gap: 30px;
  }

  .client-logo {
    width: 140px;
    height: 70px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .clients-logos {
    gap: 20px;
    justify-content: center;
  }

  .client-logo {
    width: 120px;
    height: 60px;
    padding: 10px;
  }
}

/* ============================================
   SUCCESS STORY SECTION
   ============================================ */
.success-story-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.success-story-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Side - Image */
.success-story-image {
  flex: 0 0 630px;
  max-width: 630px;
  border-radius: 20px;
  overflow: hidden;
}

.success-story-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Right Side - Content */
.success-story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 83px;
}

.success-story-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.success-story-label {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #727272;
  opacity: 0.6;
  text-transform: capitalize;
}

.success-story-title {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.success-story-title .title-dark {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #131e27;
}

.success-story-title .title-gray {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #727272;
}

/* Success Story Card */
.success-story-card {
  display: flex;
  gap: 6px;
  align-items: stretch;
}

.card-gradient-icon {
  width: 120px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3b79a3 0%, #203d54 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-gradient-icon img {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.card-content {
  flex: 1;
  max-width: 504px;
  background-color: #e3e4e4;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-stat {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -0.33px;
  color: #131e27;
  margin: 0;
}

.card-description {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #131e27;
  margin: 0;
  max-width: 290px;
}

/* Success Story Responsive */
@media (max-width: 1200px) {
  .success-story-image {
    flex: 0 0 500px;
    max-width: 500px;
  }

  .success-story-content {
    gap: 50px;
  }

  .success-story-title .title-dark,
  .success-story-title .title-gray {
    font-size: 32px;
  }

  .card-stat {
    font-size: 24px;
  }

  .card-description {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .success-story-grid {
    flex-direction: column;
    gap: 48px;
  }

  .success-story-image {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }

  .success-story-content {
    width: 100%;
    gap: 40px;
  }

  .card-content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .success-story-section {
    padding: 60px 0;
  }

  .success-story-label {
    font-size: 16px;
  }

  .success-story-title .title-dark,
  .success-story-title .title-gray {
    font-size: 28px;
  }

  .success-story-card {
    flex-direction: column;
  }

  .card-gradient-icon {
    width: 100%;
    height: 80px;
  }

  .card-stat {
    font-size: 22px;
  }

  .card-description {
    font-size: 16px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .success-story-section {
    padding: 40px 0;
  }

  .success-story-content {
    gap: 30px;
  }

  .success-story-title .title-dark,
  .success-story-title .title-gray {
    font-size: 24px;
  }

  .card-stat {
    font-size: 20px;
  }
}

/* ============================================
   ENGAGEMENT MODELS SECTION
   ============================================ */
.engagement-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.engagement-header {
  text-align: center;
  margin-bottom: 40px;
}

.engagement-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.05;
  color: #1d3d54;
  margin: 0 0 20px;
}

.engagement-subtitle {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #727272;
  margin: 0;
}

/* Engagement Cards Grid */
.engagement-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.engagement-card {
  position: relative;
  width: 416px;
  padding-top: 39px;
}

.engagement-card-icon {
  position: absolute;
  top: 0;
  left: 25px;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.engagement-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.engagement-card-content {
  background-color: #ffffff;
  border: 1px solid rgba(199, 199, 214, 0.4);
  border-radius: 8px;
  padding: 44px 24px 24px;
  min-height: 206px;
  display: flex;
  flex-direction: column;
}

.engagement-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #203d54;
  margin: 0 0 12px;
}

.engagement-card-description {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #727272;
  margin: 0 0 auto;
  flex: 1;
}

.engagement-card-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #203d54;
  text-decoration: none;
  padding-top: 12px;
  transition: color var(--transition-fast);
}

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

.engagement-card-link svg {
  width: 14px;
  height: 14px;
}

/* Engagement Section Responsive */
@media (max-width: 1400px) {
  .engagement-cards {
    flex-wrap: wrap;
  }

  .engagement-card {
    width: calc(33.333% - 12px);
    min-width: 300px;
  }
}

@media (max-width: 1024px) {
  .engagement-card {
    width: calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .engagement-section {
    padding: 60px 0;
  }

  .engagement-title {
    font-size: 32px;
  }

  .engagement-subtitle {
    font-size: 18px;
  }

  .engagement-cards {
    flex-direction: column;
    align-items: center;
  }

  .engagement-card {
    width: 100%;
    max-width: 416px;
  }
}

@media (max-width: 480px) {
  .engagement-section {
    padding: 40px 0;
  }

  .engagement-title {
    font-size: 28px;
  }

  .engagement-subtitle {
    font-size: 16px;
  }

  .engagement-card-icon {
    width: 64px;
    height: 64px;
    left: 20px;
  }

  .engagement-card-icon img {
    width: 20px;
    height: 20px;
  }

  .engagement-card-content {
    padding: 36px 20px 20px;
  }
}

/* ============================================
   FOUR-BOX FORMULA SECTION
   ============================================ */
.four-box-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-primary);
  overflow: hidden;
}

.four-box-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/four-box-bg/four-box-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.four-box-header {
  margin-bottom: 40px;
}

.four-box-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  margin: 0 0 20px;
}

.four-box-subtitle {
  font-family: "Outfit", var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-white);
  margin: 0;
}

/* Four Box Grid */
.four-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.four-box-card {
  background-color: rgba(248, 249, 250, 0.2);
  border: 1px solid #f8f9fa;
  border-radius: 20px;
  padding: 37px 25px;
  min-height: 234px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.four-box-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.four-box-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.four-box-card-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.four-box-card-description {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0.8;
  margin: 0;
}

/* Four Box Responsive */
@media (max-width: 1024px) {
  .four-box-section {
    padding: 80px 0;
  }

  .four-box-title {
    font-size: 32px;
  }

  .four-box-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .four-box-section {
    padding: 60px 0;
  }

  .four-box-title {
    font-size: 28px;
  }

  .four-box-subtitle {
    font-size: 16px;
  }

  .four-box-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .four-box-card {
    padding: 25px 20px;
    min-height: auto;
  }

  .four-box-background {
    width: 100%;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .four-box-section {
    padding: 40px 0;
  }

  .four-box-title {
    font-size: 24px;
  }

  .four-box-card-title {
    font-size: 18px;
  }

  .four-box-card-description {
    font-size: 14px;
  }
}

/* ========================================
   Tools & Technologies Section
   ======================================== */

.tools-section {
  padding: 80px 0;
  background-color: var(--color-gray-50);
}

.tools-header {
  text-align: center;
  margin-bottom: 40px;
}

.tools-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.tools-subtitle {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  color: #727272;
  margin: 0;
  line-height: 1.5;
}

/* Main Category Tabs */
.tools-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tools-tab {
  padding: 10px 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #727272;
  background-color: rgba(114, 114, 114, 0.2);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}

.tools-tab:hover {
  background-color: rgba(114, 114, 114, 0.3);
}

.tools-tab.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Tab Content */
.tools-content {
  position: relative;
}

.tools-category {
  display: none;
  gap: 40px;
}

.tools-category.active {
  display: flex;
}

/* Sidebar */
.tools-sidebar {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tools-sidebar-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tools-sidebar-item .sidebar-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #727272;
  transition: all 0.3s ease;
}

.tools-sidebar-item .sidebar-icon svg,
.tools-sidebar-item .sidebar-icon img {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.tools-sidebar-item.active .sidebar-icon {
  color: var(--color-secondary);
}

.tools-sidebar-item.active .sidebar-icon svg,
.tools-sidebar-item.active .sidebar-icon img {
  opacity: 1;
}

.sidebar-content {
  flex: 1;
}

.sidebar-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: #727272;
  margin: 0 0 8px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.tools-sidebar-item.active .sidebar-title {
  color: var(--color-secondary);
}

.sidebar-description {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #727272;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.tools-sidebar-item.active .sidebar-description {
  color: var(--color-secondary);
}

/* Tools Panel */
.tools-panel {
  flex: 1;
  min-width: 0;
}

.tools-panel-content {
  display: none;
}

.tools-panel-content.active {
  display: block;
}

.panel-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0 0 24px 0;
  line-height: 1.6;
}

/* Tools Grid */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tool-card {
  background-color: var(--color-white);
  border: 1px solid #c7c7d6;
  border-radius: 8px;
  padding: 13px;
  min-width: 138px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.tool-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tool-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tool-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tool-icon-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-gray-100);
  border-radius: 4px;
  text-align: center;
}

.tool-name {
  font-family: "Outfit", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.5;
  padding-top: 12px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tools-category {
    flex-direction: column;
  }

  .tools-sidebar {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .tools-sidebar-item {
    flex: 0 0 calc(50% - 6px);
  }

  .sidebar-description {
    display: none;
  }

  .tools-title {
    font-size: 32px;
  }

  .tools-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .tools-section {
    padding: 60px 0;
  }

  .tools-tabs {
    gap: 8px;
  }

  .tools-tab {
    padding: 8px 20px;
    min-width: auto;
    font-size: 13px;
  }

  .tools-sidebar-item {
    flex: 0 0 100%;
  }

  .tools-grid {
    gap: 12px;
  }

  .tool-card {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .tools-title {
    font-size: 28px;
  }

  .tools-subtitle {
    font-size: 16px;
  }

  .tools-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tools-tab {
    width: 100%;
    max-width: 280px;
  }
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
  padding: 60px 0;
  background-color: var(--color-gray-50);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: #1d3d54;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  color: #727272;
  margin: 0;
  line-height: 1.5;
}

/* Testimonials Grid - 2 Row Layout */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Each Row */
.testimonials-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

/* ==========================================
   Featured Testimonial Cards (Large - 821x436)
   ========================================== */
.testimonial-featured {
  display: flex;
  width: 821px;
  height: 436px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Content Side (411px wide) */
.testimonial-content-side {
  width: 411px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* Light Featured Card - Content LEFT, Image RIGHT */
.testimonial-featured-light .testimonial-content-light {
  background-color: #f8f9fa;
  border: 1px solid rgba(114, 114, 114, 0.32);
  border-right: none;
  border-radius: 20px 0 0 20px;
}

.testimonial-featured-light .testimonial-image-right {
  border-radius: 0 20px 20px 0;
}

/* Dark Featured Card - Image LEFT, Content RIGHT */
.testimonial-featured-dark .testimonial-content-dark {
  background-color: #1d3e59;
  border: 1px solid rgba(114, 114, 114, 0.32);
  border-left: none;
  border-radius: 0 20px 20px 0;
}

.testimonial-featured-dark .testimonial-image-left {
  border-radius: 20px 0 0 20px;
}

/* Image Side (410px wide) */
.testimonial-image-side {
  width: 410px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

/* Text Wrapper */
.testimonial-text-wrapper {
  text-align: center;
  max-width: 304px;
}

/* Testimonial Name */
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.testimonial-featured-light .testimonial-name {
  color: #131e27;
}

.testimonial-featured-dark .testimonial-name {
  color: #fafafa;
}

/* Testimonial Role */
.testimonial-role {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 20px 0;
  opacity: 0.7;
}

.testimonial-featured-light .testimonial-role {
  color: #285371;
}

.testimonial-featured-dark .testimonial-role {
  color: #94a3b8;
}

/* Small testimonial role */
.testimonial-small-role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  margin: 0 0 8px 0;
  opacity: 0.8;
}

.testimonial-small-role.text-light {
  color: #94a3b8;
}

.testimonial-small-role.text-dark {
  color: #64748b;
}

/* Black & White Image Filter */
.testimonial-img-bw {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.testimonial-featured:hover .testimonial-img-bw,
.testimonial-small:hover .testimonial-img-bw {
  filter: grayscale(70%);
}

/* Testimonial Quote */
.testimonial-quote {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.testimonial-featured-light .testimonial-quote {
  color: #131e27;
}

.testimonial-featured-dark .testimonial-quote {
  color: #fafafa;
}

/* ==========================================
   Small Testimonial Cards Column (437px wide)
   ========================================== */
.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 437px;
  flex-shrink: 0;
}

/* Small Testimonial Card (438x208) */
.testimonial-small {
  display: flex;
  width: 438px;
  height: 208px;
  border-radius: 11px;
  overflow: hidden;
}

/* Small Card Content Side */
.testimonial-small-content {
  width: 219px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Dark Small Content */
.testimonial-small-dark {
  background-color: #203d54;
  border: 0.533px solid rgba(114, 114, 114, 0.32);
}

/* Light Small Content */
.testimonial-small-light {
  background-color: #f8f9fa;
  border: 0.533px solid rgba(114, 114, 114, 0.32);
}

/* Default orientation: Content LEFT, Image RIGHT */
.testimonial-small:not(.testimonial-small-reversed) .testimonial-small-content {
  border-right: none;
  border-radius: 11px 0 0 11px;
}

.testimonial-small:not(.testimonial-small-reversed) .testimonial-small-image {
  border-radius: 0 11px 11px 0;
}

/* Reversed orientation: Image LEFT, Content RIGHT */
.testimonial-small-reversed .testimonial-small-image {
  border-radius: 11px 0 0 11px;
}

.testimonial-small-reversed .testimonial-small-content-right {
  border-left: none;
  border-radius: 0 11px 11px 0;
}

/* Small Card Image Side */
.testimonial-small-image {
  width: 219px;
  height: 100%;
  overflow: hidden;
}

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

/* Small Card Text */
.testimonial-small-text {
  text-align: center;
  max-width: 162px;
}

.testimonial-small-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.testimonial-small-quote {
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

/* Text Colors */
.text-light {
  color: #fafafa;
}

.text-dark {
  color: #131e27;
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1400px) {
  .testimonial-featured {
    width: 580px;
    min-height: 380px;
  }

  .testimonial-content-side {
    width: 290px;
  }

  .testimonial-image-side {
    width: 290px;
    min-height: 380px;
  }

  .testimonials-column {
    width: 340px;
  }

  .testimonial-small {
    width: 340px;
    height: 180px;
  }

  .testimonial-small-content {
    width: 170px;
    padding: 16px;
  }

  .testimonial-small-image {
    width: 170px;
  }

  .testimonial-small-name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial-small-quote {
    font-size: 9px;
  }
}

@media (max-width: 1100px) {
  .testimonials-row {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-featured {
    width: 100%;
    max-width: 600px;
    min-height: 350px;
  }

  .testimonial-content-side {
    width: 50%;
    padding: 30px;
  }

  .testimonial-image-side {
    width: 50%;
    min-height: 350px;
  }

  .testimonials-column {
    width: 100%;
    max-width: 600px;
    flex-direction: row;
    justify-content: center;
  }

  .testimonial-small {
    width: calc(50% - 10px);
    min-width: 260px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-subtitle {
    font-size: 18px;
  }

  .testimonial-featured {
    max-width: 100%;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .testimonial-featured-light .testimonial-content-light {
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(114, 114, 114, 0.32);
    border-bottom: none;
  }

  .testimonial-featured-light .testimonial-image-right {
    border-radius: 0 0 20px 20px;
  }

  .testimonial-featured-dark {
    flex-direction: column-reverse;
  }

  .testimonial-featured-dark .testimonial-content-dark {
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(114, 114, 114, 0.32);
    border-top: none;
  }

  .testimonial-featured-dark .testimonial-image-left {
    border-radius: 20px 20px 0 0;
  }

  .testimonial-content-side {
    width: 100%;
    min-height: 180px;
  }

  .testimonial-image-side {
    width: 100%;
    min-height: 220px;
  }

  .testimonial-name {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .testimonials-column {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-small {
    width: 100%;
    max-width: 400px;
    height: 160px;
  }

  .testimonial-small-content {
    width: 50%;
  }

  .testimonial-small-image {
    width: 50%;
  }

  .testimonial-small-name {
    font-size: 16px;
  }

  .testimonial-small-quote {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-header {
    margin-bottom: 30px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonials-grid {
    gap: 16px;
  }

  .testimonials-row {
    gap: 16px;
  }

  .testimonial-name {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .testimonial-quote {
    font-size: 14px;
  }

  .testimonial-small {
    max-width: 100%;
    height: auto;
    min-height: 140px;
  }

  .testimonial-small-content {
    padding: 12px;
  }

  .testimonial-small-name {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .testimonial-small-quote {
    font-size: 10px;
    line-height: 1.4;
  }
}

/* ========================================
   Contact Us Section
   ======================================== */

.contact-us-section {
  padding: 60px 0;
  background-color: var(--color-gray-50);
}

.contact-us-grid {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto;
}

/* Left Side - Steps */
.contact-steps {
  flex: 0 0 493px;
  max-width: 493px;
}

.contact-steps-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: #203d54;
  margin: 0 0 40px 0;
  line-height: 1.33;
}

/* Steps List */
.steps-list {
  position: relative;
  padding-left: 24px;
}

/* Step Item */
.step-item {
  position: relative;
  padding-left: 42px;
  padding-bottom: 24px;
  border-left: 2px dashed #e4e7ec;
}

.step-item-last {
  border-left: none;
  padding-bottom: 0;
}

/* Step Icon */
.step-icon-wrapper {
  position: absolute;
  left: -24px;
  top: 0;
  width: 48px;
  height: 48px;
  background-color: #f6f7f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

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

/* Step Content */
.step-content {
  min-height: 120px;
}

.step-badge {
  display: inline-block;
  background-color: rgba(32, 61, 84, 0.3);
  color: #203d54;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  color: #203d54;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.step-description {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #727272;
  margin: 0;
  line-height: 1.5;
  max-width: 420px;
}

/* Right Side - Contact Form */
.contact-form-wrapper {
  flex: 1;
  max-width: 755px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(114, 114, 114, 0.25);
  border-radius: 8px;
  padding: 33px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Row */
.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  width: 100%;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: #203d54;
  line-height: 1.25;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(114, 114, 114, 0.25);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #203d54;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-form .form-input {
  height: 44px;
  padding: 11px;
}

.contact-form .form-textarea {
  padding: 20px;
  min-height: 176px;
  resize: vertical;
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #727272;
  font-weight: 300;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #203d54;
  box-shadow: 0 0 0 2px rgba(32, 61, 84, 0.1);
}

/* Attachment */
.form-attachment {
  display: flex;
  align-items: center;
}

.attachment-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.attachment-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(32, 61, 84, 0.1);
  border: 1px solid #203d54;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attachment-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #727272;
}

.attachment-input {
  display: none;
}

/* Checkboxes */
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #203d54;
  border-radius: 6px;
  appearance: none;
  cursor: pointer;
  margin-top: 2px;
}

.checkbox-input:checked {
  background-color: #203d54;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10.28 2.28a.75.75 0 0 1 0 1.06l-5.75 5.75a.75.75 0 0 1-1.06 0L1.22 6.84a.75.75 0 0 1 1.06-1.06L4.25 7.75l5.22-5.22a.75.75 0 0 1 1.06-.28z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: #203d54;
  line-height: 1.5;
  cursor: pointer;
}

/* reCAPTCHA placeholder */
.recaptcha-wrapper {
  margin: 8px 0;
}

.recaptcha-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 12px 16px;
  min-width: 210px;
}

.recaptcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background-color: #ffffff;
}

.recaptcha-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #555555;
}

.recaptcha-logo {
  margin-left: auto;
}

/* Form reCAPTCHA */
.form-recaptcha {
  margin-bottom: 20px;
}

.form-recaptcha .g-recaptcha {
  transform-origin: left top;
}

@media (max-width: 400px) {
  .form-recaptcha .g-recaptcha {
    transform: scale(0.85);
  }
}

/* Attachment Filename Display */
.attachment-filename {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #203d54;
  font-style: italic;
}

/* Submit Button */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #203d54;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  padding: 0 20px;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 0 0 2px #1e4485;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background-color: #1a3244;
  transform: translateY(-1px);
}

/* Contact Us Responsive */
@media (max-width: 1200px) {
  .contact-us-grid {
    gap: 24px;
  }

  .contact-steps {
    flex: 0 0 400px;
    max-width: 400px;
  }

  .contact-steps-title {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .contact-us-section {
    padding: 50px 0;
  }

  .contact-us-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-steps {
    flex: none;
    max-width: 100%;
  }

  .contact-form-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-steps-title {
    font-size: 28px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .contact-us-section {
    padding: 40px 0;
  }

  .contact-steps-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .step-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-description {
    font-size: 13px;
  }

  .step-icon-wrapper {
    width: 40px;
    height: 40px;
    left: -20px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-item {
    padding-left: 32px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .contact-form .form-input,
  .contact-form .form-textarea {
    font-size: 14px;
  }

  .checkbox-label {
    font-size: 14px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
  padding: 60px 0;
  background-color: var(--color-gray-50);
}

.faq-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* Left Side - Header */
.faq-header {
  flex: 0 0 630px;
  max-width: 630px;
  padding-top: 52px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: #203d54;
  margin: 0 0 16px 0;
  line-height: 1.44;
  letter-spacing: -0.5px;
}

.faq-subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #203d54;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 24px;
  height: 50px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: all var(--transition-fast);
}

.faq-btn:hover {
  background-color: #1a3244;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Right Side - Accordion */
.faq-accordion {
  flex: 0 0 630px;
  max-width: 630px;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* FAQ Item */
.faq-item {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: visible;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
}

.faq-question-text {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  color: #203d54;
  line-height: 1.4;
  padding-right: 16px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
  padding: 8px 0;
}

.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background-color: #f6f5f2;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast),
    background-color var(--transition-fast);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

/* Active state */
.faq-item.active .faq-icon {
  background-color: #203d54;
}

.faq-item.active .faq-icon svg path {
  stroke: #ffffff;
}

.faq-item.active .faq-icon svg path:first-child {
  opacity: 0;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: #727272;
  line-height: 1.6;
  margin: 12px 0 0 0;
  padding-right: 30px;
}

/* FAQ Responsive */
@media (max-width: 1400px) {
  .faq-header,
  .faq-accordion {
    flex: 0 0 500px;
    max-width: 500px;
  }
}

@media (max-width: 1100px) {
  .faq-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .faq-header,
  .faq-accordion {
    flex: none;
    max-width: 100%;
    padding-top: 0;
  }

  .faq-header {
    text-align: center;
  }

  .faq-btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-accordion {
    gap: 24px;
  }

  .faq-item {
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
    padding-right: 0;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .faq-icon svg {
    width: 12px;
    height: 12px;
  }
}

/* ========================================
   Site Footer
   ======================================== */

.site-footer {
  background-color: #203d54;
  padding-top: 53px;
  padding-bottom: 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Footer Content */
.footer-main {
  border-bottom: 1px solid rgba(246, 246, 246, 0.3);
  padding-bottom: 55px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-columns {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

/* Brand Column */
.footer-brand-column {
  flex: 0 0 223px;
  max-width: 223px;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

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

.footer-tagline {
  font-family: "Outfit", var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 19.5px;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.footer-social {
  margin-bottom: 92px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: opacity var(--transition-fast);
}

.social-icon:hover {
  opacity: 0.8;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.newsletter-title {
  font-family: "Outfit", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 24px;
}

.newsletter-text {
  font-family: "Outfit", var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
  line-height: 22.5px;
}

.newsletter-form {
  margin-top: 22px;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
}

.newsletter-input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 9px 90px 9px 12px;
  font-family: "Outfit", var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.newsletter-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 82px;
  background-color: #387aa5;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Outfit", var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  line-height: 16px;
}

.newsletter-btn:hover {
  background-color: #2d6489;
}

/* Footer Links Columns */
.footer-links-column {
  flex: 0 0 222px;
  max-width: 222px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 16px;
}

.footer-links-column-last {
  flex: 0 0 248px;
  max-width: 248px;
  padding-right: 0;
}

.footer-links-column-last .footer-column-divider {
  display: none;
}

.footer-column-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 85%;
  background-color: rgba(246, 246, 246, 0.3);
}

/* Footer Section */
.footer-section {
  margin-bottom: 0;
}

/* First section in each column gets min-height to align second sections */
.footer-section:first-child {
  min-height: 226px;
}

.footer-section + .footer-section {
  margin-top: 0;
}

.footer-section:last-child {
  margin-bottom: 0;
}

.footer-section-company {
  margin-top: 0;
}

.footer-heading {
  font-family: "Outfit", var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 20px;
  text-transform: none;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-right: 16px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-list li a {
  font-family: "Outfit", var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  line-height: 20px;
  transition: opacity var(--transition-fast);
}

.footer-list li a:hover {
  opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.copyright {
  font-family: "Outfit", var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-family: "Outfit", var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-legal-links a:hover {
  opacity: 0.8;
  color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 1280px) {
  .footer-columns {
    gap: 24px;
  }

  .footer-brand-column {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .footer-links-column {
    flex: 0 0 180px;
    max-width: 180px;
  }

  .footer-links-column-last {
    flex: 0 0 220px;
    max-width: 220px;
  }
}

@media (max-width: 1100px) {
  .footer-columns {
    flex-wrap: wrap;
    gap: 32px 24px;
    justify-content: flex-start;
  }

  .footer-brand-column {
    flex: 0 0 100%;
    max-width: 280px;
  }

  .footer-links-column,
  .footer-links-column-last {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
    padding-right: 0;
  }

  .footer-column-divider {
    display: none;
  }

  .footer-social {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-main {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-columns {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand-column,
  .footer-links-column,
  .footer-links-column-last {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-social {
    margin-bottom: 32px;
  }

  .footer-section:first-child {
    min-height: auto;
  }

  .footer-section {
    margin-bottom: 24px;
  }

  .footer-section + .footer-section {
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 32px;
  }

  .footer-main {
    padding-bottom: 32px;
  }

  .footer-heading {
    font-size: 13px;
  }

  .footer-list li a {
    font-size: 13px;
  }

  .newsletter-input-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-input {
    padding-right: 12px;
  }

  .newsletter-btn {
    position: static;
    width: 100%;
    padding: 10px;
  }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Page Hero */
.services-page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 50%, #dde4e9 100%);
  overflow: hidden;
  z-index: 1;
}

.services-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(29, 62, 89, 0.03) 100%
  );
  pointer-events: none;
}

.services-hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #e3e4e4);
  pointer-events: none;
}

.services-hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.services-hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3b79a3;
  background-color: rgba(59, 121, 163, 0.1);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #131e27;
  margin: 0 0 24px;
}

.services-hero-title .text-accent {
  color: #1d3e59;
  position: relative;
}

.services-hero-title .text-accent::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(
    90deg,
    rgba(59, 121, 163, 0.3),
    rgba(59, 121, 163, 0.1)
  );
  z-index: -1;
  border-radius: 4px;
}

.services-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #727272;
  margin: 0;
}

/* Services Page Section */
.services-page-section {
  background-color: #e3e4e4;
  padding: 80px 0 100px;
}

.services-page-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Service Navigation Tabs */
.service-nav-tabs {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.service-nav-tab {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
}

.service-nav-tab:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(29, 62, 89, 0.1);
}

.service-nav-tab.active {
  background-color: #1d3e59;
  border-color: #1d3e59;
  box-shadow: 0 10px 40px rgba(29, 62, 89, 0.25);
}

.nav-tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(32, 61, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-nav-tab.active .nav-tab-icon {
  background-color: rgba(250, 250, 250, 0.15);
}

.nav-tab-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(23%) saturate(1058%)
    hue-rotate(168deg) brightness(92%) contrast(91%);
  transition: filter 0.3s ease;
}

.service-nav-tab.active .nav-tab-icon img {
  filter: brightness(0) invert(1);
}

.nav-tab-content {
  flex: 1;
}

.nav-tab-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #1d3e59;
  margin: 0 0 8px;
  transition: color 0.3s ease;
}

.service-nav-tab.active .nav-tab-title {
  color: #ffffff;
}

.nav-tab-description {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #727272;
  margin: 0;
  transition: color 0.3s ease;
}

.service-nav-tab.active .nav-tab-description {
  color: rgba(255, 255, 255, 0.85);
}

.nav-tab-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #1d3e59;
}

.service-nav-tab.active .nav-tab-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #ffffff;
}

/* Service Detail Panels */
.service-detail-panels {
  flex: 1;
  min-width: 0;
}

.service-detail-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-detail-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.panel-header {
  margin-bottom: 40px;
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: #1d3e59;
  margin: 0 0 12px;
}

.panel-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: #727272;
  margin: 0;
}

/* Service Detail Grid */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* Service Detail Card */
.service-detail-card {
  background-color: #ffffff;
  border: 1px solid rgba(199, 199, 214, 0.5);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(29, 62, 89, 0.12);
  border-color: rgba(59, 121, 163, 0.3);
}

.detail-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f6f7f8 0%, #eef1f4 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.detail-card-icon img {
  width: 28px;
  height: 28px;
}

.detail-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #1d3e59;
  margin: 0 0 12px;
  line-height: 1.3;
}

.detail-card-description {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #727272;
  margin: 0 0 20px;
  flex: 1;
}

.detail-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(199, 199, 214, 0.3);
}

.detail-card-features li {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #3b79a3;
  padding-left: 20px;
  position: relative;
}

.detail-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #3b79a3, #1d3e59);
  border-radius: 50%;
}

/* Services CTA Section */
.services-cta-section {
  background: linear-gradient(135deg, #1d3e59 0%, #131e27 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 121, 163, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.services-cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 121, 163, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.services-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.services-cta-text {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
  line-height: 1.6;
}

.services-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #1d3e59;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #1d3e59;
}

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

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

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Services Page Responsive */
@media (max-width: 1400px) {
  .services-page-layout {
    gap: 40px;
  }

  .service-nav-tabs {
    flex: 0 0 380px;
  }

  .service-detail-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .services-page-layout {
    flex-direction: column;
  }

  .service-nav-tabs {
    flex: 1;
    width: 100%;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .service-nav-tab {
    flex: 0 0 calc(50% - 6px);
    padding: 20px;
  }

  .nav-tab-description {
    display: none;
  }

  .nav-tab-arrow {
    display: none;
  }

  .service-detail-panels {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .services-page-hero {
    padding: 140px 0 80px;
  }

  .services-hero-title {
    font-size: 44px;
  }

  .services-hero-subtitle {
    font-size: 18px;
  }

  .panel-title {
    font-size: 30px;
  }

  .services-cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services-page-hero {
    padding: 120px 0 60px;
  }

  .services-hero-title {
    font-size: 36px;
  }

  .services-hero-title br {
    display: none;
  }

  .services-hero-subtitle {
    font-size: 16px;
  }

  .services-page-section {
    padding: 60px 0 80px;
  }

  .service-nav-tabs {
    flex-direction: column;
  }

  .service-nav-tab {
    flex: 1;
    width: 100%;
  }

  .nav-tab-description {
    display: block;
  }

  .service-detail-grid,
  .service-detail-grid-3 {
    grid-template-columns: 1fr;
  }

  .panel-title {
    font-size: 28px;
  }

  .panel-subtitle {
    font-size: 16px;
  }

  .services-cta-section {
    padding: 70px 0;
  }

  .services-cta-title {
    font-size: 30px;
  }

  .services-cta-text {
    font-size: 16px;
  }

  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-page-hero {
    padding: 100px 0 50px;
  }

  .services-hero-label {
    font-size: 12px;
    padding: 6px 16px;
  }

  .services-hero-title {
    font-size: 28px;
  }

  .services-page-section {
    padding: 40px 0 60px;
  }

  .service-nav-tab {
    padding: 16px;
  }

  .nav-tab-title {
    font-size: 16px;
  }

  .nav-tab-description {
    font-size: 13px;
  }

  .panel-header {
    margin-bottom: 30px;
  }

  .panel-title {
    font-size: 24px;
  }

  .service-detail-card {
    padding: 24px;
  }

  .detail-card-title {
    font-size: 18px;
  }

  .services-cta-title {
    font-size: 26px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.85) contrast(1.05);
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(29, 62, 89, 0.75) 0%,
    rgba(19, 30, 39, 0.65) 50%,
    rgba(29, 62, 89, 0.8) 100%
  );
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1299px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

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

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4);
}

.about-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.98);
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5), 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* About Section General */
.about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-mission {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

/* About Content Grid (Mission/Vision) */
.about-content-grid {
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.about-content-grid-reverse {
  flex-direction: row-reverse;
}

/* Mission Section Specific Styling */
.about-mission .about-content-grid {
  gap: 100px;
}

.about-image-wrapper {
  flex: 0 0 600px;
  max-width: 600px;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative Blob Shapes */
.blob-decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  z-index: 1;
}

.blob-back {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  animation: morphBlobBack 10s ease-in-out infinite;
}

.blob-front {
  top: 45%;
  left: 48%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: morphBlobFront 12s ease-in-out infinite;
}

@keyframes morphBlobBack {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.05);
  }
}

@keyframes morphBlobFront {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-52%, -48%) scale(0.95);
  }
}

/* Dotted Pattern Decorations */
.dots-decoration {
  position: absolute;
  z-index: 0;
}

.dots-top {
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #3b79a3 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.5;
  border-radius: 50%;
}

.dots-bottom {
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, #2a4d68 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.4;
  border-radius: 50%;
}

/* Main Image */
.about-image {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(29, 62, 89, 0.3);
  animation: morphPebble 8s ease-in-out infinite;
}

@keyframes morphPebble {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  33% {
    border-radius: 48% 52% 68% 32% / 42% 56% 44% 58%;
  }
  66% {
    border-radius: 58% 42% 45% 55% / 68% 38% 62% 32%;
  }
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.float-icon {
  position: absolute;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 15%;
  left: 0%;
  animation-delay: 1s;
}

.icon-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Text Content */
.about-text-content {
  flex: 1;
  max-width: 580px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3b79a3;
  margin-bottom: 16px;
}

.btn-mission {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: #5d4be8;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(93, 75, 232, 0.3);
}

.btn-mission:hover {
  background-color: #4d3cd8;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(93, 75, 232, 0.4);
}

.about-section-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  color: #131e27;
  margin: 0 0 24px;
}

.about-mission .about-section-title {
  font-size: 42px;
  line-height: 1.25;
  max-width: 520px;
}

.about-description {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #5a5a5a;
}

.about-description p {
  margin: 0 0 1.2em;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* Vision Section Specific Styling */
.about-vision {
  background-color: #f8f9fb;
}

.about-vision .about-content-grid {
  gap: 100px;
}

/* About Core Values Section */
.about-values {
  padding: 40px 0 20px;
}

.about-values-header {
  text-align: center;
  margin-bottom: 20px;
}

.about-values-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 42px;
  color: #203d54;
  margin: 0;
}

.about-values-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.about-value-card {
  width: 413px;
  min-height: 249px;
  background-color: #fafafa;
  border: 1px solid #c7c7d6;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-number {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #203d54;
  margin-bottom: 5px;
}

.value-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #203d54;
  margin: 0 0 5px;
}

.value-description {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #727272;
  margin: 0;
  max-width: 319px;
}

/* About Testimonials Section */
.about-testimonials {
  padding: 40px 0;
}

.about-testimonials-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-testimonials-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 42px;
  color: #203d54;
  margin: 0 0 10px;
}

.about-testimonials-subtitle {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: #727272;
  margin: 0;
}

.about-testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* About Contact Section */
.about-contact {
  padding: 20px 0 60px;
  overflow: visible;
}

/* About Page Responsive */
@media (max-width: 1200px) {
  .about-hero-title {
    font-size: 42px;
  }

  .about-content-grid {
    gap: 50px;
  }

  .about-mission .about-content-grid {
    gap: 60px;
  }

  .about-image-wrapper {
    flex: 0 0 480px;
    max-width: 480px;
    height: 450px;
  }

  .blob-decoration {
    width: 420px;
    height: 420px;
  }

  .about-image {
    width: 350px;
    height: 350px;
  }

  .about-section-title {
    font-size: 36px;
  }

  .about-mission .about-section-title {
    font-size: 36px;
  }

  .about-values-grid {
    flex-wrap: wrap;
  }

  .float-icon {
    transform: scale(0.85);
  }

  .about-value-card {
    width: calc(50% - 10px);
    min-width: 300px;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    min-height: 400px;
    padding: 100px 0 80px;
  }

  .about-hero-title {
    font-size: 38px;
    line-height: 44px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-content-grid,
  .about-content-grid-reverse {
    flex-direction: column;
    gap: 50px;
  }

  .about-mission .about-content-grid {
    flex-direction: column-reverse;
  }

  .about-image-wrapper {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 450px;
    margin: 0 auto;
  }

  .blob-decoration {
    width: 400px;
    height: 400px;
  }

  .about-image {
    width: 350px;
    height: 350px;
  }

  .about-text-content {
    max-width: 100%;
    text-align: center;
  }

  .about-mission .about-section-title {
    max-width: 100%;
  }

  .section-label {
    display: block;
  }

  .btn-mission {
    margin: 24px auto 0;
  }

  .about-values-title,
  .about-testimonials-title {
    font-size: 32px;
  }

  .about-testimonials-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 350px;
    padding: 100px 0 60px;
  }

  .about-hero-title {
    font-size: 32px;
    line-height: 38px;
  }

  .about-hero-subtitle {
    font-size: 14px;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-content-grid {
    gap: 40px;
    padding: 40px 0;
  }

  .about-image-wrapper {
    height: 380px;
  }

  .blob-decoration {
    width: 340px;
    height: 340px;
  }

  .about-image {
    width: 280px;
    height: 280px;
  }

  .float-icon {
    transform: scale(0.7);
  }

  .dots-top,
  .dots-bottom {
    display: none;
  }

  .about-section-title {
    font-size: 28px;
    line-height: 32px;
  }

  .about-mission .about-section-title {
    font-size: 28px;
  }

  .about-description {
    font-size: 14px;
  }

  .about-values-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-value-card {
    width: 100%;
    max-width: 413px;
    min-height: auto;
    padding: 24px;
  }

  .about-values-title,
  .about-testimonials-title {
    font-size: 28px;
  }

  .about-testimonials-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 300px;
    padding: 90px 0 50px;
  }

  .about-hero-title {
    font-size: 26px;
    line-height: 32px;
  }

  .about-hero-subtitle {
    font-size: 13px;
  }

  .about-section {
    padding: 30px 0;
  }

  .about-content-grid {
    padding: 30px 0;
  }

  .about-image-wrapper {
    height: 320px;
  }

  .blob-decoration {
    width: 280px;
    height: 280px;
  }

  .about-image {
    width: 240px;
    height: 240px;
  }

  .float-icon {
    transform: scale(0.6);
  }

  .icon-2 {
    left: -10px;
  }

  .about-section-title {
    font-size: 24px;
  }

  .about-mission .about-section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .value-number,
  .value-title {
    font-size: 14px;
  }

  .value-description {
    font-size: 14px;
    line-height: 22px;
  }

  .about-values-title,
  .about-testimonials-title {
    font-size: 24px;
  }

  .about-testimonials-subtitle {
    font-size: 14px;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #1a365d 100%);
}

.contact-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(56, 189, 248, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 30%
    );
  opacity: 0.8;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(56, 189, 248, 0.15);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.15);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.contact-hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* Light Hero Variant */
.contact-hero-light {
  background: linear-gradient(180deg, #f8fafc 0%, rgba(231, 236, 241, 1) 100%);
  min-height: auto;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

/* SVG Wave Background Pattern */
.contact-hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-wave-svg {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.contact-hero-light .contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-light .contact-hero-title {
  color: #131e27;
}

.contact-hero-light .contact-hero-subtitle {
  color: #727272;
}

.contact-hero-light .contact-hero-stats {
  background: linear-gradient(
    131.26deg,
    rgba(15, 23, 42, 1) 0%,
    rgba(29, 62, 89, 1) 46%,
    rgba(15, 23, 42, 1) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.contact-hero-light .hero-stat-number {
  color: #ffffff;
}

.contact-hero-light .hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-hero-light .hero-stat-divider {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for children */
.reveal-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-stagger > *:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-stagger > *:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-stagger > *:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal-stagger > *:nth-child(6) {
  transition-delay: 0.5s;
}

/* Quick Contact Section */
.quick-contact-section {
  padding: 60px 0;
  background: rgba(210, 220, 228, 1);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quick-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quick-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick-contact-email::before {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(147, 51, 234, 0.05) 100%
  );
}

.quick-contact-phone::before {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(6, 182, 212, 0.05) 100%
  );
}

.quick-contact-schedule::before {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.05) 0%,
    rgba(239, 68, 68, 0.05) 100%
  );
}

.quick-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quick-contact-card:hover::before {
  opacity: 1;
}

.quick-contact-email:hover {
  border-color: #3b82f6;
}

.quick-contact-phone:hover {
  border-color: #10b981;
}

.quick-contact-schedule:hover {
  border-color: #f59e0b;
}

.quick-contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.quick-contact-email .quick-contact-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.quick-contact-phone .quick-contact-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.quick-contact-schedule .quick-contact-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.quick-contact-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.quick-contact-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #727272;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-contact-value {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #131e27;
}

.quick-contact-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 12px;
  color: #64748b;
}

.quick-contact-arrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.quick-contact-card:hover .quick-contact-arrow {
  transform: translate(4px, -4px);
}

.quick-contact-email:hover .quick-contact-arrow {
  background: #3b82f6;
  color: #ffffff;
}

.quick-contact-phone:hover .quick-contact-arrow {
  background: #10b981;
  color: #ffffff;
}

.quick-contact-schedule:hover .quick-contact-arrow {
  background: #f59e0b;
  color: #ffffff;
}

/* Contact Page Main Section Override */
.contact-page-main {
  padding: 80px 0;
  background: #ffffff;
}

/* Office Locations Section */
.contact-locations-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-locations-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-locations-title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #131e27;
  margin-bottom: 16px;
}

.contact-locations-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #727272;
}

.contact-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-locations-grid.contact-locations-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.location-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

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

/* Location card - simpler design without badges and flags */

.location-city {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #131e27;
  margin-bottom: 12px;
}

.location-address {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #727272;
  line-height: 1.7;
  margin-bottom: 24px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #64748b;
}

.location-detail svg {
  flex-shrink: 0;
  stroke: #94a3b8;
}

/* FAQ Section */
.contact-faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.contact-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-faq-title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #131e27;
  margin-bottom: 16px;
}

.contact-faq-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #727272;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #f1f5f9;
}

.contact-faq-section .faq-item.active {
  background: linear-gradient(135deg, #1d3e59 0%, #285371 100%);
}

.contact-faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #131e27;
  transition: color 0.3s ease;
}

.contact-faq-section .faq-item.active .faq-question {
  color: #ffffff;
}

.contact-faq-section .faq-icon {
  flex-shrink: 0;
  stroke: #727272;
  transition: all 0.3s ease;
}

.contact-faq-section .faq-item.active .faq-icon {
  stroke: #ffffff;
  transform: rotate(45deg);
}

.contact-faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.contact-faq-section .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px;
}

.contact-faq-section .faq-answer p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-hero-title {
    font-size: 42px;
  }

  .contact-hero-stats {
    gap: 30px;
    padding: 24px;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-locations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .contact-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .quick-contact-section {
    padding: 40px 0;
  }

  .quick-contact-card {
    padding: 20px 24px;
  }

  .quick-contact-icon {
    width: 44px;
    height: 44px;
  }

  .quick-contact-value {
    font-size: 16px;
  }

  .contact-locations-section,
  .contact-faq-section {
    padding: 60px 0;
  }

  .contact-locations-title,
  .contact-faq-title {
    font-size: 28px;
  }

  .location-city {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 26px;
  }

  .contact-hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-stat-number {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  .location-card {
    padding: 24px;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* ==========================================
   CAREERS PAGE STYLES
   ========================================== */

/* Careers Hero Section */
.careers-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
  z-index: 1;
}

.careers-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0f1c24 0%, #1d3e59 50%, #2a5275 100%);
  /* If you have a hero image, uncomment below */
  /* background-size: cover; */
  /* background-position: center; */
}

.careers-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 61, 84, 0.95) 0%,
    rgba(29, 61, 84, 0.7) 50%,
    rgba(29, 61, 84, 0.4) 100%
  );
  z-index: 1;
}

.careers-hero-content {
  position: relative;
  z-index: 2;
}

.careers-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #fafafa;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Filter Dropdowns */
.careers-filters {
  display: flex;
  gap: 16px;
  align-items: center;
}

.filter-select-wrapper {
  position: relative;
  width: 300px;
}

.filter-select {
  width: 100%;
  padding: 12px 44px 12px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #232427;
  background: #ffffff;
  border: 1px solid #bababa;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-select:focus {
  outline: none;
  border-color: #1d3e59;
  box-shadow: 0 0 0 3px rgba(29, 62, 89, 0.1);
}

.filter-select option {
  color: #232427;
}

.filter-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #232427;
  opacity: 0.6;
  pointer-events: none;
}

/* Job Listings Section */
.careers-listings {
  padding: 80px 0;
  background: #ffffff;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.job-card:first-child {
  padding-top: 0;
}

.job-card:last-child {
  border-bottom: none;
}

.job-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 70%;
}

.job-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1d3e59;
  margin: 0;
}

.job-meta {
  display: flex;
  gap: 27px;
  align-items: center;
  flex-wrap: wrap;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1d3e59;
}

.job-meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #1d3e59;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 40px;
  padding: 6px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #1d3e59;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.job-apply-btn:hover {
  background: #285371;
  transform: translateY(-2px);
}

/* No Positions State */
.no-positions {
  text-align: center;
  padding: 80px 20px;
}

.no-positions-icon {
  color: #cbd5e1;
  margin-bottom: 24px;
}

.no-positions h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 12px;
}

.no-positions p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto 16px;
}

.no-positions-cta a {
  color: #1d3e59;
  font-weight: 500;
  text-decoration: underline;
}

.no-positions-cta a:hover {
  color: #285371;
}

/* No Jobs Found (filtered) */
.no-jobs-found {
  text-align: center;
  padding: 60px 20px;
}

.no-jobs-found p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #64748b;
  margin-bottom: 20px;
}

.reset-filters-btn {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1d3e59;
  background: transparent;
  border: 1px solid #1d3e59;
  border-radius: 6px;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reset-filters-btn:hover {
  background: #1d3e59;
  color: #ffffff;
}

/* Why Join Section */
.careers-why-join {
  padding: 100px 0;
  background: #f8fafc;
}

.careers-why-header {
  text-align: center;
  margin-bottom: 60px;
}

.careers-why-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #131e27;
  margin-bottom: 16px;
}

.careers-why-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #64748b;
}

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

.careers-benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 62, 89, 0.08);
  border-radius: 16px;
  color: #1d3e59;
}

.benefit-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 12px;
}

.benefit-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Careers Page Responsive */
@media (max-width: 1024px) {
  .careers-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .careers-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .careers-hero-title {
    font-size: 28px;
  }

  .careers-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select-wrapper {
    width: 100%;
  }

  .careers-listings {
    padding: 60px 0;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .job-info {
    max-width: 100%;
  }

  .job-meta {
    gap: 16px;
  }

  .job-meta-item {
    font-size: 14px;
  }

  .job-apply-btn {
    width: 100%;
  }

  .careers-why-join {
    padding: 60px 0;
  }

  .careers-why-title {
    font-size: 28px;
  }

  .careers-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .careers-hero-title {
    font-size: 24px;
  }

  .job-title {
    font-size: 18px;
  }

  .job-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ==========================================
   JOB DETAIL PAGE STYLES
   ========================================== */

/* Job Detail Hero */
.job-detail-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 60px;
}

.job-detail-hero-content {
  position: relative;
  z-index: 2;
}

.job-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.job-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.job-breadcrumb a:hover {
  color: #ffffff;
}

.job-breadcrumb svg {
  opacity: 0.5;
}

.job-breadcrumb span:last-child {
  color: #ffffff;
}

.job-detail-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.job-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.job-detail-meta-item .job-meta-icon {
  color: rgba(255, 255, 255, 0.7);
}

/* Job Detail Content */
.job-detail-content {
  padding: 80px 0;
  background: #ffffff;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.job-detail-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.job-section {
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.job-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-section-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 20px;
}

.job-section-content {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
}

.job-section-content p {
  margin-bottom: 16px;
}

.job-section-content p:last-child {
  margin-bottom: 0;
}

/* Job Detail Sidebar */
.job-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-apply-card {
  background: linear-gradient(135deg, #1d3e59 0%, #2a5275 100%);
  border-radius: 16px;
  padding: 32px;
  color: #ffffff;
}

.job-apply-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.job-apply-card-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.job-apply-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1d3e59;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.job-apply-card-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.job-info-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px;
}

.job-info-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.job-info-list {
  margin: 0;
}

.job-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.job-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-info-item dt {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #64748b;
}

.job-info-item dd {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1d3e59;
  margin: 0;
  text-align: right;
}

.job-share-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
}

.job-share-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 16px;
}

.job-share-links {
  display: flex;
  gap: 12px;
}

.job-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 10px;
  color: #64748b;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.job-share-link:hover {
  background: #1d3e59;
  color: #ffffff;
}

/* Job Detail Responsive */
@media (max-width: 1024px) {
  .job-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .job-detail-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .job-detail-hero {
    min-height: auto;
    padding: 120px 0 50px;
  }

  .job-detail-title {
    font-size: 28px;
  }

  .job-detail-meta {
    gap: 16px;
  }

  .job-detail-meta-item {
    font-size: 14px;
  }

  .job-detail-content {
    padding: 60px 0;
  }

  .job-section-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .job-detail-meta {
    flex-direction: column;
    gap: 12px;
  }

  .job-apply-card {
    padding: 24px;
  }
}

/* ==========================================
   APPLICATION FORM STYLES
   ========================================== */

.apply-hero {
  min-height: 300px;
}

.application-section {
  padding: 80px 0;
  background: #f8fafc;
}

.application-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.application-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.application-form .form-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.application-form .form-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 24px;
}

.form-section-title svg {
  color: #64748b;
}

.application-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.application-form .form-row:last-child {
  margin-bottom: 0;
}

.application-form .form-group {
  margin-bottom: 0;
}

.application-form .form-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.application-form .required {
  color: #ef4444;
}

.application-form .optional {
  color: #9ca3af;
  font-weight: 400;
}

.application-form .form-hint {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="url"],
.application-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #1f2937;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.application-form input:focus,
.application-form textarea:focus {
  outline: none;
  border-color: #1d3e59;
  box-shadow: 0 0 0 3px rgba(29, 62, 89, 0.1);
}

.application-form textarea {
  min-height: 150px;
  resize: vertical;
}

.application-form input[type="file"] {
  width: 100%;
  padding: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #6b7280;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.application-form input[type="file"]:hover {
  border-color: #1d3e59;
  background: #f0f4f8;
}

.form-error {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #ef4444;
  margin-top: 6px;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.submit-application-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #1d3e59 0%, #2a5275 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-application-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 62, 89, 0.25);
}

.cancel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cancel-btn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #475569;
}

/* Application Success Page */
.application-success-section {
  padding: 140px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.success-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 48px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.success-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(16, 185, 129, 0.2) 100%
  );
  border-radius: 50%;
  color: #10b981;
}

.success-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 16px;
}

.success-position {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #374151;
  margin-bottom: 12px;
}

.success-position strong {
  color: #1d3e59;
}

.success-message {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
}

.success-next-steps {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 40px;
  text-align: left;
}

.success-next-steps h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1d3e59;
  margin-bottom: 20px;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-number {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d3e59;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  padding-top: 4px;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.success-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #1d3e59 0%, #2a5275 100%);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.success-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 62, 89, 0.25);
}

.success-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.success-btn-secondary:hover {
  color: #1d3e59;
}

/* Application Form Responsive */
@media (max-width: 768px) {
  .application-form {
    padding: 32px 24px;
  }

  .application-form .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .submit-application-btn,
  .cancel-btn {
    width: 100%;
    justify-content: center;
  }

  .success-card {
    padding: 40px 24px;
    margin: 0 16px;
  }

  .success-title {
    font-size: 26px;
  }
}

/* ==========================================
   JOB DETAIL PAGE - NEW DESIGN
   ========================================== */

/* JD Hero Section */
.jd-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 0 80px;
  text-align: center;
}

.jd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.jd-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #f3f0f0;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.jd-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.jd-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.jd-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #f3f0f0;
  min-width: 280px;
}

.jd-meta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #f3f0f0;
}

.jd-meta-divider {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #f3f0f0;
  opacity: 0.6;
}

/* JD Content Section */
.jd-content {
  padding: 60px 0 100px;
  background: #ffffff;
}

.jd-content-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.jd-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.jd-section {
  padding-bottom: 0;
}

.jd-section-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #1d3e59;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.jd-section-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #727272;
  line-height: 1.8;
}

.jd-section-text p {
  margin-bottom: 16px;
}

.jd-section-text p:last-child {
  margin-bottom: 0;
}

.jd-list-content ul,
.jd-list-content ol {
  margin: 0;
  padding-left: 24px;
}

.jd-list-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* JD Apply Form Card */
.jd-sidebar {
  position: sticky;
  top: 120px;
}

.jd-apply-form-card {
  background: #fafafa;
  border: 1px solid rgba(114, 114, 114, 0.25);
  border-radius: 8px;
  padding: 35px;
}

.jd-apply-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1d3e59;
  text-align: center;
  margin-bottom: 30px;
}

.jd-apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jd-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jd-form-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #203d54;
}

.jd-form-label .required {
  color: #db4c4c;
  font-weight: 500;
}

.jd-form-input,
.jd-form-textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #333;
  background: #ffffff;
  border: 1px solid rgba(114, 114, 114, 0.25);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jd-form-input:focus,
.jd-form-textarea:focus {
  outline: none;
  border-color: #203d54;
  box-shadow: 0 0 0 3px rgba(32, 61, 84, 0.1);
}

.jd-form-input {
  height: 42px;
}

.jd-form-textarea {
  min-height: 138px;
  resize: vertical;
}

/* File Upload */
.jd-file-upload {
  position: relative;
}

.jd-file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.jd-file-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.jd-file-btn {
  display: inline-block;
  padding: 4px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #203d54;
  background: rgba(32, 61, 84, 0.1);
  border: 1px solid #203d54;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.jd-file-btn:hover {
  background: rgba(32, 61, 84, 0.2);
}

.jd-file-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #203d54;
}

.jd-form-hint {
  font-family: "Poppins", sans-serif;
  font-size: 12.8px;
  color: #203d54;
  margin-top: 4px;
}

/* Checkbox */
.jd-checkbox-group {
  padding: 4px 0;
}

.jd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #203d54;
  cursor: pointer;
  line-height: 1.5;
}

.jd-checkbox {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  flex-shrink: 0;
  border: 1px solid #767676;
  border-radius: 3px;
  cursor: pointer;
}

/* Submit Button */
.jd-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  padding: 6px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #203d54;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.jd-submit-btn:hover {
  background: #1d3e59;
  transform: translateY(-2px);
}

/* Form Error States */
.jd-input-error {
  border-color: #db4c4c !important;
}

.jd-field-error {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #db4c4c;
  margin-top: 4px;
}

/* Messages */
.jd-messages {
  margin-bottom: 20px;
}

.jd-message {
  padding: 12px 16px;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}

.jd-message-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

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

/* reCAPTCHA */
.jd-recaptcha-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jd-recaptcha-group .g-recaptcha {
  transform-origin: left top;
}

@media (max-width: 400px) {
  .jd-recaptcha-group .g-recaptcha {
    transform: scale(0.85);
  }
}

/* Inline Error Styling */
.jd-inline-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  animation: fadeSlideIn 0.3s ease;
}

.jd-inline-error svg {
  flex-shrink: 0;
}

/* Shake Animation */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

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

/* Toast Notifications */
.jd-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.jd-toast-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.jd-toast-error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.jd-toast-success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.jd-toast svg {
  flex-shrink: 0;
}

/* Enhanced Input Focus States */
.jd-form-input:focus:not(.jd-input-error),
.jd-form-textarea:focus:not(.jd-input-error) {
  border-color: #1d3e59;
  box-shadow: 0 0 0 3px rgba(29, 62, 89, 0.1);
}

.jd-form-input.jd-input-error:focus,
.jd-form-textarea.jd-input-error:focus {
  border-color: #db4c4c;
  box-shadow: 0 0 0 3px rgba(219, 76, 76, 0.1);
}

/* JD Page Responsive */
@media (max-width: 1200px) {
  .jd-content-grid {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
}

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

  .jd-sidebar {
    position: static;
    order: -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .jd-hero {
    min-height: auto;
    padding: 140px 0 60px;
  }

  .jd-hero-title {
    font-size: 32px;
  }

  .jd-meta-row {
    flex-direction: column;
    gap: 12px;
  }

  .jd-meta-item {
    min-width: auto;
    font-size: 14px;
  }

  .jd-meta-divider {
    display: none;
  }

  .jd-content {
    padding: 40px 0 60px;
  }

  .jd-section-title {
    font-size: 28px;
  }

  .jd-apply-title {
    font-size: 24px;
  }

  .jd-apply-form-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .jd-hero-title {
    font-size: 26px;
  }

  .jd-section-title {
    font-size: 24px;
  }
}

/* ====================================
   Contact Form Error Styles
   ==================================== */

/* Error Summary Box */
.form-error-summary {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fca5a5;
  border-radius: 12px;
  margin-bottom: 24px;
  animation: slideDown 0.3s ease;
}

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

.error-summary-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.error-summary-content {
  flex: 1;
}

.error-summary-title {
  font-weight: 600;
  color: #991b1b;
  margin: 0 0 8px 0;
  font-size: 15px;
}

.error-summary-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.6;
}

.error-summary-list li {
  margin-bottom: 4px;
}

.error-summary-list li:last-child {
  margin-bottom: 0;
}

/* Form Group Error State */
.form-group.has-error {
  position: relative;
}

.form-group.has-error .form-label {
  color: #dc2626;
}

/* Input Error State */
.form-input.input-error,
.form-textarea.input-error {
  border-color: #f87171 !important;
  background: #fef2f2;
}

.form-input.input-error:focus,
.form-textarea.input-error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Field Error Message */
.field-error {
  display: none;
  align-items: flex-start;
  gap: 6px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  animation: fadeIn 0.2s ease;
}

.form-group.has-error .field-error,
.form-checkbox-wrapper.has-error .field-error,
.form-recaptcha.has-error .field-error {
  display: flex;
}

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

.field-error svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #dc2626;
}

.checkbox-error {
  margin-left: 28px;
}

/* Required Mark */
.required-mark {
  color: #dc2626;
  font-weight: 600;
}

/* Shake Animation */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

/* Textarea Footer */
.textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 6px;
  flex-wrap: wrap;
  gap: 8px;
}

.char-count {
  font-size: 12px;
  color: #64748b;
}

/* Attachment Hint */
.attachment-hint {
  font-size: 12px;
  color: #94a3b8;
  margin-left: 8px;
}

/* Form reCAPTCHA Error */
.form-recaptcha.has-error {
  padding: 8px;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fca5a5;
}

/* Submit Button Loading State */
.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

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

/* Checkbox Wrapper for Error State */
.form-checkbox-wrapper.has-error .checkbox-label {
  color: #dc2626;
}

/* Enhanced Focus States for Valid Inputs */
.form-input:focus:not(.input-error),
.form-textarea:focus:not(.input-error) {
  border-color: #1d3e59;
  box-shadow: 0 0 0 3px rgba(29, 62, 89, 0.1);
}

/* Success Toast (for future use) */
.form-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  animation: toastSlideIn 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-toast.toast-error {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form-toast.toast-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #166534;
  border: 1px solid #86efac;
}

/* Form Success Message */
.form-success-message {
  text-align: center;
  padding: 60px 40px;
  animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success-message .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  animation: successPop 0.6s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.form-success-message .success-icon svg {
  width: 40px;
  height: 40px;
}

.form-success-message .success-title {
  font-size: 28px;
  font-weight: 700;
  color: #1d3e59;
  margin: 0 0 12px 0;
}

.form-success-message .success-text {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Mobile Responsive for Error Styles */
@media (max-width: 768px) {
  .form-error-summary {
    padding: 14px 16px;
    gap: 12px;
  }

  .error-summary-icon {
    width: 32px;
    height: 32px;
  }

  .error-summary-icon svg {
    width: 16px;
    height: 16px;
  }

  .error-summary-title {
    font-size: 14px;
  }

  .error-summary-list {
    font-size: 13px;
  }

  .form-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .textarea-footer {
    flex-direction: column;
    gap: 4px;
  }

  .attachment-hint {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}
