/* =============================================
   EXPRESHIP - Logistics & Transportation
   Complete Design System
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   CSS Custom Properties (Design Tokens)
   ============================================= */
:root {
  /* Primary Colors */
  --navy-900: #060E1B;
  --navy-800: #0A1628;
  --navy-700: #0F2241;
  --navy-600: #152D54;
  --navy-500: #1B3A6B;
  --navy-400: #2A4F8A;
  --navy-300: #4A6FA0;
  
  /* Accent Colors */
  --orange-500: #0066cc;
  --orange-400: #3385d6;
  --orange-300: #66a3e0;
  --orange-600: #0052a3;
  --orange-glow: rgba(0, 102, 204, 0.3);
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8F9FC;
  --gray-100: #F0F2F7;
  --gray-200: #E2E6EF;
  --gray-300: #C8CDD9;
  --gray-400: #9BA3B5;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  
  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #0A1628 0%, #152D54 100%);
  --gradient-orange: linear-gradient(135deg, #0066cc 0%, #3385d6 100%);
  --gradient-hero: linear-gradient(135deg, #060E1B 0%, #0F2241 50%, #152D54 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.9) 0%, rgba(15, 34, 65, 0.8) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-orange: 0 8px 25px rgba(0, 102, 204, 0.3);
  --shadow-card: 0 5px 20px rgba(10, 22, 40, 0.08);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Container */
  --container-max: 1280px;
  --container-padding: 20px;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-800);
}

/* =============================================
   Utility Classes
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 60px 0;
}

.section--gray {
  background-color: var(--gray-50);
}

.section--navy {
  background: var(--gradient-navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-500);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--orange-500);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--orange-500);
  color: var(--orange-500);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
}

.btn-outline:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  font-size: 18px;
  transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* =============================================
   Top Bar
   ============================================= */
.top-bar {
  background: var(--navy-900);
  padding: 10px 0;
  font-size: 13px;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__item i {
  color: var(--orange-500);
  font-size: 14px;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__social a {
  color: var(--gray-400);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.top-bar__social a:hover {
  color: var(--orange-500);
}

/* =============================================
   Header / Navbar
   ============================================= */
.header {
  background: var(--navy-800);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
}

.header__logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.header__logo-text span {
  color: var(--orange-500);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 28px 16px;
  position: relative;
  transition: color var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--orange-500);
}

.header__nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--orange-500);
  border-radius: 3px 3px 0 0;
}

/* Dropdown */
.header__dropdown {
  position: relative;
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 100;
}

.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-menu a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  color: var(--gray-700);
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--gray-100);
}

.header__dropdown-menu a:hover {
  color: var(--orange-500);
  background: var(--gray-50);
  padding-left: 28px;
}

.header__dropdown-menu a:last-child {
  border-bottom: none;
}

.header__cta {
  margin-left: 20px;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 45, 84, 0.5) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 0, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-400);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero__title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--orange-500);
  position: relative;
}

.hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 3px solid var(--orange-500);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: 1;
}

.hero__float-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

.hero__float-card--1 {
  bottom: 30px;
  left: -30px;
}

.hero__float-card--2 {
  top: 30px;
  right: -20px;
  animation-delay: 2s;
}

.hero__float-card-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.hero__float-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.hero__float-card-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Tracking Box */
.hero__tracking {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.hero__tracking-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--navy-800);
  transition: border-color var(--transition-fast);
}

.hero__tracking-input:focus {
  border-color: var(--orange-500);
}

.hero__tracking-input::placeholder {
  color: var(--gray-400);
}

.hero__tracking-btn {
  padding: 14px 28px;
}

/* =============================================
   Services Section
   ============================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--orange-500);
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--gradient-orange);
  color: var(--white);
  transform: scale(1.05);
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange-500);
  transition: gap var(--transition-base);
}

.service-card__link:hover {
  gap: 14px;
}

/* =============================================
   About Section
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.about__experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-orange);
  z-index: 2;
}

.about__experience-badge-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.about__experience-badge-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about__content .section-label {
  text-align: left;
  justify-content: flex-start;
}

.about__content .section-title {
  text-align: left;
}

.about__text {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-700);
}

.about__feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 107, 0, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  font-size: 13px;
  flex-shrink: 0;
}

/* =============================================
   Counter / Stats Section
   ============================================= */
