/* ═══════════════════════════════════════════════════════════════
   LODGEVISION — OPTION A: BOLD & CONFIDENT
   Dark navy · Strong orange accents · Geometric, tech-forward · Font: Outfit
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #0c304c;
  --oldnavy: #0D1B2E;
  --navy2: #112236;
  --navy3: #152940;
  --orange: #F4611F;
  --orange2: #E55510;
  --orange-glow: rgba(244, 97, 31, 0.18);
  --white: #FFFFFF;
  --off-white: #F4F5F7;
  --text: #1A1A2E;
  --muted: #5A6A7A;
  --border: rgba(255, 255, 255, 0.08);
}

/* ═══════ BASE ═══════ */
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ═══════ NAV ═══════ */
nav#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 48, 76, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-phone,
.nav-links .nav-phone a {
  color: var(--orange) !important;
  font-weight: 600 !important;
}

.nav-cta,
.nav-links .nav-cta a {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.nav-cta:hover,
.nav-links .nav-cta a:hover {
  background: var(--orange2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244, 97, 31, 0.4);
  color: var(--white) !important;
}

/* ═══════ SCROLLED NAV ═══════ */
nav#site-nav {
  transition: background 0.3s, border-bottom 0.3s, box-shadow 0.3s;
}

nav#site-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

nav#site-nav.nav-scrolled .nav-logo {
  color: var(--navy);
}

nav#site-nav.nav-scrolled .nav-links a {
  color: var(--text);
}

nav#site-nav.nav-scrolled .nav-links a:hover {
  color: var(--orange);
}

nav#site-nav.nav-scrolled .nav-logo-white {
  display: none !important;
}

nav#site-nav.nav-scrolled .nav-logo-colored {
  display: block !important;
}

nav#site-nav:not(.nav-scrolled) .nav-logo-colored {
  display: none !important;
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 90px;
}

/* Big geometric circle decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -12%;
  width: 700px;
  height: 700px;
  border: 2px solid rgba(244, 97, 31, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 5%;
  right: -5%;
  width: 500px;
  height: 500px;
  border: 1.5px solid rgba(244, 97, 31, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeUp 0.7s ease-out both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 97, 31, 0.1);
  border: 1px solid rgba(244, 97, 31, 0.25);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '★';
  font-size: 10px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 58px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 97, 31, 0.4);
  color: var(--white);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 20px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  color: var(--white);
}

/* Hero visual — stats grid */
.hero-visual {
  animation: fadeUp 0.7s ease-out 0.15s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 4px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  transition: background 0.2s;
}

