:root {
  --navy: #0a1628;
  --navy-2: #0d2847;
  --navy-3: #132e4a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-bright: #60a5fa;
  --blue-pale: #dbeafe;
  --blue-ghost: #eff6ff;
  --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;
  --text: #0f172a;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.12);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0 0 0.5rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 1.25rem;
  line-height: 1;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  color: var(--white);
  flex-shrink: 0;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.brand-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 10px;
  transition: var(--transition);
}

.site-nav a:hover {
  color: var(--blue);
  background: var(--blue-ghost);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}

.site-nav .nav-cta:hover {
  background: var(--navy-2);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(13,40,71,0.85) 40%, rgba(37,99,235,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 0 5rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--blue-bright);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-bright), #93c5fd, var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.button-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 12px 40px rgba(37,99,235,0.25);
}

.button-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255,255,255,0.2);
}

.button-full { width: 100%; }

.button-whatsapp {
  background: #25d366;
  color: var(--white);
}

.button-whatsapp:hover { background: #20bd5a; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: float 2.5s ease-in-out infinite;
}

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

.hero-scroll-indicator .material-symbols-rounded {
  font-size: 2rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  z-index: 5;
  margin-top: -3.5rem;
  padding: 0 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: var(--blue-ghost);
  color: var(--blue);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.stat-item span:not(.stat-icon):not(.stat-number) {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

.section-blue {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  color: var(--white);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, #091a30 100%);
  color: var(--white);
}

.section-light {
  background: var(--gray-50);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-label-light {
  color: var(--blue-bright);
}

.section-head {
  margin-bottom: 3rem;
}

.section-head-center {
  text-align: center;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-blue .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.2rem 1.4rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue);
}

.about-experience-badge .material-symbols-rounded {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.about-experience-badge strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.about-experience-badge span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: var(--blue-ghost);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
}

.about-feature .material-symbols-rounded {
  color: var(--blue);
  font-variation-settings: 'FILL' 1;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--text);
}

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

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-card-icon {
  position: absolute;
  bottom: -1.25rem;
  right: 1.25rem;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

.service-card-icon .material-symbols-rounded {
  font-size: 1.5rem;
}

.service-card-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-card-body ul {
  margin-bottom: 1.25rem;
}

.service-card-body li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.4rem;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.service-card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.service-link:hover { gap: 0.7rem; }

.service-link .material-symbols-rounded { font-size: 1rem; }

/* ===== GLOBAL REACH ===== */
.global-map-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.globe-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.globe-visual img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.9);
}

.globe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.6), rgba(37,99,235,0.3));
}

.trade-route-lines {
  position: absolute;
  inset: 0;
}

.route-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-india {
  top: 48%;
  left: 62%;
}

.dot-pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 20px var(--blue-bright), 0 0 60px rgba(96,165,250,0.4);
  animation: pulse 2s ease-in-out infinite;
}

.route-label {
  margin-top: 0.4rem;
  padding: 0.25rem 0.7rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.markets-cards {
  display: grid;
  gap: 1rem;
}

.market-card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.market-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.market-card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--blue-ghost);
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.market-card-icon .material-symbols-rounded { font-size: 1.3rem; }

.market-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.market-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== FLEET / LOGISTICS ===== */
.fleet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fleet-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.fleet-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.fleet-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.fleet-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.fleet-feature:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.fleet-feature .material-symbols-rounded {
  font-size: 1.5rem;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.fleet-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.fleet-feature span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.fleet-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fleet-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fleet-img:first-child {
  grid-row: span 2;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.fleet-img:first-child img {
  min-height: 420px;
}

/* ===== PRODUCTS ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

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

.product-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(10,22,40,0) 30%, rgba(10,22,40,0.85) 100%);
  color: var(--white);
}

.product-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.product-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
}

.product-card-large {
  grid-row: span 2;
  min-height: 580px;
}

.product-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-ghost), var(--blue-pale));
  border: 2px dashed var(--blue-light);
  min-height: 280px;
}

.product-cta-inner {
  text-align: center;
  padding: 2rem;
}

.product-cta-inner .material-symbols-rounded {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.product-cta-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.product-cta-inner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ===== FEATURES ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 18px;
  background: var(--blue-ghost);
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.feature-icon .material-symbols-rounded { font-size: 1.5rem; }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
}

.timeline-line {
  position: absolute;
  top: 1.5rem;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue), var(--blue-pale));
  border-radius: 2px;
}

.timeline-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  margin: -1rem auto 1rem;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

.timeline-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.timeline-icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: var(--blue-ghost);
  color: var(--blue);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.timeline-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.contact-detail .material-symbols-rounded {
  font-size: 1.4rem;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}

.contact-detail a:hover {
  color: var(--blue-bright);
}

/* Quote Form */
.quote-form {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.quote-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.quote-form label {
  display: block;
  margin-bottom: 1rem;
}

.label-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--gray-50);
  transition: var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  background: var(--white);
}

.quote-form textarea { resize: vertical; }

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-links a,
.footer-links span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.floating-actions a:hover {
  transform: scale(1.1);
}

.fab-whatsapp {
  background: #25d366;
  color: var(--white);
}

.fab-email {
  background: var(--blue);
  color: var(--white);
}

/* ===== 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);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-layout,
  .fleet-layout,
  .contact-layout,
  .global-map-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .product-card-large {
    grid-row: span 1;
    min-height: 320px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 0;
  }

  .timeline-line { display: none; }

  .timeline-number {
    margin: 0 auto 0.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img-secondary {
    right: 0;
    bottom: -1rem;
  }

  .about-experience-badge {
    left: 0;
    top: 1rem;
  }

  .fleet-img-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-img:first-child {
    grid-row: span 1;
  }

  .fleet-img:first-child img {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-content {
    padding: 7rem 0 4rem;
  }

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

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

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

  .product-card-large {
    min-height: 300px;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .globe-visual img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
