/* =====================================================
   VAYURA GLOBAL – REFINED DESIGN SYSTEM
   ===================================================== */

:root {
  --bg-main: #f8fafc;
  --bg-section: #ffffff;

  --primary-blue: #0B2545;
  --secondary-blue: #145c9e;
  --accent-red: #b9921c;
  --gold: var(--accent-red);

  --bg-light-tint: #f4f7fa;
  --bg-surface: #ffffff;
  --bg-dark: #0e3a5f;

  --text-main: #102a43;
  --text-soft: #526576;
  --text-light: #829ab1;

  --border: #e1e8ed;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* ---------------- RESET ---------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- TYPOGRAPHY ---------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", "Inter", -apple-system, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

[data-page="why-us"] h1 {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.h1-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--gold);
}

.h1-icon svg {
  width: 48px;
  height: 48px;
}

.h1-title {
  display: block;
}

@media (max-width: 768px) {
  h1 {
    align-items: center;
    text-align: center;
  }

  [data-page="why-us"] h1 {
    justify-content: center;
  }

  .h1-icon {
    justify-content: center;
  }
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 70ch;
}

.text-large {
  font-size: 1.2rem;
  line-height: 1.7;
}

.accent-gold {
  color: var(--gold);
}

/* ---------------- LAYOUT ---------------- */
.container {
  width: min(1280px, 100% - 4rem);
  margin-inline: auto;
}

.section {
  padding: 3rem 0;
}


.section-bg {
  background: var(--bg-surface);
}

.section-light {
  background: var(--bg-light-tint);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.section-dark {
  background: var(--bg-dark);
  color: #ffffff;
}

/* Visual Separatros */
.separator-top {
  border-top: 4px solid var(--gold);
}

.separator-bottom {
  border-bottom: 4px solid var(--gold);
}

/* Section Title Accent */
.section h2 {
  position: relative;
  display: inline-block;
}

/* Small vertical accent for section starts */
.section-start-marker {
  width: 4px;
  height: 60px;
  background: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.grid {
  display: grid;
  gap: 3rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.center {
  text-align: center;
  margin-inline: auto;
}

/* ---------------- TOP BAR ---------------- */
.top-bar {
  background: var(--primary-blue);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar-container {
  width: min(1280px, 100% - 4rem);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar-item:hover {
  color: var(--gold);
}

.top-bar-item svg {
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  gap: 0.75rem;
}

.top-bar-social {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.top-bar-social:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* Hide top bar on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header {
    top: 0 !important;
  }
}

/* ---------------- HEADER ---------------- */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

html {
  scroll-behavior: smooth;
}


.header-cta {
  margin-left: 2rem;
  padding: 0.85rem 1.75rem;
  background: rgb(17, 75, 176);
  color: #ffffff;
  font-weight: 650;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(28, 119, 185, 0.605);
}

.header-cta:hover {
  background: #a22e1ad8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.482);
}


.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  width: min(1280px, 100% - 4rem);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  size: 20px;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-blue);
}

.logo-icon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  /* CRITICAL */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* keeps logo inside */
  display: block;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-toggle {
  width: 34px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
  position: relative;
  padding: 0;
  background: none;
  border: none;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile overlay */
body.nav-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}

/* ---------------- HERO ---------------- */
.hero {
  min-height: 80vh;
  padding: 180px 0 6rem;
  /* Top padding increased for consistent high-impact look */
  background: var(--primary-blue);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image with overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/home/logistics-ground.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

/* Dark overlay for better text contrast */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 59, 95, 0.655), rgba(20, 91, 158, 0.589));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
}

.hero-content {
  max-width: 800px;
}

/* Small tag above heading */
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1 .hero-tag {
  margin-bottom: 0;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-content h1 .accent {
  color: var(--gold);
  display: inline;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-shape {
  position: absolute;
  background: white;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}

.hero-overlay-shape.top {
  top: 10%;
  left: -8%;
}

.hero-overlay-shape.bottom {
  bottom: 10%;
  right: -8%;
}

.hero-overlay-shape h3 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.hero-overlay-shape p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}



/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 0;
}

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary:hover {
  background: #c49016;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2.5rem;
}

.btn-outline:hover {
  background: var(--gold);
  color: white;
}

/* ---------------- SECTION TAG ---------------- */
.section-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ---------------- CONTENT BLOCKS ---------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  box-shadow: var(--shadow-md);
}