.stat-item:hover {
  background: rgba(244, 97, 31, 0.06);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══════ TRUST BAR ═══════ */
.trust-bar {
  background: var(--navy2);
  border-top: 1px solid rgba(244, 97, 31, 0.1);
  border-bottom: 1px solid rgba(244, 97, 31, 0.08);
  padding: 24px 0;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════ SECTIONS ═══════ */
.section {
  padding: 100px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════ SERVICES / SOLUTIONS ═══════ */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(244, 97, 31, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

.service-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.service-featured .sf-content {
  padding: 48px 44px;
}

.service-featured .sf-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.sf-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sf-tag {
  background: rgba(244, 97, 31, 0.08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.sf-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sf-app {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
}

/* ═══════ INDUSTRIES ═══════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s;
}

.industry-card:hover {
  transform: translateY(-4px);
}

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

.industry-card:nth-child(1) .industry-bg {
  background: linear-gradient(180deg, #1A2E45 0%, #0D1B2E 100%);
}

.industry-card:nth-child(2) .industry-bg {
  background: linear-gradient(180deg, #2A1A10 0%, #1A0A04 100%);
}

.industry-card:nth-child(3) .industry-bg {
  background: linear-gradient(180deg, #1A2030 0%, #0D1520 100%);
}

.industry-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
}

.industry-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.industry-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.industry-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.industry-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ═══════ TESTIMONIALS ═══════ */
.testimonials-section {
  background: var(--navy);
}

.testimonials-section .section-label {
  color: var(--orange);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(244, 97, 31, 0.2);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
}

.testimonial-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ═══════ CTA ═══════ */
.cta-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 18px 44px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  color: var(--orange2);
}

.cta-phone {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.cta-phone strong {
  color: var(--white);
}

/* ═══════ FOOTER ═══════ */
footer#site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand span {
  color: var(--orange);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-support {
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
}

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════ RESPONSIVE ═══════ */
.nav-mobile-toggle {
  display: none;
}

@media (max-width: 1024px) {

  .nav-mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 200;
    transition: all 0.3s ease;
  }

  /* Base state: Ensure no default or sticky background on mobile toggle button when closed */
  .nav-mobile-toggle:focus,
  .nav-mobile-toggle:active,
  .nav-mobile-toggle:hover {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  /* When menu is open, style the close 'X' button with a crimson red circular background */
  .nav-open .nav-mobile-toggle {
    background: #E53E3E !important; /* Crimson Red background */
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: -6px;
    margin-right: -3px;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.3) !important;
  }

  .nav-open .nav-mobile-toggle:hover,
  .nav-open .nav-mobile-toggle:focus,
  .nav-open .nav-mobile-toggle:active {
    background: #C53030 !important; /* Darker red on hover/focus */
    box-shadow: 0 4px 12px rgba(197, 48, 48, 0.4) !important;
  }

  .nav-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  /* Center the rotated lines inside the circular button */
  .nav-open .nav-mobile-toggle span {
    width: 18px !important;
    left: 9px !important;
  }

  .nav-inner {
    height: 68px;
  }

  .nav-mobile-toggle span:nth-child(1) {
    top: 0;
  }

  .nav-mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-mobile-toggle span:nth-child(3) {
    bottom: 0;
  }

  .nav-open .nav-mobile-toggle span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .nav-open .nav-mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-mobile-toggle span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start; /* Align all items to the left on mobile */
    justify-content: flex-start;
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto !important; /* Enable scrolling for long menu structures */
  }

  .nav-links li {
    width: 100%; /* Ensure list items span the full width of the drawer */
  }

  .nav-open .nav-links {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* When the mobile menu is open, make the navbar background dark navy to match the drawer */
  nav#site-nav.nav-open {
    background: var(--navy) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  /* Make logo white when menu is open */
  nav#site-nav.nav-open .nav-logo-white {
    display: block !important;
  }
  nav#site-nav.nav-open .nav-logo-colored {
    display: none !important;
  }

  /* Make mobile toggle hamburger / close button white when menu is open */
  nav#site-nav.nav-open .nav-mobile-toggle span {
    background: var(--white) !important;
  }

  /* When the page is scrolled and mobile menu is closed, make hamburger toggle lines dark navy for contrast */
  nav#site-nav.nav-scrolled:not(.nav-open) .nav-mobile-toggle span {
    background: var(--navy);
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Prevent scrolled states from turning mobile drawer links black */
  nav#site-nav.nav-scrolled .nav-links a {
    color: var(--white);
  }
  nav#site-nav.nav-scrolled .nav-links a:hover {
    color: var(--orange);
  }

  .nav-phone {
    margin-top: 20px;
  }

  .nav-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 80px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-left: -22px;
    margin-right: -22px;
  }

  .service-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-featured .sf-visual {
    border-radius: 0 0 12px 12px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section-title {
    font-size: 34px;
  }

  .trust-inner {
    gap: 24px;
  }

  /* Submenu Accordion Layout for Mobile/Tablets */
  .nav-links .menu-item-has-children {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .nav-links .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 48px; /* Safe gutter for chevron button */
  }

  .nav-links .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.04);
    margin: 5px 0 10px 0;
    padding: 4px 0;
    border-radius: 8px;
    width: 100%;
    display: none; /* Expanded via JavaScript using .sub-menu-open */
    min-width: 100%;
  }

  .nav-links .menu-item-has-children.sub-menu-open > .sub-menu {
    display: block;
  }

  .nav-scrolled .nav-links .sub-menu {
    background-color: rgba(255, 255, 255, 0.04);
  }

  .nav-scrolled .nav-links .sub-menu a {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.03);
  }

  .nav-links .sub-menu a {
    font-size: 15.5px;
    padding: 10px 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .nav-links .sub-menu a:last-child {
    border-bottom: none;
  }

  /* Submenu toggle button layout */
  .sub-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 2px; /* aligned vertically with link padding */
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    z-index: 10;
  }

  .nav-scrolled .sub-menu-toggle {
    color: rgba(255, 255, 255, 0.55);
  }

  .sub-menu-toggle .chevron {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .sub-menu-open > .sub-menu-toggle .chevron {
    transform: rotate(-135deg);
    color: var(--orange) !important;
  }

  /* Offset page content for fixed mobile header */
  main#primary.site-main {
    padding-top: 68px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ELEMENTOR CONTAINER OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

.elementor .e-con.hero,
.elementor .e-con.trust-bar,
.elementor .e-con.services-section,
.elementor .e-con.testimonials-section,
.elementor .e-con.cta-section,
.elementor .e-con.section {
  --content-width: 100%;
  --container-max-width: 100%;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}

.elementor .e-con.hero>.e-con-inner,
.elementor .e-con.trust-bar>.e-con-inner,
.elementor .e-con.services-section>.e-con-inner,
.elementor .e-con.testimonials-section>.e-con-inner,
.elementor .e-con.cta-section>.e-con-inner,
.elementor .e-con.section>.e-con-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.elementor .e-con.hero .elementor-widget-text-editor,
.elementor .e-con.trust-bar .elementor-widget-text-editor,
.elementor .e-con.services-section .elementor-widget-text-editor,
.elementor .e-con.testimonials-section .elementor-widget-text-editor,
.elementor .e-con.cta-section .elementor-widget-text-editor,
.elementor .e-con.section .elementor-widget-text-editor {
  width: 100% !important;
}

.elementor .hero p,
.elementor .section p {
  margin-bottom: 0;
}

.elementor .hero .elementor-widget-container,
.elementor .trust-bar .elementor-widget-container,
.elementor .section .elementor-widget-container {
  max-width: none;
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES SLIDER (Elementor Widget Overrides)
═══════════════════════════════════════════════════════════════ */

/* Re-apply the section variables from demo.css since we removed the inner wrapper */
.industries-section {
  background: var(--lv-navy-dark);
  position: relative;
  overflow: hidden;
}

/* Background decorative circles */
.industries-section::before,
.industries-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}

.industries-section::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
}

