/**************************
  FONTS & RESETS
***************************/
@import url('https://fonts.googleapis.com/css2?family=Russo+One:wght@300;400&display=swap');

html, body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  font-family: 'Russo One', sans-serif;
  color: #393939;
  font-size: 1rem;
  line-height: 1.6;
}

/**************************
  HEADER & NAVIGATION
***************************/
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  pointer-events: none;
}

.custom-logo {
  position: fixed;
  top: 16px;
  left: 30px;
  height: 48px;
  width: auto;
  z-index: 1000;
  display: block;
}

.mobile-hamburger {
  display: none;
  position: fixed;
  top: 20px; right: 20px;
  z-index: 1001;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: none;
}

.mobile-hamburger span {
  width: 25px;
  height: 3px;
  background: #393939;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#menu ul {
  position: fixed;
  top: 0; right: 30px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
}

#menu ul li {
  margin: 0;
}

#menu ul a {
  font-family: 'Russo One', sans-serif;
  color: #393939;
  font-size: 1.15rem;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.125rem;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

#menu ul a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: #f89939;
  transition: width 0.4s ease;
}

#menu ul a:hover {
  color: #f89939;
}

#menu ul a:hover::before {
  width: 100%;
}

/**************************
  HERO SECTION
***************************/
.hero-section {
  position: relative;
  background: url('https://vegaunieora.com/Images/H2.webp') center center/cover no-repeat;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 6%;
  color: #393939;
  font-family: 'Russo One', sans-serif;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(57, 57, 57, 0.8) 0%, rgba(57, 57, 57, 0.5) 40%, rgba(57, 57, 57, 0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 0 !important;
}

.hero-content h1 {
  color: #f89939;
  font-size: 5rem;
  margin-bottom: 20px;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-transform: uppercase; 
  line-height: 1.25;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/**************************
  BUTTONS
***************************/
.btn {
  display: inline-block;
  padding: 14px 30px;
  text-decoration: none;
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
}

.btn-primary {
  background-color: #64c6c2;
  color: #ffffff;
  border: 2px solid #64c6c2;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1);
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #f89939;
  border-color: #f89939;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 20px rgba(100, 198, 194, 0.3);
  letter-spacing: 0.12em;
}

/**************************
  INDUSTRIES STRIP
***************************/
.industries-strip {
  width: 100%;
  background: linear-gradient(to bottom, #64c6c2 0%, #64c6c2 65%, rgba(100, 198, 194, 0.6) 85%, #ffffff 100%);
  padding: 70px 6% 80px 6%;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
}

.industries-strip h2 {
  font-size: 3rem;
  margin: 0 0 8px 0 !important;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Russo One', sans-serif;
}

.industries-strip p {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 auto !important;
  color: #fff;
  max-width: 900px;
}

/* ================================================
   VEGA PORTFOLIO — v5 (3-column honeycomb offset)
   ================================================ */

/* ── SECTION BACKGROUND: light gradient + hex wireframe decoration ── */
.vp-section {
  position: relative;
  background: linear-gradient(160deg, #eef7f7 0%, #f2f8f8 40%, #e8f4f3 70%, #dff1f0 100%);
  padding: 60px 6% 80px;
  box-sizing: border-box;
  scroll-margin-top: 120px;
  overflow: hidden;
}

/* Decorative wireframe hexagons in background */
.vp-section::before,
.vp-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Large faint hex ring — top right */
.vp-section::before {
  width: 520px;
  height: 520px;
  top: -80px;
  right: -100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpolygon points='100,4 188,52 188,148 100,196 12,148 12,52' fill='none' stroke='%2364c6c2' stroke-width='2'/%3E%3Cpolygon points='100,20 172,62 172,138 100,180 28,138 28,62' fill='none' stroke='%2364c6c2' stroke-width='1.2'/%3E%3Cpolygon points='100,36 156,72 156,128 100,164 44,128 44,72' fill='none' stroke='%2364c6c2' stroke-width='0.8'/%3E%3C/svg%3E");
}

/* Medium faint hex ring — bottom left */
.vp-section::after {
  width: 380px;
  height: 380px;
  bottom: 40px;
  left: -80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpolygon points='100,4 188,52 188,148 100,196 12,148 12,52' fill='none' stroke='%2364c6c2' stroke-width='2'/%3E%3Cpolygon points='100,24 168,66 168,134 100,176 32,134 32,66' fill='none' stroke='%2364c6c2' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.13;
}

/* Small scattered dot accent nodes */
.vp-cluster::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f89939;
  opacity: 0.55;
  top: 60px;
  right: 8%;
  box-shadow: 0 0 0 3px rgba(248,153,57,0.15);
  pointer-events: none;
  z-index: 0;
}

.vp-cluster::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64c6c2;
  opacity: 0.6;
  bottom: 80px;
  left: 5%;
  box-shadow: 0 0 0 3px rgba(100,198,194,0.15);
  pointer-events: none;
  z-index: 0;
}

/* ── PORTFOLIO HEADER ── */
.vp-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vp-header__title {
  font-family: 'Russo One', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #f89939;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.vp-header__subtitle {
  font-family: 'Russo One', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #393939;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  line-height: 1.4;
}

.vp-header__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #393939;
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.vp-header__description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #393939;
  margin: 0;
  line-height: 1.75;
  opacity: 0.9;
}

.vp-cluster {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 580px;
  overflow: hidden;
  background: transparent;
}

/* White border outline around each hex using a layered pseudo approach */
.vp-hex {
  position: absolute;
  width: 390px;
  height: 220px;
  clip-path: polygon(
    55px 0%,
    calc(100% - 55px) 0%,
    100% 50%,
    calc(100% - 55px) 100%,
    55px 100%,
    0% 50%
  );
  overflow: hidden;
  cursor: pointer;
  /* White border glow effect */
  filter: drop-shadow(0 0 0px #fff);
  transition: filter 0.35s ease;
}

.vp-hex::before {
  content: '';
  position: absolute;
  inset: -3px;
  clip-path: polygon(
    55px 0%,
    calc(100% - 55px) 0%,
    100% 50%,
    calc(100% - 55px) 100%,
    55px 100%,
    0% 50%
  );
  background: rgba(255,255,255,0.9);
  z-index: 0;
}

.vp-hex:hover {
  filter: drop-shadow(0 8px 24px rgba(100,198,194,0.35));
}

/* LABS — col1 top */
.vp-hex[data-index="0"] {
  top: 0;
  left: 0;
}

/* MINERALS — col1 bottom */
.vp-hex[data-index="1"] {
  top: 236px;
  left: 0;
}

/* DEFENSE — col2 top */
.vp-hex[data-index="2"] {
  top: 118px;
  left: 47%;
  transform: translateX(-50%);
}

/* GREEN TECH — col3 honeycomb offset */
.vp-hex[data-index="3"] {
  top: 237px;
  right: 71px;
}

/* BUSINESS SOLUTIONS — col2 bottom */
.vp-hex[data-index="4"] {
  top: 354px;
  left: 47%;
  transform: translateX(-50%);
}

/* ── INNER ── */
.vp-hex__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* ── IMAGE ── */
.vp-hex__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  z-index: 1;
}

/* ── LABEL ── */
.vp-hex__label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(248, 153, 57, 0.88);
  padding: 14px 28px 14px 60px;
  border-top-right-radius: 4px;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vp-hex__label-text {
  font-family: 'Russo One', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  white-space: nowrap;
}

/* ── HOVER OVERLAY ── */
.vp-hex__hover {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
  pointer-events: none;
}

.vp-hex__hover-title {
  font-family: 'Russo One', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  color: #f89939;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.vp-hex__hover-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0 0 14px;
}

.vp-hex__explore {
  font-family: 'Russo One', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: #64c6c2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vp-hex__explore:hover {
  color: #f89939;
}

/* ── HOVER STATES ── */
.vp-hex:hover .vp-hex__img {
  transform: scale(1.08);
  filter: brightness(40%);
}

.vp-hex:hover .vp-hex__label {
  opacity: 0;
  transform: translateY(10px);
}

.vp-hex:hover .vp-hex__hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── TABLET / NARROW DESKTOP (601px–1200px) — 2-column grid ── */
@media (min-width: 601px) and (max-width: 1200px) {
  .vp-header__title {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .vp-header__subtitle {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .vp-header__tagline {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .vp-header__description {
    font-size: 0.95rem;
  }

  .vp-cluster {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow: visible;
    max-width: 860px;
    margin: 0 auto;
  }

  .vp-cluster::before,
  .vp-cluster::after {
    display: none;
  }

  /* Cards fill their grid cell, hex shape scales via % clip-path */
  .vp-hex {
    position: static;
    transform: none !important;
    width: 100%;
    height: 200px;
    clip-path: polygon(
      12% 0%,
      88% 0%,
      100% 50%,
      88% 100%,
      12% 100%,
      0% 50%
    );
  }

  /* 5th card centred spanning both columns */
  .vp-hex[data-index="4"] {
    grid-column: 1 / -1;
    width: 50%;
    margin: 0 auto;
  }

  .vp-hex::before {
    display: none;
  }

  /* Label scales down and wraps so text never clips */
  .vp-hex__label {
    padding: 10px 22px 10px 40px;
  }

  .vp-hex__label-text {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    white-space: normal;
    line-height: 1.3;
  }

  .vp-hex__hover {
    padding: 20px 28px;
  }

  .vp-hex__hover-title {
    font-size: 0.95rem;
  }

  .vp-hex__hover-desc {
    font-size: 0.84rem;
  }
}
/* ── MOBILE — flat stack ── */
@media (max-width: 600px) {
  .vp-section {
    padding: 30px 5% 40px;
  }

  .vp-header {
    margin-bottom: 40px;
  }

  .vp-header__title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .vp-header__subtitle {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .vp-header__tagline {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .vp-header__description {
    font-size: 0.9rem;
  }

  .vp-cluster {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
  }

  .vp-cluster::before,
  .vp-cluster::after {
    display: none;
  }

  .vp-hex {
    position: static;
    transform: none !important;
    clip-path: polygon(
  14% 0%,
  86% 0%,
  100% 50%,
  86% 100%,
  14% 100%,
  0% 50%
);
border-radius: 0;
    width: 100%;
    height: 190px;
  }

  .vp-hex::before {
    display: none;
  }

  .vp-hex__hover { padding: 20px; }
  .vp-hex__hover-title { font-size: 0.95rem; }
  .vp-hex__hover-desc  { font-size: 0.85rem; }
  .vp-hex__label { padding: 10px 18px 10px 32px; }
  .vp-hex__label-text { font-size: 0.78rem; white-space: normal; line-height: 1.3; }
}


/**************************
  VALUES STRIP
***************************/
.vp-values-strip {
  position: relative;
  background: linear-gradient(180deg, #dff1f0 0%, #e8f4f3 50%, #eef7f7 100%);
  padding: 80px 6% 60px;
  border-top: none;
  overflow: hidden;
}

/* Short centred accent line at bottom — not edge to edge */
.vp-values-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, #f89939, #64c6c2);
  pointer-events: none;
}



/**************************
  VALUES STRIP
***************************/
.vp-values-strip {
  position: relative;
  /* Extend the portfolio section background so the icons sit inside the same panel */
  background: linear-gradient(180deg, #dff1f0 0%, #d6ece9 100%);
  padding: 70px 6% 70px;
  border-top: none;
  overflow: hidden;
}

/* Teal corner accent removed per request */
.vp-values-strip::before {
  content: none;
}

/* Short centered accent line instead of edge-to-edge border */
.vp-values-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(to right, #f89939 0%, #64c6c2 100%);
  pointer-events: none;
}

.vp-values-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.vp-value-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  padding: 0 20px;
}

/* Vertical dividers between blocks */
.vp-value-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: #e8e8e8;
}

.vp-value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f89939;
  flex-shrink: 0;
}

.vp-value-icon svg {
  width: 100%;
  height: 100%;
  stroke: #f89939;
  fill: none;
}

.vp-value-title {
  font-family: 'Russo One', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #393939;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.vp-value-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #888888;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.vp-value-divider {
  display: none;
}

/* ── TABLET: 2 COLUMNS × 2 ROWS ── */
@media (max-width: 900px) {
  .vp-values-strip {
    padding: 60px 6% 50px;
  }

  .vp-values-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }

  .vp-value-block {
    padding: 0;
  }

  .vp-value-block:not(:last-child)::after {
    display: none;
  }

  .vp-value-title {
    font-size: 1rem;
  }

  .vp-value-description {
    font-size: 0.9rem;
  }
}

/* ── MOBILE: SINGLE COLUMN ── */
@media (max-width: 600px) {
  .vp-values-strip {
    padding: 50px 6% 40px;
  }

  .vp-values-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vp-value-block {
    padding: 0;
  }

  .vp-value-block:not(:last-child)::after {
    display: none;
  }

  .vp-value-icon {
    width: 40px;
    height: 40px;
  }

  .vp-value-title {
    font-size: 0.95rem;
  }

  .vp-value-description {
    font-size: 0.85rem;
  }
}

/**************************
  INFO / VALUE PROP SECTIONS
***************************/
.home-info-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 80px 6%;
  background: #fff;
  font-family: 'Inter', sans-serif;
  color: #393939;
  box-sizing: border-box;
}

.info-container {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 40px auto;
  padding: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  position: relative;
}

.info-container.reverse {
  flex-direction: row-reverse;
}

.info-container.reverse .info-text {
  text-align: left;
  padding-left: 20px;
  padding-right: 0;
}

.info-image {
  flex-basis: 25%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.info-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.info-text {
  flex-basis: 75%;
  font-size: 1.15rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  padding: 0 15px;
  color: #393939;
}

.info-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #f89939;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Russo One', sans-serif;
}

.info-container:hover .info-image img {
  transform: scale(1.08) rotate(1.5deg);
  filter: brightness(0.85) saturate(1.3);
  box-shadow: 0 12px 30px rgba(248, 153, 57, 0.27);
}

.info-container .info-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(248,153,57,0.16), rgba(100,198,194,0.10));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 6px;
  z-index: 1;
}