.stats {
  background: var(--gradient-navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--orange-500);
  font-size: 26px;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__number span {
  color: var(--orange-500);
}

.stat-item__label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* =============================================
   How It Works Section
   ============================================= */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--gray-200), var(--orange-500));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step__number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--orange-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-500);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.process-step:hover .process-step__number {
  background: var(--gradient-orange);
  color: var(--white);
  transform: scale(1.1);
}

.process-step__icon {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--navy-700);
}

.process-step__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  background: var(--gradient-orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-section__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-section .btn-white:hover {
  background: var(--navy-800);
  color: var(--white);
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 0 15px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-card__quote {
  font-size: 50px;
  color: var(--orange-500);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFC107;
  font-size: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--orange-300);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-800);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--gray-400);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.testimonials__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy-700);
  transition: all var(--transition-base);
  cursor: pointer;
}

.testimonials__nav-btn:hover {
  background: var(--gradient-orange);
  border-color: var(--orange-500);
  color: var(--white);
}

/* =============================================
   Blog Section
   ============================================= */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.08);
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__content {
  padding: 28px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--gray-400);
}

.blog-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card__meta-item i {
  color: var(--orange-500);
}

.blog-card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.blog-card__title:hover {
  color: var(--orange-500);
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange-500);
  transition: gap var(--transition-base);
}

.blog-card__link:hover {
  gap: 14px;
}

/* =============================================
   Partners Section
   ============================================= */
.partners {
  padding: 60px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.partners__track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollPartners 30s linear infinite;
}

.partners__logo {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity var(--transition-base);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-400);
  white-space: nowrap;
  letter-spacing: 1px;
}

.partners__logo:hover {
  opacity: 0.8;
}

@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--navy-900);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__brand p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--gradient-orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--orange-500);
  border-radius: 3px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links a::before {
  content: '›';
  color: var(--orange-500);
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.footer__links a:hover {
  color: var(--orange-500);
  padding-left: 6px;
}

.footer__links a:hover::before {
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer__contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 107, 0, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  font-size: 16px;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer__contact-text strong {
  color: var(--white);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a:hover {
  color: var(--orange-500);
}

/* =============================================
   Breadcrumb / Page Header
   ============================================= */
.page-header {
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--orange-500);
}

.breadcrumb__separator {
  color: var(--orange-500);
}

.breadcrumb__current {
  color: var(--orange-400);
  font-weight: 500;
}

/* =============================================
   About Page Specifics
   ============================================= */
.mission-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mv-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange-500);
  margin-bottom: 20px;
}

.mv-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.mv-card__text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline__item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline__content {
  width: 42%;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-500);
  margin-bottom: 6px;
}

.timeline__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =============================================
   Team Section
   ============================================= */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card__image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.08);
}

.team-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.8));
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.team-card:hover .team-card__overlay {
  transform: translateY(0);
}

.team-card__overlay a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.team-card__overlay a:hover {
  background: var(--orange-500);
}

.team-card__info {
  padding: 22px;
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: var(--orange-500);
  font-weight: 500;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.faq__categories {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.faq__category-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all var(--transition-base);
  cursor: pointer;
}

.faq__category-btn.active,
.faq__category-btn:hover {
  background: var(--gradient-orange);
  color: var(--white);
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.accordion-item.active {
  border-color: var(--orange-500);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-800);
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  color: var(--orange-500);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy-700);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  background: var(--gradient-orange);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body__inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
}

.faq__sidebar {
  position: sticky;
  top: 100px;
}

.faq__contact-card {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  text-align: center;
}

.faq__contact-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 14px;
}

.faq__contact-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* =============================================
   Blog Page Specifics
   ============================================= */
.blog-page__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.blog-page__posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

.sidebar-widget__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

.sidebar-widget__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--orange-500);
}

.sidebar-search {
  display: flex;
  gap: 8px;
}

.sidebar-search input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: border-color var(--transition-fast);
}

.sidebar-search input:focus {
  border-color: var(--orange-500);
}

