

/**
 * AURORA FZE - Main Stylesheet
 * Strict Corporate Maritime Design Rules Applied
 */

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #2f363f;
  --color-secondary: #4DA8DA;   
  --color-white: #FFFFFF;
  --color-bg-grey: #F5F7FA;
  --color-border: #D9DEE5;
  --color-text: #2D3748;
  --color-text-muted: #64748B;
  --color-footer-bg: #1d1e1f;
  --color-footer-border: rgba(255, 255, 255, 0.15);
  --color-footer-text: #E2E8F0;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-max: 1200px;
  --header-height: 80px;
  
  --transition-fast: 0.3s ease;
  --transition-normal: 0.35s ease;
}

/* Enforce hard straight edges globally */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open {
  overflow: hidden !important;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   2. LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Button Base */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 22px;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-header-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-header-cta:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

/* ==========================================================================
   3. STICKY HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition-fast);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(23, 59, 103, 0.08);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo & Brand */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

/* Desktop Navigation */
.desktop-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Active Menu Highlight: Navy underline, no background fill */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.dropdown-chevron {
  transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* ==========================================================================
   4. DESKTOP SERVICES DROPDOWN (Fade Down 0.3s)
   ========================================================================== */
.dropdown-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  min-width: 290px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1010;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-bg-grey);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: var(--color-bg-grey);
  color: var(--color-primary);
}

/* Header Right Actions */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hamburger Icon */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: background-color var(--transition-fast);
}

/* ==========================================================================
   5. MOBILE OFF-CANVAS MENU (Slide Left 0.35s)
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(23, 59, 103, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-menu-drawer.is-active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  cursor: pointer;
}

.mobile-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  display: block;
  padding: 6px 0;
}

.mobile-nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-arrow-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  margin-top: 8px;
  border-left: 2px solid var(--color-border);
}

.mobile-dropdown-menu.is-open {
  display: block;
}

.mobile-dropdown-menu li a {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 6px 0;
}

.mobile-dropdown-menu li a:hover {
  color: var(--color-primary);
}

.mobile-cta-wrapper {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.mobile-cta-wrapper .btn {
  width: 100%;
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 80px 0 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1.25fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col .footer-logo-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
}

.footer-logo {
  max-height: 40px;
  width: auto;
  display: block;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.footer-intro-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-secondary);
  margin-top: 8px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-list li a:hover {
  color: var(--color-secondary);
}

.footer-contact-info {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--color-secondary);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid var(--color-footer-border);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  /* Hide Desktop Elements, Show Hamburger */
  .desktop-nav,
  .desktop-only {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  /* Tablet Footer (2 Columns) */
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  /* Mobile Footer (1 Column, Centered) */
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-heading::after {
    margin: 8px auto 0 auto;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}










/**
 * AURORA FZE - Complete Updated Stylesheet
 * Strict Corporate Maritime Architectural Design
 */

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #173B67;
  --color-secondary: #4DA8DA;
  --color-white: #FFFFFF;
  --color-bg-grey: #F5F7FA;
  --color-border: #D9DEE5;
  --color-text: #2D3748;
  --color-text-muted: #64748B;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-max: 1200px;
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
}

/* Enforce hard straight edges globally - NO ROUNDED CORNERS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   2. TYPOGRAPHY & LAYOUT UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 95px 0;
  border-bottom: 1px solid var(--color-border);
}

.bg-grey {
  background-color: var(--color-bg-grey);
}

.center-text {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label.text-light {
  color: #82C4EA;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-title.text-white {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.section-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.section-text {
  color: var(--color-text-muted);
  font-size: 0.96875rem;
  margin-bottom: 20px;
}

.section-header {
  margin-bottom: 55px;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 55px;
  gap: 40px;
}

.section-header-flex .header-left {
  flex: 1.2;
}

.section-header-flex .header-right {
  flex: 1;
}

.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   3. BUTTONS (Square, Straight Edges)
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 15px 32px;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-primary:hover {
  background-color: #3b91c2;
  border-color: #3b91c2;
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-secondary-filled {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-secondary-filled:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-cta {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  font-weight: 600;
}

.btn-cta:hover {
  background-color: var(--color-bg-grey);
  color: var(--color-primary);
}

/* ==========================================================================
   4. GRID SYSTEM
   ========================================================================== */
