/**
 * KacaKonstruksi - Main Stylesheet
 * Premium Corporate Website - Glass Railing & Construction
 * 
 * Colors:
 * - Navy 900: #0B1D3C (Primary dark)
 * - Navy 800: #102B52
 * - Navy 700: #163870
 * - Blue 600: #1E5FA5
 * - Orange 500: #F26522 (Primary accent)
 * - Orange 400: #FF8540
 * - Black: #0D0D0D
 * - White: #FFFFFF
 * - Gray 100: #F5F7FA
 * - Gray 200: #E8ECF1
 * - Gray 300: #C5CDD6
 * - Gray 600: #5A6573
 * - Gray 800: #2D3748
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --navy-900: #0B1D3C;
  --navy-800: #102B52;
  --navy-700: #163870;
  --blue-600: #1E5FA5;
  --orange-500: #F26522;
  --orange-400: #FF8540;
  --orange-600: #D4541A;
  --black: #0D0D0D;
  --white: #FFFFFF;
  
  /* Gray Scale */
  --gray-100: #F5F7FA;
  --gray-200: #E8ECF1;
  --gray-300: #C5CDD6;
  --gray-400: #A0AEBF;
  --gray-500: #7A8A9E;
  --gray-600: #5A6573;
  --gray-700: #4A5568;
  --gray-800: #2D3748;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-border-hover: rgba(255, 255, 255, 0.25);
  --glass-blur: blur(16px);
  
  /* Dark Glass */
  --dark-glass-bg: rgba(11, 29, 60, 0.85);
  --dark-glass-border: rgba(255, 255, 255, 0.1);
  
  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(11, 29, 60, 0.12);
  --shadow-medium: 0 8px 32px rgba(11, 29, 60, 0.16);
  --shadow-luxury: 0 20px 60px rgba(11, 29, 60, 0.18);
  --shadow-glow: 0 0 40px rgba(242, 101, 34, 0.25);
  
  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-max: 1280px;
  --container-padding: 48px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section {
  padding: var(--section-padding) 0;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--navy-900);
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--navy-900);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy-900);
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.3;
  color: var(--navy-900);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 16px;
}

.text-white { color: var(--white); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-gray-600 { color: var(--gray-600); }
.text-orange { color: var(--orange-500); }
.text-center { text-align: center; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.btn-white {
  background: var(--white);
  color: var(--orange-500);
  box-shadow: var(--shadow-soft);
}

.btn-white:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-medium);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
  transition: var(--transition-base);
}

.navbar.scrolled {
  background: var(--dark-glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--dark-glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.navbar-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

/* Nav Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-icon {
  transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--navy-800);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-base);
  box-shadow: var(--shadow-luxury);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  color: rgba(255, 255, 255, 0.8);
}

.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.dropdown-icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.dropdown-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.dropdown-desc {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* CTA */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.navbar-cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

/* Mobile Toggler */
.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 60, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--navy-900);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  color: var(--white);
  padding: 8px;
}

.mobile-menu-links {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  cursor: pointer;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}

.mobile-dropdown-menu.open {
  max-height: 400px;
}

.mobile-dropdown-item {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mobile-dropdown-item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-contact-link:hover {
  color: var(--orange-400);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--blue-600) 100%);
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 29, 60, 0.95) 0%, rgba(11, 29, 60, 0.82) 50%, rgba(11, 29, 60, 0.55) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-content {
  max-width: 640px;
}

.hero-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.4s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.8s forwards;
}

/* Hero Stats - Normal flow, tidak absolute */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation: fadeInUp 0.8s 1s forwards;
}

.hero-stat {
  text-align: center;
  min-width: 80px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--orange-500);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(232, 148, 58, 0.3);
}

.hero-stat-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--orange-500);
  transition: var(--transition-base);
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  transition: transform 0.2s;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
}

.why-content {
  padding-right: 20px;
}

.why-title {
  color: var(--white);
  margin: 16px 0 20px;
}

.why-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
}

.feature-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
}

.why-cta {
  margin-top: 32px;
}

.why-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.why-image-float {
  animation: float 6s ease-in-out infinite;
}

.why-stat-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  text-align: center;
}

.why-stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--orange-500);
}

.why-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
  background: var(--gray-100);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed var(--gray-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-900);
  margin-top: 20px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 8px;
  line-height: 1.6;
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio-section {
  background: var(--navy-900);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item:nth-child(1) { grid-column: span 2; }
.portfolio-item:nth-child(4) { grid-column: span 2; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 60, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

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

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--orange-400);
  margin-top: 8px;
  transform: translateY(10px);
  transition: transform 0.4s 0.1s ease;
}

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

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.testimonial-slider {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.testimonial-slide {
  display: none;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 48px;
  text-align: center;
}

.testimonial-slide:first-child {
  display: block;
}

.testimonial-quote-icon {
  font-size: 64px;
  line-height: 1;
  color: var(--orange-500);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-top: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--orange-500);
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-align: left;
}

.testimonial-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition-base);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--orange-500);
  width: 32px;
  border-radius: 5px;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  padding: 80px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner-title {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 500px;
}