.industries-section::after {
  width: 800px;
  height: 800px;
  bottom: -300px;
  right: -300px;
  border-color: rgba(244, 97, 31, 0.05);
  /* subtle orange */
}

/* Ensure contents sit above decorative background */
.industries-section>.elementor-container {
  position: relative;
  z-index: 1;
}

/* Fix Elementor nested carousel swiper overflow to show shadows */
.industries-section .elementor-widget-nested-carousel .e-n-carousel {
  overflow: visible;
}

.industries-section .elementor-widget-nested-carousel .swiper-container,
.industries-section .elementor-widget-nested-carousel .swiper {
  overflow: visible;
}

/* Fix spacing in slides */
.industries-section .swiper-slide {
  height: auto;
  display: flex;
}

.industries-section .swiper-slide>.elementor-container {
  width: 100%;
  box-sizing: border-box;
}

/* Slide Card Hover Effects */
.industries-section .swiper-slide>.elementor-container {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Base Shadow */
.industries-section .swiper-slide>.elementor-container {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
}

.industries-section .swiper-slide:hover>.elementor-container {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

/* Button Hover State Override */
.industries-section .elementor-widget-button .elementor-button {
  transition: all 0.3s ease;
}

.industries-section .elementor-widget-button .elementor-button:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}

/* Pagination Dots */
.industries-section .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.3s ease !important;
  margin: 0 6px !important;
}

