/* ============================================
   TransWorld Logistics - Global Styles
   ============================================ */

/* CSS Variables */
:root {
  --primary: #0A2540;
  --primary-light: #143a5e;
  --primary-dark: #051829;
  --accent: #FF7A00;
  --accent-light: #ff9933;
  --accent-dark: #cc6200;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(255,122,0,0.15);

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1280px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn i {
  font-size: 14px;
  transition: transform var(--transition-base);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,122,0,0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(255,122,0,0.45);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  justify-content: center;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--accent-light);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-desc.light {
  color: rgba(255,255,255,0.75);
}

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header.scrolled .header-top {
  display: none;
}

.header-top {
  background: var(--primary);
  padding: 8px 0;
  transition: all var(--transition-base);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: 24px;
}

.header-contact a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.header-contact a:hover {
  color: var(--white);
}

.header-social {
  display: flex;
  gap: 16px;
}

.header-social a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: color var(--transition-fast);
}

.header-social a:hover {
  color: var(--accent);
}

.header-main {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: all var(--transition-base);
}

.header.scrolled .header-main {
  padding: 10px 0;
}

.header-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.mainLogo{
  height: auto;
  width: 100%;
  max-width: 200px;
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(255,122,0,0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link i {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

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

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 12px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 100;
}

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

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-menu li a i {
  color: var(--accent);
  font-size: 14px;
  width: 20px;
}

.dropdown-menu li a:hover {
  background: var(--gray-50);
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(10,37,64,0.75) 50%, rgba(10,37,64,0.6) 100%);
  z-index: 1;
}

.hero-slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  background: var(--accent);
  width: 32px;
  border-radius: 5px;
}

.hero-slider-dot:hover {
  background: rgba(255,255,255,0.6);
}

.hero-typewriter-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  min-height: 1.8em;
}

.hero-typewriter-label {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

.typewriter-text {
  display: inline;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
}

.typewriter-cursor {
  display: inline;
  color: var(--accent);
  font-weight: 300;
  font-size: clamp(20px, 3vw, 32px);
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 100px;
}

.hero-inner {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.scroll-down i {
  font-size: 16px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,122,0,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  width: 100%;
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  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(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,122,0,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.service-card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.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-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition-base);
}

.service-card-link:hover {
  gap: 12px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--gray-50);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.why-us-content .section-desc {
  text-align: left;
  margin-bottom: 40px;
}

.why-us-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-us-feature {
  display: flex;
  gap: 16px;
}

.why-us-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.why-us-feature-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.why-us-feature-text p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.why-us-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 13px;
  opacity: 0.9;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 0.3;
}

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

.process-step-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: var(--white);
  border: 2px solid var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.process-step:hover .process-step-icon {
  background: var(--accent);
  transform: scale(1.08);
}

.process-step-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(50% - 12px);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 13px;
  color: var(--gray-500);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials-prev,
.testimonials-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonials-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   GLOBAL COVERAGE
   ============================================ */
.global-coverage {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.global-coverage-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/41949/earth-earth-at-night-night-lights-41949.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.global-coverage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.88);
}

.global-coverage-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.global-coverage-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.global-coverage-stat {
  text-align: center;
  color: var(--white);
}

.global-coverage-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.global-coverage-stat span:last-child {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 6px;
  display: block;
}

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

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

.cta-banner-content h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 500px;
}

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

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

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

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

.footer-logo .logo-icon {
  background: var(--accent);
}

.footer-logo .logo-title {
  color: var(--white);
}

.footer-logo .logo-subtitle {
  color: rgba(255,255,255,0.5);
}

.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact-list li i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
  width: 16px;
}

.footer-bottom {
  background: var(--primary-dark);
  padding: 20px 0;
}

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

.footer-bottom-inner p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/about-bg.jpg') top/cover no-repeat;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.85);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-content h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
  opacity: 0.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.company-story {
  padding: 100px 0;
  background: var(--white);
}