.angled-image-wrapper {
  position: relative;
}

.angled-image-wrapper img {
  width: 100%;
  display: block;
}

/* ---------------- STATS ---------------- */
.stats {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
}

.stats .grid-3 {
  margin-top: 0;
}

.stats h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stats p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
}

/* ---------------- CARDS ---------------- */
.card {
  background: white;
  padding: 3rem;
  border-left: 3px solid transparent;
  transition: all 0.3s;
}

.card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------------- OVERLAP SECTION ---------------- */
.overlap-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  align-items: center;
}

.overlap-content {
  background: var(--primary-blue);
  color: white;
  padding: 4rem 6rem 4rem 0;
}

.overlap-content .section-tag {
  color: var(--gold);
}

.overlap-content h2 {
  color: white;
}

.overlap-content p {
  color: rgba(255, 255, 255, 0.92);
}

.overlap-image {
  position: relative;
  margin-left: -6rem;
  z-index: 1;
}

.overlap-image img {
  width: 100%;
  box-shadow: var(--shadow-lg);
}

/* ---------------- LAYERED PANEL ---------------- */
.layered-panel {
  background: white;
  padding: 4rem 3rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  margin: 3rem 0;
}

/* ---------------- FOOTER ---------------- */
.footer {
  padding: 1rem 0 0;
  background: #1a1f2e;
  color: #e5e7eb;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 1rem;
  padding-bottom: 0rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: #f3f4f6;
  margin-bottom: 0.5rem;
}

.footer-logo .logo-icon {
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 3rem;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 280px;
  margin: 0;
}

.footer h4 {
  color: #f3f4f6;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
  transition: all 0.4s ease-out;
}

.footer h4:hover {
  color: var(--gold);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  font-size: 0.875rem;
}

.footer a:hover {
  color: var(--gold);
}

.footer p {
  margin: 0 0 0.6rem 0;
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------------- DROPDOWN MENU ---------------- */
.dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}

.dropbtn {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1100;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: fadeIn 0.2s ease-in-out;
}

.dropdown-content a {
  color: var(--text-main);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f8fafc;
  color: var(--gold);
  padding-left: 1.75rem;
  /* Slight slide effect */
}

.dropdown:hover .dropdown-content {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Mobile Dropdown Fixes */
@media (max-width: 900px) {
  .dropdown {
    display: block;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    display: none;
    /* Hidden by default */
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    min-width: 100%;
    background: transparent;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropbtn::after {
    content: ' +';
    margin-left: auto;
  }
}


/* ---------------- NEW MINIMALIST PRODUCT PAGES ---------------- */

/* Page Header */
.product-page-header {
  padding: 180px 0 80px;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: var(--primary-blue);
  position: relative;
  z-index: 2;
  display: inline-block;
}

.product-header-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  background: white;
  padding: 1.25rem;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  /* Center svg */
  align-items: center;
  justify-content: center;
}

.product-page-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
}

/* Background SVGs for decoration */
.bg-decoration {
  position: absolute;
  color: rgba(11, 37, 69, 0.03);
  /* Very subtle primary blue */
  z-index: 1;
  pointer-events: none;
}

.bg-decoration-1 {
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
}

.bg-decoration-2 {
  bottom: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
}


/* Product Grid */
.product-grid-section {
  padding: 6rem 0;
  background: #ffffff;
}

.modern-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.modern-product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modern-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.mpc-image {
  width: 100%;
  height: 240px;
  background-color: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.mpc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-product-card:hover .mpc-image img {
  transform: scale(1.05);
}

.mpc-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mpc-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-blue);
}

.mpc-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.mpc-content p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.mpc-highlights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.mpc-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: #f0f4f8;
  color: var(--text-soft);
  font-weight: 500;
}