.sidebar-search button {
  padding: 12px 18px;
  background: var(--gradient-orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: all var(--transition-base);
}

.sidebar-search button:hover {
  transform: translateY(-2px);
}

.sidebar-categories li {
  margin-bottom: 10px;
}

.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.sidebar-categories a:hover {
  background: var(--gray-50);
  color: var(--orange-500);
}

.sidebar-categories a span {
  background: var(--gray-100);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.sidebar-recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-recent-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.sidebar-recent-post__date {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.sidebar-recent-post__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.sidebar-recent-post__title:hover {
  color: var(--orange-500);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tag {
  padding: 6px 16px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.sidebar-tag:hover {
  background: var(--gradient-orange);
  color: var(--white);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.pagination a:hover,
.pagination span.active {
  background: var(--gradient-orange);
  border-color: var(--orange-500);
  color: var(--white);
}

/* =============================================
   Blog Detail Page
   ============================================= */
.blog-detail__content {
  max-width: 800px;
}

.blog-detail__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.blog-detail__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
}

.blog-detail__meta-item i {
  color: var(--orange-500);
}

.blog-detail__featured-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  max-height: 450px;
  object-fit: cover;
}

.blog-detail__body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-600);
}

.blog-detail__body h2 {
  font-size: 26px;
  margin: 36px 0 16px;
}

.blog-detail__body h3 {
  font-size: 21px;
  margin: 28px 0 14px;
}

.blog-detail__body p {
  margin-bottom: 20px;
}

.blog-detail__body blockquote {
  border-left: 4px solid var(--orange-500);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--gray-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--navy-700);
  font-size: 17px;
}

.blog-detail__body ul {
  margin: 16px 0;
  padding-left: 20px;
}

.blog-detail__body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.blog-detail__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: var(--radius-full);
}

.blog-detail__tags-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-detail__tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail__tags strong {
  font-size: 15px;
  color: var(--navy-800);
}

.blog-detail__share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-detail__share strong {
  font-size: 15px;
  color: var(--navy-800);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  background: var(--gradient-orange);
  color: var(--white);
}

/* Author Box */
.author-box {
  display: flex;
  gap: 24px;
  padding: 30px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-top: 36px;
}

.author-box img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.author-box__role {
  font-size: 13px;
  color: var(--orange-500);
  margin-bottom: 10px;
}

.author-box__bio {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Related Posts */
.related-posts {
  margin-top: 60px;
}

/* Comments */
.comments-section {
  margin-top: 60px;
}

.comment {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
}

.comment img {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.comment__name {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-800);
}

.comment__date {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.comment__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.comment__reply {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-500);
  margin-top: 8px;
  display: inline-block;
}

/* Comment Form */
.comment-form {
  margin-top: 40px;
}

.comment-form h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

/* =============================================
   Contact Page
   ============================================= */
.contact__info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-info-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange-500);
  margin: 0 auto 20px;
}

.contact-info-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-card__text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact__form-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  background: var(--gray-200);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   Forms
   ============================================= */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--navy-800);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =============================================
   Tracking Page
   ============================================= */
.tracking__form-container {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.tracking__input-group {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.tracking__input-group input {
  flex: 1;
  padding: 16px 22px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: border-color var(--transition-fast);
}

.tracking__input-group input:focus {
  border-color: var(--orange-500);
}

.tracking-result {
  max-width: 800px;
  margin: 0 auto;
  display: none;
}

.tracking-result.show {
  display: block;
}

.tracking-result__header {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tracking-result__info h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
}

.tracking-result__status {
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.tracking-timeline {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px;
}

.tracking-timeline__item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.tracking-timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 35px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.tracking-timeline__item.active:not(:last-child)::before {
  background: var(--orange-500);
}

.tracking-timeline__dot {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-500);
  flex-shrink: 0;
  z-index: 2;
}

.tracking-timeline__item.active .tracking-timeline__dot {
  background: var(--gradient-orange);
  color: var(--white);
}

.tracking-timeline__date {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.tracking-timeline__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  margin-bottom: 4px;
}

.tracking-timeline__location {
  font-size: 13px;
  color: var(--gray-500);
}

/* =============================================
   Quote Page
   ============================================= */
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}

.quote__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.quote__form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quote__form-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 30px;
}

.quote__form-section {
  margin-bottom: 28px;
}

.quote__form-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote__form-section-title i {
  color: var(--orange-500);
}

.quote__sidebar-card {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  margin-bottom: 24px;
}

.quote__sidebar-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 18px;
}

.quote__sidebar-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.quote__sidebar-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.quote__sidebar-feature i {
  color: var(--orange-500);
  font-size: 16px;
}

/* =============================================
   Back to Top Button
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* =============================================
   Scroll Reveal Animations
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* =============================================
   Service Detail Page
   ============================================= */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.service-detail__image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  max-height: 400px;
  object-fit: cover;
}