.company-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.company-story-images {
  position: relative;
}

.story-image-main img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.story-image-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 220px;
}

.story-image-secondary img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.story-experience-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.story-badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.story-badge-text {
  font-size: 12px;
  opacity: 0.9;
}

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

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.story-stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.story-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: var(--gray-50);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.mission-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,122,0,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 24px;
}

.mission-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.mission-card p {
  color: var(--gray-500);
  line-height: 1.8;
}

/* Values */
.company-values {
  padding: 100px 0;
  background: var(--white);
}

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

.value-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.value-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.value-card-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Leadership */
.leadership {
  padding: 100px 0;
  background: var(--gray-50);
}

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

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

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

.team-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

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

.team-card-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card-info span {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Timeline */
.timeline-section {
  padding: 100px 0;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 0 0 120px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-year {
  text-align: left;
}

.timeline-content {
  flex: 1;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -46px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -46px;
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Global Presence */
.global-presence {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.presence-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.presence-region {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.presence-region i {
  font-size: 24px;
  color: var(--accent);
}

.presence-region h3 {
  font-size: 18px;
}

.presence-locations li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.presence-locations li i {
  color: var(--accent);
  font-size: 12px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
  padding: 80px 0;
  background: var(--white);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-hero-content .section-title {
  text-align: left;
}

.services-hero-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.services-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.services-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}

.services-hero-feature i {
  color: var(--success);
  font-size: 16px;
}

.services-hero-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Service Detail */
.service-detail {
  padding: 80px 0;
  background: var(--white);
}

.service-detail.alt {
  background: var(--gray-50);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,122,0,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 30px;
  margin-bottom: 20px;
}

.service-detail-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-detail-content > p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.service-detail-feature i {
  color: var(--accent);
  font-size: 16px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--accent);
  color: var(--white);
}

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

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

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}

.gallery-item-info h4 {
  color: var(--white);
  font-size: 18px;
}

.gallery-item-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.gallery-item-zoom:hover {
  background: var(--accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,37,64,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  padding: 16px;
  font-size: 16px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info {
  padding: 80px 0 40px;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.contact-info-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,122,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin: 0 auto 16px;
}

.contact-info-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Contact Main */
.contact-main {
  padding: 40px 0 100px;
  background: var(--white);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.contact-form-wrapper .section-title {
  text-align: left;
  margin-bottom: 8px;
}

.contact-form-wrapper .section-desc {
  text-align: left;
  margin-bottom: 32px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group 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'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}

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

/* FAQ */
.faq-section {
  padding: 80px 0 100px;
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question i {
  color: var(--accent);
  font-size: 14px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-500);
  line-height: 1.8;
  font-size: 15px;
}

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

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

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    order: -1;
  }

  .why-us-image img {
    height: 350px;
  }

  .why-us-image-badge {
    left: auto;
    right: 20px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .testimonial-card {
    min-width: 100%;
  }

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

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

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

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

  .service-detail-grid.reverse {
    direction: ltr;
  }

  .service-detail-image img,
  .services-hero-image img {
    height: 320px;
  }

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

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 350px;
  }

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

  .company-story-grid {
    grid-template-columns: 1fr;
  }

  .story-image-secondary,
  .story-experience-badge {
    display: none;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-year {
    flex: 0 0 auto;
    text-align: left !important;
    font-size: 18px;
  }

  .timeline-content::before {
    left: -36px !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 100px 24px 24px;
    transition: right var(--transition-base);
    z-index: 999;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

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

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: auto;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 14px;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-content {
    padding: 140px 0 80px;
  }

  .hero-stats {
    gap: 24px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-features {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .global-coverage-stats {
    gap: 32px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .presence-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .company-story-grid {
    gap: 40px;
  }

  .story-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

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

  .stat-card {
    flex-direction: column;
    text-align: center;
  }

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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