.info-container:hover .info-image::after {
  opacity: 1;
}

.info-container:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 18px 38px rgba(248, 153, 57, 0.45), 0 1.5px 4px #f8993948;
}

.info-container:hover .info-text h2 {
  color: #64c6c2;
}

/**************************
  FOOTER
***************************/
.site-footer {
  margin-top: 60px;
  font-family: 'Russo One', sans-serif;
}

.footer-top-strip {
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, #64c6c2 0%, #ffffff 100%);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-main {
  background: #fff;
  padding: 0 0 2.5rem 0;
  border-top: none;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin: 2rem 0 1.25rem 0;
  display: block;
}

.footer-column h4 {
  color: #393939;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: #393939;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-menu a:hover {
  color: #f89939;
  transform: translateX(5px);
}

.footer-social {
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  color: #393939;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.social-icon:hover {
  color: #f89939;
  transform: scale(1.1);
}

.social-icon svg {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-text {
  font-size: 0.9375rem;
}

.footer-bottom {
  background: #f89939;
  padding: 5px 0;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 0;
  min-height: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
}

.copyright {
  font-family: 'Inter', sans-serif;
  color: #393939;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.0270rem;
  padding: 3px 0;
}

.footer-tagline-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-top: 1.25rem;
  font-style: italic;
  font-weight: 300;
}