.grid {
  display: grid;
}

.grid-2-col {
  grid-template-columns: repeat(2, 1fr);
}

.grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-col {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4-col {
  grid-template-columns: repeat(4, 1fr);
}

.grid-align-center {
  align-items: center;
}

.gap-xl {
  gap: 60px;
}

.gap-lg {
  gap: 35px;
}

.gap-md {
  gap: 24px;
}

/* ==========================================================================
   5. HERO SECTION WITH STATS RIBBON
   ========================================================================== */
.hero-section {
  position: relative;
  background: url('../img/hero.png') center center / cover no-repeat;
  padding: 100px 0 0 0;
  border-bottom: 1px solid var(--color-border);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14, 38, 68, 0.66) 0%, rgba(23, 59, 103, 0.88) 20%, rgba(23, 59, 103, 0.2) 50%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
}

.hero-content {
  max-width: 780px;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 24px;
  animation: heroZoomIn 0.5s ease-out forwards;
}

.hero-heading .highlight-text {
  color: var(--color-secondary);
}

.hero-subtext {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Stats Ribbon Bar */
.hero-stats-ribbon {
  position: relative;
  z-index: 2;
  background-color: #0F2A4A;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 0;
}

.stats-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes heroZoomIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   6. ABOUT SECTION (ARCHITECTURAL IMAGE FRAME)
   ========================================================================== */
.about-image-frame {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.image-backdrop-accent {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  z-index: 1;
}

.main-about-img {
  position: relative;
  z-index: 2;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-experience-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 3;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 18px 24px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.about-experience-badge .badge-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-experience-badge .badge-sub {
  font-size: 0.75rem;
  color: var(--color-secondary);
}

.about-checklist {
  margin: 25px 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ==========================================================================
   7. SERVICES PREVIEW (4 STRUCTURED CARDS)
   ========================================================================== */
.service-card-v2 {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px 35px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.service-card-v2:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color var(--transition-fast);
}

.service-card-v2:hover .card-top-bar {
  background-color: var(--color-primary);
}

.card-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.card-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #C0C9D6;
}

.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.card-link:hover {
  color: var(--color-secondary);
}

.center-cta-wrapper {
  text-align: center;
  margin-top: 55px;
}

/* ==========================================================================
   8. SECTORS WE ADVISE
   ========================================================================== */
.sector-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 30px 24px;
  border-top: 2px solid var(--color-border);
  transition: border-color var(--transition-fast);
}

.sector-card:hover {
  border-top-color: var(--color-secondary);
}

.sector-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sector-code {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  background-color: var(--color-bg-grey);
  color: var(--color-primary);
  padding: 3px 8px;
  border: 1px solid var(--color-border);
}

.sector-name {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.sector-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   9. WHY CHOOSE AURORA (ACCORDION STAGGERED)
   ========================================================================== */
.reasons-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.reason-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-border);
  padding: 20px 25px;
  transition: border-left-color var(--transition-fast);
}

.reason-item:hover, .reason-item.active {
  border-left-color: var(--color-primary);
}

.reason-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.reason-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.reason-heading {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.reason-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding-left: 35px;
}

.visual-wrapper {
  position: relative;
  border: 1px solid var(--color-border);
}

.visual-overlay-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: rgba(23, 59, 103, 0.95);
  color: var(--color-white);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.box-stat {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.box-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   10. METHODOLOGY (3-STEP WORKFLOW)
   ========================================================================== */
.workflow-grid {
  position: relative;
}

.step-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px 30px;
  position: relative;
}

.step-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-bg-grey);
  border: 1px solid var(--color-border);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   11. VISION, MISSION & VALUES (DARK NAVY BLOCK)
   ========================================================================== */