.btn-mpc {
  align-self: flex-start;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.btn-mpc:hover {
  gap: 0.75rem;
}

/* Feature Section (Icons) */
.key-features-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.feature-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.minimal-feature {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.minimal-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.minimal-feature h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.minimal-feature p {
  font-size: 0.9rem;
}



.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  border: 1px solid #374151;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Footer Contact Info - Enhanced with Icons */
.footer-contact-info h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contact-info h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1.5px solid #4b5563;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
}

.contact-text a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-text a:hover {
  color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #374151;
  padding: 0.5rem 0;
  background: #151923;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #6b7280;
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.back-to-top {
  width: 50px;
  height: 50px;
  background: transparent;
  color: #9ca3af;
  border: 1px solid #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  border-radius: 100%;
}

.back-to-top:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 4rem 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ---------------- REVEAL ANIMATION ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------------- UTILITIES ---------------- */
.mb-3 { margin-bottom: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-05 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 2rem; }
.text-left { text-align: left; }
.font-medium { font-size: 1.8rem; }
.gap-4 { gap: 4rem; }
.gap-2 { gap: 2rem; }
.gap-1-5 { gap: 1.5rem; }
.align-start { align-items: start; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }
.text-gold { color: var(--gold); }
.contact-link { text-decoration: none; color: inherit; font-weight: 600; }
.map-container { margin-top: 2rem; border-radius: 4px; overflow: hidden; height: 300px; border: 1px solid var(--border); }
.grid-2-cols { display: grid; grid-template-columns: 1fr 1fr; }
.col-span-2 { grid-column: span 2; }

.industries-accordion.responsive {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.section-cta-simple {
  padding: 2.25rem 0;
  background: var(--primary-blue);
  color: white;
  text-align: center;
}

.section-cta-simple h2 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
}

.section-cta-simple p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.mobile-menu-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 1rem 0 2rem;
  line-height: 1.6;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1100px) {
  .hero::before {
    width: 100%;
    height: 45%;
    bottom: 0;
    top: auto;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-image-frame {
    max-width: 500px;
    margin: 0 auto;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .overlap-section {
    grid-template-columns: 1fr;
  }

  .overlap-content {
    padding: 4rem;
  }

  .overlap-image {
    margin-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 3rem);
  }

  .nav-container {
    width: calc(100% - 3rem);
  }

  .section {
    padding: 6rem 0;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

  .hero-overlay-shape {
    display: none;
  }

  /* Mobile navigation styles */
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: white;
      flex-direction: column;
      justify-content: flex-start;
      padding: 6rem 2rem 2rem;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
      transition: right 0.3s ease;
      z-index: 999;
      gap: 0;
    }

    .nav-links.show {
      right: 0;
    }

    .nav-links li {
      padding: 0;
      border-bottom: 1px solid var(--border);
    }

    .nav-links a {
      display: block;
      padding: 1rem 0;
      color: var(--text-main);
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold);
      background: transparent;
      padding-left: 0.5rem;
    }

    .dropdown {
      width: 100%;
    }

    .dropdown-content {
      position: static;
      display: none;
      background: transparent;
      box-shadow: none;
      border: none;
      padding: 0;
      margin-top: 0;
    }

    .dropdown.active .dropdown-content {
      display: block;
      padding-left: 1rem;
    }

    .dropdown-content a {
      padding: 0.75rem 0;
      font-size: 0.9rem;
      color: var(--text-soft);
    }

    .dropbtn::after {
      content: ' +';
      margin-left: auto;
      float: right;
    }

    .dropdown.active .dropbtn::after {
      content: ' -';
    }
  }


  .nav-links li {
    padding: 0.75rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .card {
    padding: 2rem;
  }

  .overlap-content {
    padding: 3rem 2rem;
  }

  .layered-panel {
    padding: 3rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= MOBILE SLIDE MENU (RHS STYLE) ================= */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: #ffffff;
  padding: 2rem 1.75rem;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* ✅ THIS enables scrolling */
  -webkit-overflow-scrolling: touch;
}

.menu-open .mobile-menu {
  right: 0;
}



.menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: all;
}

.menu-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 2rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.mobile-logo .logo-icon {
  width: 45px;
  height: 45px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo .logo-icon img {
  width: 140%;
  height: 140%;
  object-fit: contain;
  display: block;
}


/* Prevent background scroll */
.menu-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* ================= MOBILE MENU – CONTACT INFO ================= */

.mobile-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.mobile-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
}

.contact-item {
  margin-bottom: 1.25rem;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-item p {
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.contact-item a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.mobile-social {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.mobile-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 700;
  border-radius: 50%;
}

.mobile-cta {
  display: block;
  text-align: center;
  padding: 0.9rem 1.25rem;
  background: var(--gold);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease;
}

.mobile-cta:hover {
  background: #991b1b;
}

.menu-close {
  position: sticky;
  top: 0;
  background: white;
  padding-bottom: 1rem;
  z-index: 1;
}


/* ================= SIDEBAR TOGGLE BUTTON ================= */
.sidebar-toggle {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.sidebar-toggle:hover {
  background: var(--secondary-blue);
  transform: translateY(-50%) scale(1.1);
}

.menu-open .sidebar-toggle {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .sidebar-toggle {
    display: none;
  }
}

/* Stacked Product Layout (Full Width Alternating) */
.product-stack-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  /* No gaps between rows */
}

.product-stack-card {
  display: flex;
  width: 100%;
  background: white;
  border: none;
  border-radius: 0;
  /* Sharp corners */
  overflow: hidden;
  min-height: 50vh;
  /* Substantial height */
}

/* Alternate Layout (Zigzag) */
.product-stack-card:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #f8fafc;
  /* Slight contrast for alternate rows */
}

.product-stack-card:hover {
  transform: none;
  /* Disable lift effect for full width */
  box-shadow: none;
}

.stack-image {
  flex: 0 0 50%;
  /* Strict 50% width */
  max-width: 50%;
  position: relative;
  height: 400px;
  /* Fixed height */
  min-height: 400px;
}

.stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack-content {
  flex: 0 0 50%;
  /* Strict 50% width */
  max-width: 50%;
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  height: 400px;
  /* Match image height */
  min-height: 400px;
}

.stack-content h3 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stack-content p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 600px;
}

.stack-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.mpc-highlights {
  margin-bottom: 1rem;
}

@media (max-width: 850px) {
  .product-stack-card {
    flex-direction: column !important;
    min-height: auto;
  }

  .stack-image {
    height: 300px;
    flex: none;
    width: 100%;
    max-height: none;
  }

  .stack-content {
    padding: 3rem 1.5rem;
    width: 100%;
    max-width: 100%;
    /* Reset max-width for mobile */
    min-height: auto;
  }
}

/* Global Call-to-Action – High Impact Design */
.section-cta,
.section-closing {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(14, 59, 95, 0.856) 0%, rgba(20, 91, 158, 0.785) 100%),
    url('../assets/images/background/pexels-enginakyurt-12106851.jpg') center/cover no-repeat;
  text-align: center;
}