.cta-banner-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   PAGE HERO (subpages)
   ========================================== */
.page-hero {
  min-height: 50vh;
  min-height: max(50vh, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--blue-600) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 60, 0.5);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--container-padding);
  padding-top: 72px;
}

.page-hero-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--white);
}

.page-hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ==========================================
   CONTENT SECTIONS (about, services, etc.)
   ========================================== */
.content-section {
  padding: var(--section-padding) 0;
}

.content-section-gray {
  background: var(--gray-100);
}

.content-section-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-grid-reversed .content-text {
  order: 2;
}

.content-grid-reversed .content-media {
  order: 1;
}

.content-title {
  margin: 16px 0 20px;
}

.content-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.content-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-cta {
  margin-top: 28px;
}

/* Feature grid for service pages */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.feature-card-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.feature-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-900);
}

.feature-card-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-top: 2px;
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.team-card-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-card-info {
  padding: 20px;
}

.team-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-900);
}

.team-card-role {
  font-size: 13px;
  color: var(--orange-500);
  font-weight: 500;
  margin-top: 2px;
}

.team-card-bio {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 8px;
  line-height: 1.6;
}

/* ==========================================
   CERTIFICATIONS
   ========================================== */
.cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.cert-logo {
  height: 48px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition-base);
}

.cert-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

/* ==========================================
   SERVICE LIST (alternating layout)
   ========================================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-list-item:nth-child(even) {
  direction: rtl;
}

.service-list-item:nth-child(even) > * {
  direction: ltr;
}

.service-list-number {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 120px;
  color: var(--orange-500);
  opacity: 0.08;
  line-height: 1;
  top: -20px;
  left: -10px;
  pointer-events: none;
  z-index: 0;
}

.service-list-content {
  position: relative;
}

.service-list-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy-900);
  position: relative;
  z-index: 1;
}

.service-list-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.service-list-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  aspect-ratio: 4/3;
}

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

/* ==========================================
   PRICING TABLE
   ========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}

.pricing-card-featured {
  border: 2px solid var(--orange-500);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-900);
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin-top: 16px;
}

.pricing-currency {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--orange-500);
  vertical-align: top;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--navy-900);
}

.pricing-unit {
  font-size: 14px;
  color: var(--gray-500);
}

.pricing-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--orange-500);
}

.pricing-cta {
  margin-top: 32px;
  text-align: center;
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  transition: var(--transition-base);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.12);
  background: var(--white);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%235A6573' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Contact Info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.contact-info-item:hover {
  box-shadow: var(--shadow-medium);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-info-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-500);
}

.contact-info-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  margin-top: 2px;
}

.contact-info-value a {
  color: var(--navy-900);
}

.contact-info-value a:hover {
  color: var(--orange-500);
}

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   VISION & MISSION CARDS
   ========================================== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  transition: var(--transition-base);
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.vm-title {
  color: var(--white);
  margin-bottom: 16px;
}

.vm-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

.vm-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy-900);
  padding: 80px 0 40px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-link:hover {
  color: var(--orange-500);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  min-width: 18px;
  margin-top: 2px;
  color: var(--orange-500);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-contact-item a:hover {
  color: var(--orange-500);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}

.footer-legal-link:hover {
  color: var(--orange-500);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--dark-glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Reduced motion */
/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(11,29,60,0.15);
  object-fit: cover;
  aspect-ratio: 16/10;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #E8943A 0%, #F5B85C 100%);
  color: #fff;
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(232,148,58,0.3);
  text-align: center;
  min-width: 140px;
}

.about-exp-number {
  display: block;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-exp-text {
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.4;
}

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.about-desc {
  color: #5a6a7f;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-desc:last-of-type {
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-800);
}

.about-feature svg {
  flex-shrink: 0;
  color: var(--gold);
}

.about-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.categories-section {
  background: var(--gray-50);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.category-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11,29,60,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,29,60,0.12);
}

.category-card:hover .category-overlay {
  opacity: 0.3;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,29,60,0.7) 100%);
  transition: opacity 0.3s ease;
}

.category-content {
  padding: 24px;
}

.category-title {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.category-desc {
  font-size: 14px;
  color: #5a6a7f;
  line-height: 1.6;
  margin-bottom: 14px;
}

.category-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.3s ease;
}

/* ==========================================
   ARTICLES SECTION
   ========================================== */
.articles-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.article-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11,29,60,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11,29,60,0.1);
}

.article-card:hover .article-image img {
  transform: scale(1.06);
}

.article-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.article-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.article-content {
  padding: 24px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #8896a9;
  margin-bottom: 12px;
}

.article-title a {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: var(--gold);
}

.article-excerpt {
  font-size: 15px;
  color: #5a6a7f;
  line-height: 1.7;
  margin: 12px 0 16px;
}

.article-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: var(--gold-dark);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  background: var(--gray-50);
}

.faq-grid {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(11,29,60,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(11,29,60,0.08);
}

.faq-item.active {
  box-shadow: 0 8px 30px rgba(11,29,60,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: #5a6a7f;
  line-height: 1.8;
  font-size: 15px;
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-label,
  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .hero-stats {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