.industries-section .swiper-pagination-bullet-active {
  background-color: var(--lv-orange) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.industries-section .swiper-pagination {
  bottom: -35px !important;
}

/* Navigation Arrows (Position outside content) */
.industries-section .elementor-swiper-button-prev,
.industries-section .elementor-swiper-button-next {
  color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(0, 0, 0, 0.2) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.industries-section .elementor-swiper-button-prev:hover,
.industries-section .elementor-swiper-button-next:hover {
  color: #ffffff !important;
  background: var(--lv-orange) !important;
  border-color: var(--lv-orange);
  transform: scale(1.05);
}

.industries-section .elementor-swiper-button-prev {
  left: -60px !important;
}

.industries-section .elementor-swiper-button-next {
  right: -60px !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {

  .nav-cta,
  .nav-phone {
    display: none;
  }

  .industries-section .elementor-swiper-button-prev {
    left: -20px !important;
  }

  .industries-section .elementor-swiper-button-next {
    right: -20px !important;
  }
}

@media (max-width: 1024px) {

  .nav-logo-white,
  .nav-logo-colored {
    padding: 20px 0 10px 0 !important;
  }

  .industries-section .swiper-slide>.elementor-container {
    padding: 40px !important;
    min-height: auto !important;
  }

  .industries-section .elementor-swiper-button-prev,
  .industries-section .elementor-swiper-button-next {
    display: none !important;
    /* hide arrows on mobile, rely on swipe/dots */
  }
}

/* ═══════ CONTACT PAGE TEMPLATE ═══════ */
/* Hero adjustments for contact */
.hero-contact {
  min-height: 40vh;
  padding-top: 120px;
  padding-bottom: 40px;
}

.hero-contact::before,
.hero-contact::after {
  display: none;
}

.hero-contact .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

.hero-contact p {
  margin: 0 auto;
}

/* Contact Section Grid */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}

/* Contact Info Cards */
.contact-info .section-label {
  margin-bottom: 8px;
}

.contact-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.c-icon {
  width: 48px;
  height: 48px;
  background: rgba(244, 97, 31, 0.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-card a,
.contact-card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--orange2);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(13, 27, 46, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.lv-contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(90, 106, 122, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244, 97, 31, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* 1. Make the parent item the anchor point */
.nav-links .menu-item-has-children {
  position: relative;
  /* Gives a little buffer so the mouse doesn't fall off when moving down */
}

/* 2. Style and hide the submenu initially */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  /* Positions it exactly below the parent link */
  left: 0;
  min-width: 220px;
  /* Ensures the box is wide enough for the text */
  margin: 0;
  padding: 10px 0;
  background-color: #222;
  /* Dark background to match your white text */
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 100;
  /* Keeps the menu on top of other website content */

  /* Animation settings */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav-scrolled .nav-links .sub-menu {
  background-color: white;
}

/* 3. Reveal the submenu on hover */
.nav-links .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Style the links inside the submenu */
.nav-links .sub-menu a {
  display: block;
  /* Makes the entire row clickable, not just the text */
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  white-space: nowrap;
  /* Prevents text from wrapping to a second line */
}

/* Hover effects for links */
.nav-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-links .sub-menu a:hover {
  background-color: #333;
  /* Slight background highlight on submenu items */
}

/* 1. Create the down arrow using a pseudo-element */
.nav-links .menu-item-has-children>a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  /* Adds space between the text and the arrow */
  vertical-align: middle;
  /* Aligns the arrow with the text */

  /* Pure CSS triangle trick */
  border-top: 4px solid currentColor;
  /* Uses the link's text color */
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;

  /* Smooth animation for the rotation effect */
  transition: transform 0.3s ease;
}

/* 2. Optional: Flip the arrow upside down when hovering */
.nav-links .menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════════
   POPUP — FREE TV QUOTE FORM (ID 971)
   ═══════════════════════════════════════════════════════════════ */

/* Popup overlay transition */
.elementor-popup-modal .dialog-widget-content {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3) !important;
}

/* Form container padding */
.elementor-popup-modal .elementor-form {
  padding: 28px 36px 8px;
}

/* Form field labels */
.elementor-popup-modal .elementor-field-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  letter-spacing: 0.3px;
  margin-bottom: 6px !important;
}

/* Form inputs, selects, textareas */
.elementor-popup-modal .elementor-field-textual,
.elementor-popup-modal .elementor-field-textual.elementor-field {
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  background: var(--off-white) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 8px !important;
  padding: 13px 16px !important;
  color: var(--text) !important;
  transition: all 0.25s ease !important;
}

.elementor-popup-modal .elementor-field-textual::placeholder {
  color: rgba(90, 106, 122, 0.45) !important;
}

.elementor-popup-modal .elementor-field-textual:focus {
  border-color: var(--orange) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 4px rgba(244, 97, 31, 0.1) !important;
  outline: none !important;
}

/* Select dropdowns */
.elementor-popup-modal select.elementor-field-textual {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px !important;
  padding-right: 40px !important;
  cursor: pointer;
}

/* Textarea sizing */
.elementor-popup-modal textarea.elementor-field-textual {
  min-height: 80px !important;
  resize: vertical;
}

/* Submit button */
.elementor-popup-modal .elementor-button[type="submit"],
.elementor-popup-modal .e-form__buttons__wrapper .elementor-button {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 32px !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.elementor-popup-modal .elementor-button[type="submit"]:hover,
.elementor-popup-modal .e-form__buttons__wrapper .elementor-button:hover {
  background: var(--orange2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244, 97, 31, 0.4) !important;
}

.elementor-popup-modal .elementor-button[type="submit"]:active,
.elementor-popup-modal .e-form__buttons__wrapper .elementor-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(244, 97, 31, 0.3) !important;
}

/* Button icon (arrow) */
.elementor-popup-modal .elementor-button .elementor-button-icon {
  transition: transform 0.3s ease;
}

.elementor-popup-modal .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

/* Success message */
.elementor-popup-modal .elementor-message.elementor-message-success {
  font-family: 'Outfit', sans-serif !important;
  background: rgba(16, 185, 129, 0.08);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Error message */
.elementor-popup-modal .elementor-message.elementor-message-danger {
  font-family: 'Outfit', sans-serif !important;
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Close button styling */
.elementor-popup-modal .dialog-close-button {
  transition: all 0.2s ease !important;
}

.elementor-popup-modal .dialog-close-button:hover {
  transform: rotate(90deg);
}

/* Required asterisk */
.elementor-popup-modal .elementor-mark-required .elementor-field-label::after {
  color: var(--orange) !important;
}

/* Row spacing for form fields */
.elementor-popup-modal .elementor-form-fields-wrapper {
  row-gap: 4px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .elementor-popup-modal .dialog-widget-content {
    margin: 12px !important;
    border-radius: 12px !important;
  }

  .elementor-popup-modal .elementor-form {
    padding: 20px 20px 4px;
  }

  .elementor-popup-modal .elementor-field-group {
    width: 100% !important;
  }
}

/* =========================================================================
   ADDITIONAL STYLING FIXES (Desktop Page Offset & Mobile Padding Optimizer)
   ========================================================================= */

/* Offset page content for fixed header on desktop viewports */
main#primary.site-main {
  padding-top: 90px;
}

/* Ensure the first elementor container starts directly below the header without extra empty space */
main#primary.site-main > .elementor > .e-con.e-parent:first-child,
main#primary.site-main > .elementor > .e-con-boxed.e-parent:first-child,
main#primary.site-main > .elementor > .e-con-full.e-parent:first-child,
main#primary.site-main > .elementor > .e-con:first-of-type,
main#primary.site-main > .elementor > .e-container:first-of-type,
main#primary.site-main > .elementor > .elementor-section:first-of-type {
  margin-top: 0 !important;
}

/* Optimization for very narrow mobile phone viewports */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }
  
  .hero p {
    font-size: 15px !important;
  }
  
  .service-card {
    padding: 24px 20px !important;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px !important;
  }

  .section-title {
    font-size: 28px !important;
  }
  
  .section {
    padding: 60px 0 !important;
  }
  
  .stat-item {
    padding: 24px 12px !important;
  }
  
  .stat-number {
    font-size: 36px !important;
  }
}