.section-cta .container,
.section-closing .container {

  text-align: center;
  padding: 3.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(185, 28, 28, 0.15);
}

/* Vertical Grid Lines Pattern */
.section-cta .container::before,
.section-closing .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px);
  background-size: 16.66% 100%;
  z-index: 1;
  pointer-events: none;
}

/* Circular Swirl Pattern (Left) */
.section-cta .container::after,
.section-closing .container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 400px;
  height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='0' cy='200' r='190' stroke='white' stroke-opacity='0.1' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='200' r='160' stroke='white' stroke-opacity='0.1' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='200' r='130' stroke='white' stroke-opacity='0.1' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='200' r='100' stroke='white' stroke-opacity='0.1' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='200' r='70' stroke='white' stroke-opacity='0.1' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='200' r='40' stroke='white' stroke-opacity='0.1' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.section-cta h2,
.section-closing h2 {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.section-cta p,
.section-closing p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}

.section-cta .cta-actions,
.section-closing .cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

/* Primary Dark Button from Image */
.btn-cta-dark {
  background: var(--gold);
  color: #ffffff;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.btn-cta-dark:hover {
  background: #a7522b;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-link-light {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.cta-link-light:hover {
  border-bottom-color: #ffffff;
  opacity: 0.8;
}

@media (max-width: 768px) {

  .section-cta,
  .section-closing {
    padding: 4.5rem 0;
  }

  .section-cta .container,
  .section-closing .container {
    padding: 3.75rem 1.5rem;
  }

  .section-cta .cta-actions,
  .section-closing .cta-actions {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-cta .container::after,
  .section-closing .container::after {
    width: 200px;
    height: 200px;
    left: -10%;
  }
}
