/* ==========================================================================
   VetroMax Homepage Stylesheet — Mockup Clone
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  --vm-primary: #000000;
  --vm-primary-light: #1a1a1a;
  --vm-accent: #000000;
  --vm-accent-hover: #111111;
  --vm-white: #ffffff;
  --vm-off-white: #fcfcfc;
  --vm-gray-light: #f4f4f4;
  --vm-gray: #888888;
  --vm-gray-dark: #444444;
  --vm-dark-bg: #000000;
  --vm-dark-surface: #111111;
  --vm-font-primary: 'Poppins', sans-serif;
  --vm-font-heading: 'Poppins', sans-serif;
  --vm-section-padding: 40px 0;
  --vm-container-width: 1200px;
  --vm-gap: 32px;
  --vm-radius: 0px; /* Sharp corners */
}

/* --------------------------------------------------------------------------
   2. Global Reset & Base
   -------------------------------------------------------------------------- */
html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

.vm-homepage {
  font-family: var(--vm-font-primary);
  color: var(--vm-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global Image Hover Animation */
.vm-products__card-image img,
.vm-projects__card-image img,
.vm-videos__item img,
.vm-blog__card-image img,
.vm-gallery__item img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.vm-products__card:hover .vm-products__card-image img,
.vm-projects__card:hover .vm-projects__card-image img,
.vm-videos__item:hover img,
.vm-blog__card:hover .vm-blog__card-image img,
.vm-gallery__item:hover img {
  transform: scale(1.08);
}

.vm-homepage *,
.vm-homepage *::before,
.vm-homepage *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vm-container {
  max-width: var(--vm-container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.vm-section {
  padding: var(--vm-section-padding);
}

.vm-section__title {
  font-family: var(--vm-font-heading);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--vm-primary);
  letter-spacing: -0.5px;
}

.vm-section__subtitle {
  font-family: var(--vm-font-primary);
  font-size: 18px;
  text-align: center;
  color: var(--vm-gray-dark);
  max-width: 700px;
  margin: -20px auto 32px;
  line-height: 1.7;
}

.vm-highlight-blue {
  background-color: #a7cbe5; /* matching light blue from the image */
  padding: 4px 8px;
  display: inline-block;
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
.vm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
  border-bottom: none;
}

.vm-header.scrolled,
.vm-header.vm-header--solid {
  background-color: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vm-header__inner {
  max-width: var(--vm-container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.4s ease;
}

.vm-header.scrolled .vm-header__inner {
  height: 70px;
}

.vm-header__logo {
  display: flex;
  align-items: center;
  color: var(--vm-white);
  transition: color 0.4s ease;
}

.vm-header.scrolled .vm-header__logo {
  color: var(--vm-white);
}

.vm-header__logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

.vm-header__logo-link,
.vm-header__logo-link:hover,
.vm-header__logo-link:focus,
.vm-header__logo-link:active {
  color: var(--vm-white) !important;
  text-decoration: none;
  display: block;
}

.vm-logo-svg {
  width: 100%;
  height: auto;
  max-width: 270px; /* default desktop max-width */
  display: block;
}

/* Hamburger ALWAYS visible */
.vm-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.vm-header__hamburger:hover,
.vm-header__hamburger:focus,
.vm-header__hamburger:active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.vm-header__hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--vm-white);
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.vm-header.scrolled .vm-header__hamburger span {
  background-color: var(--vm-white);
}

.vm-header__hamburger.active span {
  background-color: var(--vm-primary) !important;
}

/* Contact Us CTA outline */
.vm-header__cta {
  display: inline-block;
  background-color: transparent;
  color: var(--vm-white);
  border: 1.5px solid var(--vm-white);
  padding: 10px 24px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.vm-header.scrolled .vm-header__cta {
  color: var(--vm-white);
  border-color: var(--vm-white);
}

.vm-header__cta:hover {
  background-color: var(--vm-white);
  color: var(--vm-primary);
}

.vm-header.scrolled .vm-header__cta:hover {
  background-color: var(--vm-primary);
  color: var(--vm-white);
}

/* Mobile Menu Panel */
/* Mobile Menu Panel */
.vm-header__mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: #000000;
  z-index: 1100; /* Overlays the header (1000) */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children horizontally */
  justify-content: flex-start; /* Stack from top */
  padding: 80px;
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
  transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.vm-header__mobile-menu::-webkit-scrollbar {
  display: none;
}

.vm-header__mobile-menu.open {
  left: 0;
}

/* Giant Background Watermark Logo */
.vm-header__mobile-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: auto;
  opacity: 0.04;
  color: #ffffff;
  pointer-events: none;
  z-index: 0;
}

.vm-header__mobile-watermark svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hide header hamburger when mobile menu drawer is open */
.vm-header.menu-open .vm-header__hamburger {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Dedicated Close Button (Left-aligned like screenshot) */
.vm-header__mobile-close {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 0 48px 0 !important;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  box-shadow: none !important;
  z-index: 2;
  pointer-events: none; /* Ignore pointer events on the wide button block */
}

.vm-header__mobile-close:hover svg {
  transform: scale(1.1); /* Scale only the SVG icon in place */
}

.vm-header__mobile-close svg {
  display: block;
  transition: transform 0.3s ease; /* Smooth scale transition */
  pointer-events: auto; /* Enable pointer events on the SVG itself */
}

/* Split Grid Layout */
.vm-header__mobile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
}

.vm-header__mobile-nav-col {
  width: 100%;
}

.vm-header__mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.vm-header__mobile-nav li {
  margin: 0;
  width: 100%;
}

.vm-header__mobile-nav a {
  text-decoration: none;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0px;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.vm-header__mobile-nav a svg.vm-chevron-down {
  transition: transform 0.3s ease;
  opacity: 0.8;
  margin-left: 6px;
}

.vm-header__mobile-nav a:hover {
  opacity: 0.7;
}

/* Submenu default state: hidden on mobile menu */
.vm-header__mobile-nav .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 16px 0 8px 24px;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

/* Show when parent is open */
.vm-header__mobile-nav .menu-item-has-children.open > .sub-menu {
  display: flex;
}

.vm-header__mobile-nav .sub-menu li {
  margin: 0;
  width: auto;
}

.vm-header__mobile-nav .sub-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.vm-header__mobile-nav .sub-menu a:hover {
  color: #ffffff !important;
}

.vm-header__mobile-nav .sub-menu a::after {
  display: none !important; /* No underline effect for submenus */
}

/* Info Column (Right Side) */
.vm-header__mobile-info-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vm-header__mobile-info-group {
  color: #ffffff;
}

.vm-header__mobile-info-group h4 {
  font-family: var(--vm-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 16px 0;
  opacity: 0.5;
}

.vm-header__mobile-info-group p {
  font-family: var(--vm-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.vm-header__mobile-info-group p a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.vm-header__mobile-info-group p a:hover {
  opacity: 0.7;
}

/* Social Media Buttons */
.vm-header__mobile-socials {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.vm-header__mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.vm-header__mobile-socials a:hover {
  transform: translateY(-3px);
}

.vm-header__mobile-socials svg {
  display: block;
}

.vm-social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.vm-social-linkedin {
  background-color: #0077b5;
}

.vm-social-youtube {
  background-color: #ff0000;
}

/* Contact Us Button at the bottom */
.vm-header__mobile-cta {
  display: inline-block;
  background-color: transparent !important;
  color: var(--vm-primary) !important;
  border: 1.5px solid var(--vm-primary) !important;
  padding: 12px 36px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  width: auto;
  text-align: left;
  margin-top: auto; /* Push to bottom of flex container */
  align-self: flex-start;
}

.vm-header__mobile-cta:hover {
  background-color: var(--vm-primary) !important;
  color: var(--vm-white) !important;
}

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.vm-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.vm-hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.vm-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.vm-hero__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.vm-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vm-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.vm-hero__content {
  position: relative;
  z-index: 3;
  color: var(--vm-white);
  padding: 0 20px 100px;
  max-width: var(--vm-container-width);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.vm-hero__title {
  font-family: var(--vm-font-heading);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.vm-hero__subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.vm-hero__cta {
  display: inline-block;
  background-color: var(--vm-accent);
  color: var(--vm-white);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-top: 36px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.vm-hero__cta:hover {
  background-color: var(--vm-accent-hover);
  transform: translateY(-2px);
}

/* Slider Edge Arrows */
.vm-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--vm-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vm-hero__arrow svg {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.vm-hero__arrow:hover {
  background-color: var(--vm-white);
  color: var(--vm-primary);
  border-color: var(--vm-white);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vm-hero__arrow--left {
  left: 40px;
}

.vm-hero__arrow--left:hover svg {
  transform: translateX(-4px);
}

.vm-hero__arrow--right {
  right: 40px;
}

.vm-hero__arrow--right:hover svg {
  transform: translateX(4px);
}

/* Slider Indicators */
.vm-hero__indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.vm-hero__indicator {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.vm-hero__indicator:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.vm-hero__indicator.active {
  background-color: var(--vm-accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .vm-hero {
    height: 65vh;
    min-height: 450px;
  }
  .vm-hero__title {
    font-size: 40px;
  }
  .vm-hero__subtitle {
    font-size: 16px;
  }
  .vm-hero__arrow {
    width: 44px;
    height: 44px;
  }
  .vm-hero__arrow--left {
    left: 16px;
  }
  .vm-hero__arrow--right {
    right: 16px;
  }
}

/* --------------------------------------------------------------------------
   5. About
   -------------------------------------------------------------------------- */
.vm-about {
  background-color: var(--vm-white);
}

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

.vm-about__text h3 {
  font-family: var(--vm-font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--vm-primary);
  line-height: 1.3;
}

.vm-about__text p {
  line-height: 1.8;
  color: var(--vm-gray-dark);
  margin-bottom: 24px;
  font-size: 15px;
}

.vm-about__list {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 32px 0 0 0;
}

.vm-about__list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
  color: var(--vm-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.vm-about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--vm-primary);
  font-weight: 700;
}

.vm-about__image {
  border-radius: 0;
  overflow: hidden;
}

.vm-about__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   6. Products
   -------------------------------------------------------------------------- */
.vm-products {
  background-color: var(--vm-white);
}

.vm-products__card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
}

.vm-products__card:last-child {
  margin-bottom: 0;
}

.vm-products__card--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.vm-products__card--reverse .vm-products__card-image {
  order: 2;
}

.vm-products__card--reverse .vm-products__card-content {
  order: 1;
}

.vm-products__card-image {
  border-radius: 0;
  overflow: hidden;
}

.vm-products__card-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.vm-products__card-content {
  padding: 0;
}

.vm-products__card-content h3 {
  font-family: var(--vm-font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--vm-primary);
  word-break: normal !important;
  overflow-wrap: normal !important;
  word-wrap: normal !important;
  white-space: normal !important;
  line-height: 1.3;
}

.vm-products__card-content p {
  line-height: 1.8;
  color: var(--vm-gray-dark);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   7. Projects
   -------------------------------------------------------------------------- */
.vm-projects {
  background-color: var(--vm-white);
  overflow: hidden;
}

.vm-projects__viewport {
  width: 100%;
  padding-left: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  margin-top: 8px;
  margin-bottom: -24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.vm-projects__viewport::-webkit-scrollbar {
  display: none;
}

.vm-projects__track {
  display: flex;
  gap: 32px;
  padding-right: 0;
}

.vm-projects__card {
  flex: 0 0 420px;
  width: 420px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.vm-projects__card:hover {
  transform: translateY(-8px);
}

.vm-projects__card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  height: auto;
}

.vm-projects__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.vm-projects__card:hover .vm-projects__card-image img {
  transform: scale(1.05);
}

.vm-projects__card-info {
  margin-top: 16px;
}

.vm-projects__card-title {
  font-family: var(--vm-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--vm-primary);
  margin: 0 0 4px 0;
}

.vm-projects__card-location {
  font-family: var(--vm-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--vm-primary);
  margin: 0;
}

.vm-projects__card-excerpt {
  margin-top: 12px;
}

.vm-projects__card-excerpt p {
  font-family: var(--vm-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--vm-gray-dark);
  margin: 0;
  opacity: 0.8;
}

.vm-projects__nav-wrapper {
  margin-top: 48px;
}

.vm-projects__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.vm-projects__arrow {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  color: var(--vm-primary);
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: none;
}

.vm-projects__arrow:hover {
  background-color: transparent;
  transform: scale(1.1) translateX(-4px); /* Slight shift on hover */
  color: var(--vm-primary);
}

.vm-projects__arrow--next:hover {
  transform: scale(1.1) translateX(4px); /* Shift right for next */
}

.vm-projects__arrow:disabled {
  background-color: transparent;
  color: var(--vm-gray);
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   8. Gallery
   -------------------------------------------------------------------------- */
.vm-gallery {
  background-color: var(--vm-white);
}

.vm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vm-gallery__item {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 400px;
}

.vm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Alternating 2/3 and 1/3 grid pattern */
.vm-gallery__item:nth-child(4n+1),
.vm-gallery__item:nth-child(4n+4) {
  grid-column: span 2;
}

.vm-gallery__item:nth-child(4n+2),
.vm-gallery__item:nth-child(4n+3) {
  grid-column: span 1;
}

/* Solid Black Load More Button */
.vm-gallery__load-more,
.vm-btn-load-more,
.vm-videos .vm-gallery__load-more {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.vm-gallery__load-more:hover,
.vm-btn-load-more:hover,
.vm-videos .vm-gallery__load-more:hover {
  background-color: #333333;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   9. Videos
   -------------------------------------------------------------------------- */
.vm-videos {
  background-color: var(--vm-white);
}

.vm-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vm-videos__item {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.vm-videos__item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.vm-videos__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--vm-white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: none;
}

.vm-videos__play svg {
  margin-left: 2px;
}

.vm-videos__item:hover .vm-videos__play {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: transparent;
}

.vm-videos__info {
  padding: 20px 0 0 0;
}

.vm-videos__info h3 {
  font-family: var(--vm-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vm-primary);
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. Blog Horizontal Slider
   -------------------------------------------------------------------------- */
.vm-blog {
  background-color: var(--vm-white);
  overflow: hidden;
}

.vm-blog__viewport {
  width: 100%;
  padding-left: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  margin-top: 8px;
  margin-bottom: -24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.vm-blog__viewport::-webkit-scrollbar {
  display: none;
}

.vm-blog__track {
  display: flex;
  gap: 32px;
  padding-right: 0;
}

.vm-blog__card {
  flex: 0 0 420px;
  width: 420px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.4s ease;
  position: relative;
}

.vm-blog__card:hover {
  transform: translateY(-8px);
}

.vm-blog__card-image {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  position: relative !important;
}

.vm-blog__card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.vm-blog__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
  pointer-events: none;
}

.vm-blog__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 2;
  color: var(--vm-white);
}

.vm-blog__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--vm-white);
}

.vm-blog__card-meta svg {
  opacity: 0.8;
}

.vm-blog__card-date {
  color: inherit;
}

.vm-blog__card-title {
  font-family: var(--vm-font-primary);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: var(--vm-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 45px;
}

.vm-blog__card-title a {
  color: inherit;
  text-decoration: none;
}

.vm-blog__card-excerpt {
  margin: 8px 0 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.vm-blog__nav-wrapper {
  margin-top: 48px;
  position: relative;
}

.vm-blog__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.vm-blog__arrow {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  color: var(--vm-primary);
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: none;
}

.vm-blog__arrow:hover {
  background-color: transparent;
  transform: scale(1.1) translateX(-4px);
  color: var(--vm-primary);
}

.vm-blog__arrow--right:hover {
  transform: scale(1.1) translateX(4px);
}

.vm-blog__arrow:disabled {
  background-color: transparent;
  color: var(--vm-gray);
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   Blog Page Grid Layout
   -------------------------------------------------------------------------- */
.vm-blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.vm-blog-page-grid .vm-blog__card--grid {
  flex: none;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
}


/* --------------------------------------------------------------------------
   Global Page Hero Banner (About, Blog, Contact)
   -------------------------------------------------------------------------- */
.vm-page-hero {
  position: relative;
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-top: 120px; /* Offset for global header menu */
  padding-bottom: 40px;
  margin-top: 0;
  z-index: 1;
}

.vm-page-hero__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.vm-page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--vm-font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none;
  text-transform: capitalize;
  margin-bottom: auto; /* Force to the top of container */
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}

.vm-page-hero__back:hover {
  transform: translateX(-4px);
  opacity: 0.8;
}

.vm-page-hero__back svg {
  display: block;
}

.vm-page-hero__title {
  font-family: var(--vm-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--vm-white);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* --------------------------------------------------------------------------
   Contact Page Styles
   -------------------------------------------------------------------------- */
.vm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.vm-contact-info-col {
  display: flex;
  flex-direction: column;
}

.vm-contact-office h3 {
  font-family: var(--vm-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.vm-contact-office p {
  font-family: var(--vm-font-primary);
  font-size: 15px;
  color: #000;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.vm-contact-top {
  padding-top: 80px;
  padding-bottom: 80px;
}

.vm-contact-bottom {
  padding-top: 40px;
  padding-bottom: 120px;
}

.vm-contact-image-col img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.vm-contact-header h2 {
  font-family: var(--vm-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}

.vm-contact-header p {
  font-family: var(--vm-font-primary);
  font-size: 16px;
  color: #000;
  margin: 0;
}

.vm-contact-form,
.vm-contact-form-col .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vm-contact-form-group,
.vm-contact-form-col .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vm-contact-form-group label,
.vm-contact-form-col .wpcf7-form label {
  font-family: var(--vm-font-primary);
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.vm-contact-form-group input,
.vm-contact-form-group textarea,
.vm-contact-form-col .wpcf7-form input[type="text"],
.vm-contact-form-col .wpcf7-form input[type="email"],
.vm-contact-form-col .wpcf7-form input[type="tel"],
.vm-contact-form-col .wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  font-family: var(--vm-font-primary);
  font-size: 15px;
  color: #000;
  outline: none;
  resize: vertical;
}

.vm-contact-form-group input::placeholder,
.vm-contact-form-group textarea::placeholder,
.vm-contact-form-col .wpcf7-form input::placeholder,
.vm-contact-form-col .wpcf7-form textarea::placeholder {
  color: #888;
}

.vm-contact-form-group input:focus,
.vm-contact-form-group textarea:focus,
.vm-contact-form-col .wpcf7-form input:focus,
.vm-contact-form-col .wpcf7-form textarea:focus {
  border-bottom-color: var(--vm-primary);
}

.vm-contact-submit,
.vm-contact-form-col .wpcf7-submit {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-family: var(--vm-font-primary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.vm-contact-submit:hover,
.vm-contact-form-col .wpcf7-submit:hover {
  background-color: #333;
}

/* --------------------------------------------------------------------------
   11. Newsletter 2-Column
   -------------------------------------------------------------------------- */
.vm-newsletter {
  background-color: var(--vm-dark-bg);
  padding: 0;
  margin-bottom: 80px;
  max-width: var(--vm-container-width);
  margin-left: auto;
  margin-right: auto;
}

.vm-newsletter__inner {
  display: flex;
  align-items: stretch;
}

.vm-newsletter__content {
  flex: 1;
  background-color: transparent;
  padding: 80px 40px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vm-newsletter__title {
  font-family: var(--vm-font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--vm-white);
  margin-bottom: 16px;
}

.vm-newsletter__text {
  color: var(--vm-white);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.6;
}

.vm-newsletter__form {
  display: flex;
  gap: 0;
  width: 100%;
}

.vm-newsletter__input {
  flex: 1;
  background-color: var(--vm-white);
  border: none;
  padding: 16px 20px;
  color: var(--vm-primary);
  font-family: var(--vm-font-primary);
  font-size: 15px;
  border-radius: 0;
  outline: none;
}

.vm-newsletter__input::placeholder {
  color: var(--vm-primary);
}

.vm-newsletter__submit {
  background-color: var(--vm-primary);
  color: var(--vm-white);
  padding: 16px 32px;
  border: 1px solid var(--vm-white);
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: none;
  font-family: var(--vm-font-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.vm-newsletter__submit:hover {
  background-color: var(--vm-white);
  color: var(--vm-primary);
}

.vm-newsletter__image {
  flex: 1;
  position: relative;
}

.vm-newsletter__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.vm-footer {
  background-color: var(--vm-dark-bg);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 48px;
  margin-bottom: 48px;
}

.vm-footer__top-title {
  font-family: var(--vm-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--vm-white);
  margin-bottom: 8px;
}

.vm-footer__top-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.vm-footer__btn {
  display: inline-block;
  background-color: transparent;
  color: var(--vm-white);
  border: 1.5px solid var(--vm-white);
  padding: 12px 28px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.vm-footer__btn:hover {
  background-color: var(--vm-white);
  color: var(--vm-primary);
}

.vm-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.vm-footer__col-title {
  font-family: var(--vm-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vm-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vm-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-footer__col li {
  margin-bottom: 12px;
}

.vm-footer__col a {
  color: var(--vm-white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.vm-footer__col a:hover {
  color: var(--vm-gray);
}

.vm-footer__contact-list li {
  margin-bottom: 16px;
}

.vm-footer__contact-list span,
.vm-footer__contact-list a {
  color: var(--vm-white) !important;
  font-size: 14px;
  line-height: 1.6;
}

.vm-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.vm-footer__social a {
  color: #ffffff;
  display: inline-flex;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.vm-footer__social a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.vm-footer__copyright-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 60px;
}

.vm-footer__copyright-logo {
  color: #ffffff !important;
}

.vm-footer__copyright-logo svg {
  color: #ffffff !important;
}

.vm-footer__copyright-logo svg text {
  fill: #ffffff !important;
}

.vm-footer__copyright-logo svg path,
.vm-footer__copyright-logo svg rect {
  stroke: #ffffff !important;
}

.vm-footer__copyright-text p {
  color: #ffffff !important;
  font-size: 13px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. GSAP Animation Classes
   -------------------------------------------------------------------------- */
.vm-animate {
  opacity: 0;
  transform: translateY(40px);
}

.vm-animate--left {
  opacity: 0;
  transform: translateX(-40px);
}

.vm-animate--right {
  opacity: 0;
  transform: translateX(40px);
}

.vm-animate--fade {
  opacity: 0;
}

.vm-animate--scale {
  opacity: 0;
  transform: scale(0.95);
}

/* --------------------------------------------------------------------------
   14. Image Lightbox Modal
   -------------------------------------------------------------------------- */
.vm-image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vm-image-modal.is-active {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vm-image-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.vm-image-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-image-modal__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.vm-image-modal__close {
  position: fixed;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 99999;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.vm-image-modal__close:hover {
  color: #ccc;
}

/* --------------------------------------------------------------------------
   15. Video Modal
   -------------------------------------------------------------------------- */
.vm-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vm-video-modal.is-active {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vm-video-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.vm-video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 1;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.vm-video-modal__close {
  position: fixed;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 99999;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.vm-video-modal__close:hover {
  color: #ccc;
}

.vm-video-modal__iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.vm-video-modal__iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   15. Responsive Layouts
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .vm-section {
    padding: 30px 0;
  }
  .vm-products__card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vm-products__card--reverse {
    grid-template-columns: 1fr;
  }
  .vm-products__card--reverse .vm-products__card-image {
    order: unset;
  }
  .vm-products__card--reverse .vm-products__card-content {
    order: unset;
  }
  .vm-products__card-image img {
    height: 320px;
  }
  .vm-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .vm-videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .vm-blog-page-grid,
  .vm-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vm-contact-grid {
    gap: 40px;
  }
  .vm-projects__card,
  .vm-blog__card {
    flex: 0 0 340px;
    width: 340px;
  }
  .vm-page-hero {
    height: 300px;
    padding-top: 100px;
  }
  .vm-page-hero__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  /* Header Mobile Responsiveness */
  .vm-header__inner {
    height: 60px !important;
    padding: 0 16px;
  }
  .vm-header.scrolled .vm-header__inner {
    height: 54px !important;
  }
  .vm-logo-svg {
    max-width: 160px;
  }
  .vm-header__logo img {
    max-height: 40px;
  }
  .vm-header__hamburger {
    width: 24px;
    height: 14px;
  }
  .vm-header__hamburger span {
    width: 24px;
    height: 2px;
  }
  .vm-header__cta {
    padding: 7px 14px;
    font-size: 11px;
    white-space: nowrap;
  }

  /* Mobile Menu Responsiveness */
  .vm-header__mobile-menu {
    padding: 32px 24px;
    max-width: 100%;
  }
  .vm-header__mobile-close {
    margin: 0 0 28px 0 !important;
  }
  .vm-header__mobile-close svg {
    width: 24px;
    height: 24px;
  }
  .vm-header__mobile-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vm-header__mobile-nav {
    gap: 18px;
  }
  .vm-header__mobile-nav a {
    font-size: 18px;
    letter-spacing: 0.3px;
  }
  .vm-header__mobile-info-group h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .vm-header__mobile-info-group p {
    font-size: 13px;
  }
  .vm-header__mobile-socials a {
    width: 34px;
    height: 34px;
  }
  .vm-header__mobile-socials svg {
    width: 16px;
    height: 16px;
  }
  .vm-header__mobile-watermark {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .vm-hero__title {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .vm-hero__subtitle {
    font-size: 18px;
    margin-top: 15px;
  }
  .vm-section__title,
  .vm-about__title,
  .vm-newsletter__title,
  .vm-about__text h3,
  .vm-products__card-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .vm-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vm-blog-page-grid,
  .vm-blog__grid {
    grid-template-columns: 1fr;
  }
  .vm-about__image {
    order: -1;
  }
  .vm-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .vm-gallery__item:nth-child(n) {
    grid-column: span 1;
    height: 300px;
  }
  .vm-videos__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vm-blog-page-grid,
  .vm-blog__grid {
    grid-template-columns: 1fr;
  }
  .vm-contact-grid {
    grid-template-columns: 1fr;
  }
  .vm-contact-top {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .vm-contact-bottom {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .vm-projects__card,
  .vm-blog__card {
    flex: 0 0 300px;
    width: 300px;
  }
  .vm-page-hero {
    height: 240px;
    padding-top: 85px;
    padding-bottom: 30px;
  }
  .vm-page-hero__title {
    font-size: 28px;
  }
  .vm-newsletter {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .vm-newsletter__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vm-newsletter__inner {
    flex-direction: column;
  }
  .vm-newsletter__content {
    padding: 20px 0 40px 0;
  }
  .vm-newsletter__image {
    display: block;
    width: 100%;
    min-height: 250px;
  }
  .vm-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .vm-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vm-footer__copyright-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .vm-header__inner {
    height: 54px !important;
    padding: 0 12px;
  }
  .vm-header.scrolled .vm-header__inner {
    height: 48px !important;
  }
  .vm-logo-svg {
    max-width: 130px;
  }
  .vm-header__logo img {
    max-height: 34px;
  }
  .vm-header__hamburger {
    width: 22px;
    height: 13px;
  }
  .vm-header__hamburger span {
    width: 22px;
  }
  .vm-header__cta {
    padding: 5px 10px;
    font-size: 9px;
  }

  /* Mobile Menu — small phones */
  .vm-header__mobile-menu {
    padding: 24px 18px;
  }
  .vm-header__mobile-close {
    margin: 0 0 20px 0 !important;
  }
  .vm-header__mobile-close svg {
    width: 22px;
    height: 22px;
  }
  .vm-header__mobile-grid {
    gap: 28px;
  }
  .vm-header__mobile-nav {
    gap: 14px;
  }
  .vm-header__mobile-nav a {
    font-size: 16px;
  }
  .vm-header__mobile-info-group h4 {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .vm-header__mobile-info-group p {
    font-size: 12px;
  }
  .vm-header__mobile-socials a {
    width: 30px;
    height: 30px;
  }
  .vm-header__mobile-socials svg {
    width: 14px;
    height: 14px;
  }
  .vm-header__mobile-cta {
    padding: 10px 28px !important;
    font-size: 11px !important;
  }

  /* --------------------------------------------------------------------------
     Gallery Mobile Layout
     -------------------------------------------------------------------------- */
  .vm-gallery__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .vm-gallery__item:nth-child(n) {
    grid-column: span 1;
    height: 300px;
  }
  
  .vm-gallery__item img {
    height: 100%;
    aspect-ratio: auto;
  }
  
  .vm-newsletter__form {
    flex-direction: column;
  }
  .vm-projects__card,
  .vm-blog__card {
    flex: 0 0 280px;
    width: 280px;
  }
  .vm-blog__card {
    width: 100%;
  }
  .vm-section {
    padding: 24px 0;
  }
  .vm-hero__title {
    font-size: 26px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  .vm-hero__subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
  .vm-section__title,
  .vm-about__title,
  .vm-newsletter__title,
  .vm-about__text h3,
  .vm-products__card-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

/* --------------------------------------------------------------------------
   Global Hover Animations
   -------------------------------------------------------------------------- */
/* Navigation Link Underline Effect */
.vm-header__nav a,
.vm-header__mobile-nav a {
  position: relative;
}

.vm-header__nav a::after,
.vm-header__mobile-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--vm-primary);
  transition: width 0.3s ease, left 0.3s ease;
}

.vm-header__mobile-nav a::after {
  background-color: var(--vm-white);
  bottom: 0px;
}

.vm-header__nav a:hover::after,
.vm-header__mobile-nav a:hover::after {
  width: 100%;
  left: 0;
}

/* Button Scale Effect */
.vm-header__cta,
.vm-newsletter__submit,
.vm-contact-submit,
.vm-gallery__load-more {
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
}

.vm-header__cta:hover,
.vm-newsletter__submit:hover,
.vm-contact-submit:hover,
.vm-gallery__load-more:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Enhanced Card Hover Shadows */
.vm-blog__card,
.vm-about-support__card {
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.vm-blog__card:hover,
.vm-about-support__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Style Contact Form 7 inside Newsletter */
.vm-newsletter .wpcf7-form {
  display: flex;
  gap: 0;
  width: 100%;
}
.vm-newsletter .wpcf7-form-control-wrap {
  flex: 1;
}
.vm-newsletter .wpcf7-email {
  width: 100%;
  background-color: var(--vm-white);
  border: none;
  padding: 16px 20px;
  color: var(--vm-primary);
  font-family: var(--vm-font-primary);
  font-size: 15px;
  outline: none;
}
.vm-newsletter .wpcf7-submit {
  background-color: var(--vm-primary);
  color: var(--vm-white);
  padding: 16px 32px;
  border: 1px solid var(--vm-white) !important;
  border-radius: 0;
  font-family: var(--vm-font-primary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.vm-newsletter .wpcf7-submit:hover {
  background-color: var(--vm-white);
  color: var(--vm-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .vm-newsletter .wpcf7-form {
    flex-direction: column;
    gap: 16px;
  }
}