/* =========================================================================
   MOBILE RESPONSIVENESS AND NAVIGATION ALIGNMENT OPTIMIZATIONS
   ========================================================================= */

/* Explicit Reset to Clear Red Background on Close Toggle */
nav#site-nav:not(.nav-open) .nav-mobile-toggle {
  background: transparent !important;
  box-shadow: none !important;
}

/* Hide mobile submenu toggle button on desktop viewports */
.sub-menu-toggle {
  display: none !important;
}

/* Consistent Mobile Menu Alignment Overrides */
@media (max-width: 1024px) {
  nav#site-nav .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  nav#site-nav .nav-links li {
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    position: relative !important;
  }
  nav#site-nav .nav-links a {
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    font-size: 16px !important; /* Smaller font-size for mobile menu main links */
    padding: 10px 0 !important; /* Smaller vertical padding */
  }

  /* Force mobile submenu container to be visible and correctly styled when active, overriding desktop hover rules */
  nav#site-nav .nav-links .menu-item-has-children .sub-menu {
    position: static !important;
    display: none !important; /* Managed via .sub-menu-open below */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    margin: 5px 0 10px 0 !important;
    padding: 4px 0 !important;
    border-radius: 8px !important;
    width: 100% !important;
    min-width: 100% !important;
    transition: none !important;
  }

  nav#site-nav .nav-links .menu-item-has-children.sub-menu-open > .sub-menu {
    display: block !important;
  }

  nav#site-nav .nav-links .sub-menu a {
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 8px 16px !important; /* More compact submenu padding */
    padding-left: 20px !important; /* Indent slightly */
    font-size: 14px !important; /* Smaller font size for submenu links */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  }

  nav#site-nav .nav-links .sub-menu a:last-child {
    border-bottom: none !important;
  }

  /* Adjust accordion toggle button size and placement to fit the smaller menu spacing */
  nav#site-nav .sub-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    position: absolute !important;
    right: 0 !important;
    top: 2px !important;
    width: 38px !important;
    height: 38px !important;
    cursor: pointer !important;
    color: rgba(255, 255, 255, 0.55) !important;
    z-index: 10 !important;
  }

  nav#site-nav .sub-menu-open > .sub-menu-toggle .chevron {
    transform: rotate(-135deg) !important;
    color: var(--orange) !important;
  }

  nav#site-nav .nav-links a.nav-cta {
    display: block !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 12px 20px !important; /* More compact CTA padding */
    font-size: 15px !important; /* Slightly smaller CTA font */
    margin-top: 15px !important;
  }

  nav#site-nav .nav-phone {
    margin-top: 15px !important;
    font-size: 16px !important;
  }
}

/* About Page Philosophy Grid Mobile Optimization */
@media (max-width: 767px) {
  #about-philosophy .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Contact Page Cards Centering on Mobile Viewports */
@media (max-width: 767px) {
  .contact-card,
  .contact-card .elementor-icon-box-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .contact-card .c-icon,
  .contact-card .elementor-icon-box-icon,
  .contact-card .elementor-icon-box-icon a {
    margin-right: 0 !important;
    margin-bottom: 16px !important;
    margin-left: 0 !important;
    text-align: center !important;
  }
  
  .contact-card .elementor-icon-box-content {
    text-align: center !important;
  }
}

/* Remove excessive empty space after contact form on mobile viewports */
@media (max-width: 767px) {
  #contact-main-section,
  .contact-section {
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }
  
  #contact-trust-section,
  .trust-bar {
    margin-top: 10px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  
  .contact-form-wrapper {
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }
}

/* Evolve Platform App Logo Styling */
.sf-app .app-logo {
  display: block;
  margin: 0 auto 8px;
  height: 24px;
  width: auto;
  max-width: 100%;
}