.service-detail__body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-600);
}

.service-detail__body h2 {
  font-size: 26px;
  margin: 32px 0 16px;
}

.service-detail__body p {
  margin-bottom: 18px;
}

.service-detail__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.service-detail__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-700);
}

.service-detail__feature i {
  color: var(--orange-500);
}

.service-detail__process {
  margin: 40px 0;
}

.service-detail__process-step {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  padding: 22px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange-500);
}

.service-detail__process-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.service-detail__process-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.service-detail__process-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Sidebar */
.service-sidebar__nav {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  margin-bottom: 24px;
}

.service-sidebar__nav-title {
  padding: 20px 24px;
  background: var(--gradient-navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.service-sidebar__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 15px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.service-sidebar__nav a:hover,
.service-sidebar__nav a.active {
  background: rgba(255, 107, 0, 0.06);
  color: var(--orange-500);
  padding-left: 30px;
}

.service-sidebar__nav a:last-child {
  border-bottom: none;
}

.service-sidebar__cta {
  background: var(--gradient-orange);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: var(--white);
}

.service-sidebar__cta h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

.service-sidebar__cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* =============================================
   Working Hours Table
   ============================================= */
.working-hours {
  width: 100%;
  margin-top: 30px;
}

.working-hours tr {
  border-bottom: 1px solid var(--gray-100);
}

.working-hours td {
  padding: 12px 0;
  font-size: 14px;
}

.working-hours td:first-child {
  font-weight: 600;
  color: var(--navy-800);
}

.working-hours td:last-child {
  text-align: right;
  color: var(--gray-500);
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1200px) {
  .hero__title {
    font-size: 46px;
  }
  
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .header__nav.open {
    display: flex;
  }
  
  .header__nav-link {
    padding: 16px;
    font-size: 20px;
  }
  
  .header__nav-link.active::after {
    display: none;
  }
  
  .header__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    min-width: auto;
    text-align: center;
  }
  
  .header__dropdown-menu a {
    color: rgba(255, 255, 255, 0.6);
    border-bottom: none;
    padding: 8px 16px;
    font-size: 16px;
  }
  
  .header__dropdown-menu a:hover {
    background: transparent;
    padding-left: 16px;
  }
  
  .header__cta {
    display: none;
  }
  
  .header__hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero__desc {
    margin: 0 auto 36px;
  }
  
  .hero__buttons {
    justify-content: center;
  }
  
  .hero__tracking {
    margin: 0 auto;
  }
  
  .hero__image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about__content .section-label,
  .about__content .section-title {
    text-align: center;
  }
  
  .about__text {
    text-align: center;
  }
  
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process__grid::before {
    display: none;
  }
  
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact__form-map {
    grid-template-columns: 1fr;
  }
  
  .faq__grid {
    grid-template-columns: 1fr;
  }
  
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
  
  .quote__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-vision__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 50px 0 70px;
    min-height: auto;
  }
  
  .hero__title {
    font-size: 34px;
  }
  
  .hero__desc {
    font-size: 16px;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__tracking {
    flex-direction: column;
  }
  
  .hero__float-card {
    display: none;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .process__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .blog__grid {
    grid-template-columns: 1fr;
  }
  
  .blog-page__posts {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .page-header {
    padding: 90px 0 60px;
  }
  
  .page-header__title {
    font-size: 34px;
  }
  
  .testimonial-card {
    min-width: calc(100% - 30px);
  }
  
  .contact__info-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section__title {
    font-size: 30px;
  }
  
  .about__features {
    grid-template-columns: 1fr;
  }
  
  .about__experience-badge {
    right: 10px;
    bottom: -10px;
    padding: 18px;
  }
  
  .about__experience-badge-number {
    font-size: 36px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .service-detail__features {
    grid-template-columns: 1fr;
  }
  
  .tracking__input-group {
    flex-direction: column;
  }
  
  .blog-detail__tags-share {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .author-box img {
    margin: 0 auto;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline__item,
  .timeline__item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 50px;
  }
  
  .timeline__dot {
    left: 20px;
  }
  
  .timeline__content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .btn {
    padding: 13px 26px;
    font-size: 14px;
  }
  
  .stats__grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  .stat-item__number {
    font-size: 38px;
  }
  
  .page-header__title {
    font-size: 28px;
  }
}

/* =============================================
   Preloader
   ============================================= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 107, 0, 0.2);
  border-top-color: var(--orange-500);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