.section-navy-block {
  background-color: #0E2644;
  color: var(--color-white);
  padding: 95px 0;
  border-bottom: 1px solid var(--color-border);
}

.vision-mission-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px 30px;
  margin-top: 20px;
}

.box-subtitle {
  font-size: 1.125rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.box-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.values-subgrid {
  margin-top: 20px;
}

.value-item-dark {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
}

.val-title {
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.val-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* ==========================================================================
   12. TRUST SECTION
   ========================================================================== */
.trust-card-v2 {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 35px 30px;
  border-left: 4px solid var(--color-primary) !important;
}

.trust-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.trust-card-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   13. CALL TO ACTION
   ========================================================================== */
.section-cta {
  background-color: var(--color-primary);
  padding: 90px 0;
  color: var(--color-white);
}

.cta-heading {
  color: var(--color-white);
  font-size: 2.375rem;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 35px auto;
}

/* ==========================================================================
   14. SCROLL ANIMATIONS (Vanilla JS Triggers)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-heading { font-size: 2.375rem; }
  .grid-2-col, .grid-3-col { grid-template-columns: 1fr; }
  .grid-4-col { grid-template-columns: repeat(2, 1fr); }
  .section-header-flex { flex-direction: column; align-items: flex-start; gap: 15px; }
  .about-image-frame { padding-right: 0; padding-bottom: 0; }
  .image-backdrop-accent { display: none; }
  .about-experience-badge { position: relative; bottom: auto; right: auto; margin-top: -30px; width: fit-content; }
  .stats-grid { border-left: none; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 15px 0; }
  .stat-box:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .grid-2x2, .grid-4-col { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 70px 0; }
  .hero-heading { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .cta-heading { font-size: 1.75rem; }
}







/* Fix: Place underline directly below the text */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; /* Changed from 18px to 0 */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}








/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* Inner Hero Section */
.inner-hero-section {
  position: relative;
  height: 380px;
  background: url('..img/about.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 59, 103, 0.88);
  z-index: 1;
}

.inner-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.inner-hero-heading {
  font-size: 2.375rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.breadcrumb-nav {
  display: inline-block;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-item a {
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--color-secondary);
}

.breadcrumb-item.active {
  color: var(--color-secondary);
  font-weight: 500;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* Image Frame Utility */
.image-frame {
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Overview CTA */
.overview-cta {
  margin-top: 30px;
}

/* Story Section */
.story-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.story-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.96875rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* Who We Work With Cards */
.client-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 35px 28px;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.client-card:hover {
  border-color: var(--color-primary);
  background-color: #FAFCFF;
}

.client-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.client-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.client-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Our Approach Split & Horizontal Feature Rows */
.approach-feature-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 20px;
}

.feature-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Vision & Mission Panels */
.panel-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px 35px;
  height: 100%;
}

.panel-header-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.panel-icon-box {
  display: flex;
  align-items: center;
}

.panel-heading {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.panel-body-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Core Values Boxes */
.value-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 32px 22px;
  text-align: center;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.value-box:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.value-box-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.value-box-title {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.value-box-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Why Choose Aurora Checklist */
.reasons-checklist {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checklist-icon {
  margin-top: 3px;
  flex-shrink: 0;
}

.checklist-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.checklist-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Our Commitment Section */
.commitment-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.commitment-text {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Responsive Overrides for About Page */
@media (max-width: 992px) {
  .inner-hero-section {
    height: 320px;
  }
  .inner-hero-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) {
  .inner-hero-heading {
    font-size: 1.625rem;
  }
  .approach-feature-row {
    flex-direction: column;
    gap: 10px;
  }
}


/* Fix Breadcrumb List Markers */
.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  list-style: none !important; /* Removes 1. 2. 3. numbers */
  padding: 0 !important;
  margin: 0 !important;
}

.breadcrumb-list li {
  list-style: none !important;
}




/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */

.align-start {
  align-items: flex-start;
}

/* Info Blocks */
.info-blocks-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 18px 20px;
}

.info-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
}

.info-value a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.info-value a:hover {
  color: var(--color-secondary);
}

.response-guarantee-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-bg-grey);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary) !important;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
}

/* Form Container */
.form-container-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px;
}

