/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(215, 50%, 12%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 50%, 12%);
  --primary: hsl(215, 60%, 22%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 15%, 93%);
  --secondary-foreground: hsl(215, 50%, 12%);
  --muted: hsl(210, 15%, 95%);
  --muted-foreground: hsl(215, 15%, 45%);
  --accent: hsl(38, 90%, 55%);
  --accent-foreground: hsl(215, 50%, 12%);
  --border: hsl(214, 20%, 88%);
  --input: hsl(214, 20%, 88%);
  --ring: hsl(215, 60%, 22%);
  --radius: 0.5rem;
  --navy: hsl(215, 60%, 22%);
  --navy-light: hsl(215, 45%, 35%);
  --navy-dark: hsl(215, 70%, 14%);
  --gold: hsl(38, 90%, 55%);
  --gold-dark: hsl(38, 80%, 42%);
  --success: hsl(145, 60%, 40%);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== FONT HEADING ===== */
.font-heading {
  font-family: 'Montserrat', sans-serif;
}

/* ===== GRADIENTS & BACKGROUNDS ===== */
.bg-navy-gradient {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.bg-hero-overlay {
  background: linear-gradient(to right, hsla(215, 70%, 14%, 0.85), hsla(215, 60%, 22%, 0.6));
}

.bg-background {
  background-color: var(--background);
}

.bg-muted {
  background-color: var(--muted);
}

.bg-card {
  background-color: var(--card);
}

.bg-accent {
  background-color: var(--accent);
}

/* ===== TEXT COLORS ===== */
.text-foreground {
  color: var(--foreground);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-accent {
  color: var(--accent);
}

.text-accent-foreground {
  color: var(--accent-foreground);
}

/* ===== SHADOWS ===== */
.shadow-navy {
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.top-bar-item svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px hsla(215, 50%, 12%, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-logo {
  text-decoration: none;
  display: flex;
  /* Ensure flex behavior */
  align-items: center;
  /* Vertically center */
  justify-content: flex-start;
  /* Force left alignment */
}

.navbar-logo img {
  height: 2.5rem;
  /* Slightly smaller for better mobile fit */
  width: auto;
  transition: transform 0.3s ease;
  display: block;
  /* Remove inline-block gap */
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .navbar-logo img {
    height: 4.5rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--foreground);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  display: none;
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dark);
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.mobile-toggle {
  display: block;
  color: var(--foreground);
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--card);
  border-top: 1px solid var(--border);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.mobile-menu.open {
  display: flex;
  max-height: 500px;
  opacity: 1;
}

.mobile-menu a {
  color: var(--foreground);
  padding: 0.5rem 0;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .mobile-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

/* ===== TOP BAR LINKS ===== */
.top-bar-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-bar-link:hover {
  opacity: 0.8;
}

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
  color: var(--accent);
  font-weight: 700;
}

.mobile-menu a.active {
  color: var(--accent);
}

/* ===== MOBILE CONTACT QUICK LINKS ===== */
.mobile-contact-links {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0.5rem 0;
}

.mobile-contact-link {
  display: inline-flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid var(--border);
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.2s, color 0.2s;
}

.mobile-contact-link:hover {
  background: var(--secondary);
}

.mobile-wa-link {
  color: #25D366;
  border-color: #25D366;
  background: #f0fff5;
}

.mobile-wa-link:hover {
  background: #d4f8e4;
}

/* ===== FORM LABELS ===== */
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ===== HERO BUTTON MOBILE STACK ===== */
@media (max-width: 380px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .hero-buttons .btn-accent,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero-slider {
    height: 85vh;
    min-height: 520px;
  }
}

/* Background Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 12s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      hsla(215, 70%, 10%, 0.88) 0%,
      hsla(215, 60%, 18%, 0.75) 40%,
      hsla(215, 50%, 25%, 0.5) 100%);
}

/* Content Container - full overlay on top of slides */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 5rem;
}

.hero-content .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero Text Blocks */
.hero-text {
  max-width: 48rem;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-text.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  top: auto;
  transform: none;
}

/* Staggered entrance animations */
.hero-text.active .hero-badge {
  animation: heroFadeSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-text.active .hero-title {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-text.active .hero-desc {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-text.active .hero-buttons {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes heroFadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Badge - matches Lovable text-sm (14px) */
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 0 20px hsla(38, 90%, 55%, 0.35);
  align-self: flex-start;
}

/* Title - matches Lovable text-3xl → sm:text-5xl → md:text-7xl, font-black */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--primary-foreground);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Description - matches Lovable text-lg → md:text-xl */
.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px hsla(38, 90%, 55%, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-accent:hover::before {
  width: 300px;
  height: 300px;
}

.btn-accent:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(38, 90%, 55%, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--primary-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  background: var(--navy-light);
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 15;
}

.hero-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-indicator.active {
  background: var(--accent);
  width: 2.5rem;
  box-shadow: 0 0 12px hsla(38, 90%, 55%, 0.5);
}

/* Feature Strip */
.feature-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .feature-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  transition: background 0.3s;
}

@media (min-width: 640px) {
  .feature-item {
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }
}

.feature-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.feature-item:not(:last-child) {
  border-right: none;
}

@media (min-width: 768px) {
  .feature-item:not(:last-child) {
    border-right: 1px solid var(--border);
  }
}

.feature-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.feature-item:hover svg {
  transform: scale(1.15);
}

.feature-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-label {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  color: var(--muted-foreground);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.stat-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin: 0 auto 0.75rem;
  transition: transform 0.2s;
}

.stat-card:hover svg {
  transform: scale(1.1);
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--foreground);
}

.stat-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.2s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.5rem;
}

.service-link svg {
  width: 1rem;
  height: 1rem;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
}

.why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-content .section-title {
  color: var(--primary-foreground);
}

.why-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.reasons-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reason-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.reason-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--accent);
}

.quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  color: rgba(218, 165, 32, 0.2);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.star-filled {
  color: var(--accent);
  fill: var(--accent);
}

.star-empty {
  color: var(--border);
}

.testimonial-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.875rem;
}