/**************************
  CONTACT PAGE STYLES
***************************/
.contact-main {
    padding-top: 100px;
    min-height: 100vh;
    background: #fff;
}

.contact-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

.contact-left {
    flex: 1;
    background: #f8f9fa;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    margin-bottom: 40px;
}

.contact-heading {
    text-align: center;
}

.contact-heading h1 {
    font-size: 4rem;
    color: #393939;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Russo One', sans-serif;
}

.contact-heading p {
    font-size: 1.8rem;
    color: #666;
    margin: 0;
    font-weight: 300;
}

.contact-right {
    flex: 1;
    background: #1a1a1a;
    padding: 80px 60px;
    color: #fff;
}

.contact-form-container {
    max-width: 500px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 8px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #444;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #64c6c2;
    box-shadow: 0 4px 14px rgba(100, 198, 194, 0.22);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.send-button {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.send-button:hover {
    background: #64c6c2;
    color: #fff;
    transform: translateY(-3px);
}

.arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.send-button:hover .arrow {
    transform: translateX(5px);
}

.contact-bottom {
    max-width: 1400px;
    margin: 60px auto 40px;
    padding: 40px 60px;
    background: #f8f9fa;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.address-section,
.contacts-section {
    flex: 1;
}

.address-section h3,
.contacts-section h3 {
    font-size: 1.2rem;
    color: #393939;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Russo One', sans-serif;
}

.address-section p,
.contacts-section p {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-info .social-section {
    display: flex;
    align-items: center;
}

/**************************
  MEDIA QUERIES - DESKTOP
***************************/
@media screen and (min-width: 1024px) {
  .footer-content {
    align-items: flex-start;
    gap: 0;
  }

  .footer-company {
    flex: 0 0 370px;
    padding-right: 40px;
  }

  .footer-menus-group {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: flex-start;
  }

  .footer-menus-group .footer-column {
    flex: none;
    min-width: 0;
  }
}

/**************************
  MEDIA QUERIES - TABLET
***************************/
@media screen and (max-width: 1023px) {
  body, .info-text {
    font-size: 0.9rem;
  }

  .custom-logo {
    left: 20px;
    height: 32px;
    top: 24px;
  }

  #menu ul {
    right: 20px;
    gap: 22px;
  }

  #menu ul a {
    font-size: 0.8125rem;
    letter-spacing: 0.09375rem;
  }

  .hero-section {
    height: 70vh;
    min-height: 500px;
    padding-left: 4%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .industries-strip {
    min-height: 220px;
    padding: 45px 5%;
  }

  .industries-strip h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .industries-strip p {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .portfolio-grid-section {
    padding: 40px 4%;
    scroll-margin-top: 100px;
  }

  .home-info-section {
    padding: 32px 5vw;
    gap: 16px;
  }

  .info-container {
    flex-direction: column !important;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px 0;
    padding: 14px 0;
  }

  .info-container.reverse {
    flex-direction: column !important;
  }

  .info-image,
  .info-text {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }

  .info-image {
    margin-bottom: 15px;
  }

  .info-text {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
  }

  .info-text h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .info-container.reverse .info-text {
    padding-left: 0;
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.875rem;
    text-align: center;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .footer-column {
    min-width: auto;
    width: 100%;
    text-align: center;
  }

  .footer-logo {
    max-width: 140px;
    margin: 0 auto 1.25rem auto;
    display: block;
  }

  .footer-menu a:hover {
    transform: translateX(0) scale(1.05);
  }

  .footer-menus-group {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    text-align: center;
    width: 100%;
  }

  .footer-menus-group .footer-column {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 60px 40px;
  }

  .contact-heading h1 {
    font-size: 3rem;
  }
}

/**************************
  MEDIA QUERIES - MOBILE
***************************/
@media (max-width: 600px) {
  .hero-section {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }

  .industries-strip {
    padding: 40px 5% 50px 5%;
  }
  
  .industries-strip h2 {
    font-size: 1.4rem;
    margin-bottom: 8px !important;
  }
  
  .industries-strip p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .portfolio-grid-section {
    padding: 30px 5%;
    scroll-margin-top: 92px;
  }


  .portfolio-box {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 200px;
    margin: 15px 0;
  }


  .home-info-section {
    padding: 20px 5%;
    font-family: 'Inter', sans-serif;
  }

  .info-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 22px 0 !important;
    padding: 0 5% !important;
    gap: 0 !important;
    display: flex !important;
  }

  .info-container.reverse {
    flex-direction: column !important;
  }

  .info-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    flex-basis: auto !important;
    height: auto !important;
  }

  .info-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
  }

  .info-text {
    font-size: 0.95rem !important;
    font-family: 'Inter', sans-serif !important;
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .info-text h2 {
    font-size: 1.2rem !important;
    font-family: 'Russo One', sans-serif !important;
    margin: 0 0 10px 0 !important;
  }

  .info-text p {
    margin: 0 !important;
  }

  .contact-main {
    padding-top: 80px;
  }

  .contact-left {
    padding: 50px 30px;
  }

  .contact-heading h1 {
    font-size: 2.5rem;
  }

  .contact-heading p {
    font-size: 1.3rem;
  }

  .contact-right {
    padding: 50px 30px;
  }

  .contact-bottom {
    padding: 30px 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 40px;
  }
}

/**************************
  MEDIA QUERIES - SMALL MOBILE
***************************/
@media screen and (max-width: 480px) {
  body::before {
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .custom-logo {
    top: 21px;
    left: 15px;
    height: 28px;
  }

  .hero-section {
    height: 100vh;
    min-height: 450px;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .hero-content p {
    font-size: 1.1rem !important;
  }

  .home-info-section {
    padding: 20px 5%;
    font-family: 'Inter', sans-serif;
  }

  .info-container {
    padding: 12px 5% !important;
  }

  .info-text {
    font-family: 'Inter', sans-serif;
  }

  .mobile-hamburger {
    display: flex;
  }

  #menu ul {
    display: none;
  }

  body.mobile-menu-open body::before,
  body.mobile-menu-open .custom-logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.mobile-menu-open .mobile-hamburger {
    z-index: 9999;
  }

  body.mobile-menu-open #menu ul {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.875rem;
    margin: 0;
    padding: 0;
  }

  body.mobile-menu-open #menu ul a {
    font-family: 'Russo One', sans-serif;
    font-size: 1.875rem;
    padding: 1.125rem 1.25rem;
    color: #393939;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
  }

  body.mobile-menu-open #menu ul a:hover {
    background: rgba(248, 153, 57, 0.1);
    color: #f89939;
    transform: scale(1.05);
  }

  body.mobile-menu-open #menu ul a::before {
    display: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .portfolio-grid-section {
    padding: 30px 5%;
    scroll-margin-top: 92px;
  }

 
  .portfolio-box {
    margin: 15px 0;
  }

  .contact-left {
    padding: 40px 20px;
  }

  .contact-right {
    padding: 40px 20px;
  }

  .contact-heading h1 {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }

  .contact-heading p {
    font-size: 1.1rem;
  }

  .send-button {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
}