.form-title {
  font-size: 1.625rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-label .required {
  color: #D93838;
}

.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-full {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-weight: 600;
}

.form-status-msg {
  padding: 14px 18px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.form-status-msg.success {
  background-color: #EBF7EE;
  border-color: #34A853;
  color: #1E6B30;
}

.form-status-msg.error {
  background-color: #FDF2F2;
  border-color: #EA4335;
  color: #9C1C11;
}

/* Expectation Cards */
.expectation-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 35px 28px;
  position: relative;
}

.card-num-badge {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.expectation-title {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.expectation-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Location Visual */
.location-card-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 35px;
  border-top: 4px solid var(--color-primary) !important;
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.location-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9375rem;
}

.coverage-list li strong {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .form-container-box {
    padding: 25px 20px;
  }
}








/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

/* Filter Bar */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 22px;
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  font-weight: 600;
}

/* Gallery Grid & Cards */
.gallery-item {
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.gallery-item.hide {
  display: none;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 280px;
  background-color: var(--color-primary);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(23, 59, 103, 0.92) 0%, rgba(23, 59, 103, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.gallery-caption {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0;
  line-height: 1.3;
}

.view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 38, 68, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 3001;
  max-width: 900px;
  width: 90%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  font-size: 2.25rem;
  color: var(--color-white);
  cursor: pointer;
  line-height: 1;
}

.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.lightbox-caption-bar {
  padding: 20px 25px;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.lightbox-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lightbox-title {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-top: 4px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .gallery-card {
    height: 240px;
  }
  .gallery-filter-bar {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8125rem;
    width: 100%;
  }
}









/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

/* Intro Paragraphs */
.intro-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.intro-paragraph {
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Horizontal Overview Cards */
.overview-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.overview-card {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 24px 30px;
  gap: 24px;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.overview-card:hover {
  border-color: var(--color-primary);
  background-color: #FAFCFF;
  transform: translateX(4px);
}

.card-icon-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.card-content-col {
  flex-grow: 1;
}

.card-heading {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.card-action-col {
  flex-shrink: 0;
  color: var(--color-primary);
}

.arrow-icon {
  transition: transform var(--transition-fast);
}

.overview-card:hover .arrow-icon {
  transform: translateX(5px);
  color: var(--color-secondary);
}

/* Service Detail Sections (Alternating) */
.service-details-container {
  padding: 20px 0;
}

.service-detail-section {
  scroll-margin-top: 100px; /* Offset for sticky header */
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 auto;
  width: 100%;
}

.detail-bullets {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.detail-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

.detail-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
}

/* Feature Blocks */
.feature-block-v2 {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 32px 24px;
  text-align: center;
}

.block-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.block-title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.block-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Timeline Process */
.timeline-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 40px;
}

.timeline-step {
  flex: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.step-heading {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.timeline-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Industry Cards */
.industry-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 30px 24px;
  border-top: 3px solid var(--color-primary) !important;
}

.industry-title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.industry-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* FAQ Accordion */
.faq-accordion-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .reverse-tablet {
    display: flex;
    flex-direction: column-reverse;
  }
  .timeline-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .timeline-connector {
    transform: rotate(90deg);
    margin: -10px 0;
  }
}

@media (max-width: 768px) {
  .overview-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .card-action-col {
    align-self: flex-end;
  }
}