.testimonial-role {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.contact-info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 2px var(--accent);
  border-color: var(--accent);
}

.form-textarea {
  resize: none;
}

.btn-full {
  width: 100%;
  padding: 0.75rem;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand img {
  height: 6rem;
  width: auto;
  margin-bottom: 1rem;
  /* Make logo white for dark background */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--gold-dark);
}

.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== TRACK SHIPMENT PAGE ===== */
.track-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
  padding: 4rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .track-hero {
    padding: 6rem 0;
  }
}

.track-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .track-hero h1 {
    font-size: 3rem;
  }
}

.track-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.track-form {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}

.track-input {
  flex: 1;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  outline: none;
}

.track-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.track-input:focus {
  box-shadow: 0 0 0 2px var(--accent);
}

/* Tracking Result Cards */
.tracking-results {
  padding: 4rem 0;
}

.summary-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .summary-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.summary-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
}

.summary-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.summary-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

.summary-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.875rem;
}

/* Timeline */
.timeline-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
}

.timeline-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.timeline-step {
  display: flex;
  gap: 1rem;
}

.timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-dot.completed {
  background: var(--accent);
}

.timeline-dot.pending {
  background: var(--border);
}

.timeline-dot svg {
  width: 1rem;
  height: 1rem;
}

.timeline-dot.completed svg {
  color: var(--accent-foreground);
}

.timeline-dot.pending svg {
  color: var(--muted-foreground);
}

.timeline-line {
  width: 2px;
  height: 3rem;
}

.timeline-line.completed {
  background: var(--accent);
}

.timeline-line.pending {
  background: var(--border);
}

.timeline-info {
  padding-bottom: 2rem;
}

.timeline-event {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
}

.timeline-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* No results */
.no-results {
  text-align: center;
  padding: 3rem 0;
}

.no-results svg {
  width: 4rem;
  height: 4rem;
  color: var(--muted-foreground);
  margin: 0 auto 1rem;
}

.no-results h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.no-results p {
  color: var(--muted-foreground);
}

/* ===== SHIPMENT TRACKING FORM ===== */
.shipment-form-section {
  padding: 4rem 0;
  background: var(--muted);
}

.shipment-form-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
}

.shipment-form-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.shipment-form-card>p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.form-group small {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.success-message {
  background: hsl(145, 60%, 92%);
  border: 1px solid hsl(145, 60%, 40%);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: hsl(145, 60%, 25%);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.success-message svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--success);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .service-hero {
    padding: 6rem 0;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent);
}

.back-link svg {
  width: 1rem;
  height: 1rem;
}

.service-hero-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-hero-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: rgba(218, 165, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.service-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .service-hero h1 {
    font-size: 3rem;
  }
}

.service-hero .subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .service-hero .subtitle {
    font-size: 1rem;
  }
}

/* Service Content Grid */
.service-content-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .service-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.service-main p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-main h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}

.features-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--muted);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

.feature-check svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-check span {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* Sidebar */
.service-sidebar-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px -10px hsla(215, 60%, 22%, 0.3);
  border: 1px solid var(--border);
  position: sticky;
  top: 7rem;
}

.service-sidebar-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
  color: var(--foreground);
}

.sidebar-link:hover {
  background: var(--muted);
}

.sidebar-link.active {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
  font-weight: 700;
}

.sidebar-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.sidebar-link .arrow {
  margin-left: auto;
  width: 0.75rem;
  height: 0.75rem;
}

/* ===== 404 PAGE ===== */
.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  text-align: center;
}

.not-found h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.not-found a {
  color: var(--primary);
  text-decoration: underline;
}

.not-found a:hover {
  color: var(--navy-light);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

/* ===== ICON SVGs (inline SVG sizing) ===== */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* ===== PRELOADER ===== */
/* ===== MODERN PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-animation {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 3rem;
}

.preloader-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: preloaderFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
}

@keyframes preloaderFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.preloader-ring {
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
  border-top-color: var(--accent);
  border-right-color: var(--accent);
}

.preloader-ring-1 {
  width: 150px;
  height: 150px;
  top: 0;
  left: 0;
  animation: preloaderRotate 2s linear infinite;
  opacity: 0.7;
}

.preloader-ring-2 {
  width: 120px;
  height: 120px;
  top: 15px;
  left: 15px;
  animation: preloaderRotate 1.5s linear infinite reverse;
  border-top-color: #f59e0b;
  border-right-color: transparent;
  opacity: 0.5;
}

.preloader-ring-3 {
  width: 90px;
  height: 90px;
  top: 30px;
  left: 30px;
  animation: preloaderRotate 1s linear infinite;
  border-top-color: #fbbf24;
  opacity: 0.3;
}

@keyframes preloaderRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  animation: preloaderPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .preloader-text h2 {
    font-size: 2rem;
  }
}

.preloader-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.preloader-dots span {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: preloaderDotBounce 1.4s ease-in-out infinite;
}

.preloader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.preloader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.preloader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes preloaderDotBounce {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

/* ===== CONTACT FORM MESSAGE ===== */
.contact-form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
  animation: slideDown 0.3s ease-out;
}

.contact-form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SERVICES PAGE ===== */
.services-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
  padding: 6rem 0 4rem;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--primary-foreground);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.services-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .services-hero-title {
    font-size: 4rem;
  }
}

.services-hero-desc {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .services-hero-desc {
    font-size: 1.25rem;
  }
}

.services-section {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px hsla(215, 50%, 12%, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
}

.service-card[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px hsla(215, 50%, 12%, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon.domestic {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
}

.service-icon.international {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.service-icon.express {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.service-icon.door {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.service-icon.cargo {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.service-icon.document {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  color: white;
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--foreground);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: center;
}

.service-btn:hover {
  background: var(--gold-dark);
  transform: translateX(4px);
}

.services-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--primary-foreground);
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

.cta-content p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-cta-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px hsla(38, 90%, 55%, 0.3);
}

.btn-cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px hsla(38, 90%, 55%, 0.4);
}

.btn-cta-outline {
  background: transparent;
  color: var(--primary-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--primary-foreground);
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background: var(--primary-foreground);
  color: var(--navy);
  transform: translateY(-2px);
}

/* AOS Animation Delays */
[data-aos="fade-up"] {
  transition-duration: 0.6s;
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

/* ===== QUOTE MODAL ===== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.quote-modal.active {
  display: flex;
}

.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 95, 0.85);
  backdrop-filter: blur(4px);
}

.quote-modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  z-index: 1;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--muted-foreground);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.quote-modal-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

.quote-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.quote-modal-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .quote-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}

.quote-form-group .required {
  color: var(--destructive);
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.quote-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form-actions {
  margin-top: 1rem;
}

.quote-submit-btn {
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 20px hsla(38, 90%, 55%, 0.3);
}

.quote-submit-btn:hover:not(:disabled) {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px hsla(38, 90%, 55%, 0.4);
}

.quote-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.quote-form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}

.quote-form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.quote-form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 640px) {
  .quote-modal-content {
    padding: 1.5rem;
  }

  .quote-modal-title {
    font-size: 1.5rem;
  }
}