/* ==========================================================================
   OC CONCRETING SERVICES - MODERN DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary-orange: #ff5e14;
  --primary-orange-hover: #e64e07;
  --primary-orange-glow: rgba(255, 94, 20, 0.4);
  
  /* Neutral & Dark Shades */
  --dark-bg: #090d14;
  --text-pure-white: #ffffff;
  --text-offwhite: #f3f4f6;
  --text-muted: #d1d5db;
  --text-subtle: #9ca3af;
  --text-dark: #1a1e24;
  --header-bg: #ffffff;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dimensions & Transitions */
  --header-height: 108px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-offwhite);
  background-color: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-bg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.logo-image {
  height: 83px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop Main Nav */
.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: #272d37;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-orange);
}

/* Active Link State */
.nav-link.active {
  color: var(--primary-orange);
  font-weight: 700;
}

/* Header Call CTA Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--text-pure-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(255, 94, 20, 0.3);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.header-call-btn:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 94, 20, 0.45);
}

.phone-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-svg {
  display: block;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 24px 32px 36px;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  padding: 6px 0;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--primary-orange);
}

.mobile-drawer-footer {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: #090d14;
}

/* Panoramic Background */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  transform: scale(1.02);
  transition: transform 0.25s ease-out;
}

/* Seamless Vignette Overlay matching reference design */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Left to right dark contrast gradient */
    linear-gradient(90deg, 
      rgba(7, 10, 16, 0.88) 0%, 
      rgba(7, 10, 16, 0.82) 32%, 
      rgba(7, 10, 16, 0.52) 52%, 
      rgba(7, 10, 16, 0.15) 74%, 
      transparent 100%),
    /* Bottom gradient for trust badges */
    linear-gradient(0deg, 
      rgba(5, 8, 14, 0.92) 0%, 
      rgba(5, 8, 14, 0.55) 15%, 
      transparent 32%);
}

/* Hero Content Container */
.hero-container {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 140px; /* Ample 140px bottom spacing guarantees buttons are never covered by the bottom trust bar */
  box-sizing: border-box;
}

.hero-content {
  max-width: 780px;
}

/* Eyebrow Subtitle */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow-accent-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  box-shadow: 0 0 8px var(--primary-orange);
}

.eyebrow-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.eyebrow-word {
  display: inline;
}

.eyebrow-space {
  display: inline;
}

.eyebrow-accent-bar {
  display: none;
}

/* Massive Bold Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.title-row {
  display: block;
}

.title-nowrap,
.title-row-brighter {
  white-space: nowrap;
}

.title-space-desktop {
  display: inline;
}

.title-row-tomorrow {
  display: inline;
}

.title-text.word-white {
  color: var(--text-pure-white);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
}

.title-text.word-orange {
  color: var(--primary-orange);
  text-shadow: 0 3px 25px rgba(255, 94, 20, 0.45);
  position: relative;
  display: inline-block;
}

/* Creative Subtle Shimmer on Orange Word */
.shimmer-text {
  background: linear-gradient(
    90deg, 
    #ff5e14 0%, 
    #ffa370 30%, 
    #ffffff 50%, 
    #ffa370 70%, 
    #ff5e14 100%
  );
  background-size: 260% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerWave 7s infinite ease-in-out;
}

@keyframes shimmerWave {
  0% { background-position: -220% center; }
  45%, 100% { background-position: 220% center; }
}

/* Hero Description */
.hero-description {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: #d1d5db;
  max-width: 530px;
  margin-bottom: 26px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* CTA Buttons Group - Guaranteed High Visibility */
.hero-cta-group {
  display: flex !important;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 6;
  margin-top: 6px;
}

/* Button Component Styles */
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13.5px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
  position: relative;
  text-decoration: none;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Primary CTA: Orange */
.btn-primary {
  background-color: var(--primary-orange);
  color: var(--text-pure-white);
  box-shadow: 0 4px 18px var(--primary-orange-glow);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 94, 20, 0.55);
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

/* Secondary CTA: Transparent Glass Outline */
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-pure-white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   BOTTOM FEATURE / TRUST BADGES BAR
   ========================================================================== */

.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-bottom: 20px;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 4px 18px;
  transition: transform var(--transition-fast);
}

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

.trust-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure-white);
  flex-shrink: 0;
}

.trust-svg {
  width: 38px;
  height: 38px;
  display: block;
}

.trust-text-box {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: var(--text-pure-white);
  line-height: 1.25;
}

.trust-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--text-pure-white);
  line-height: 1.25;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* ==========================================================================
   INTERACTIVE QUOTE MODAL
   ========================================================================== */

.quote-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 9, 15, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.quote-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal {
  position: relative;
  background: linear-gradient(145deg, #151c28, #0e131d);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 38px 36px;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-normal);
}

.quote-modal-backdrop.active .quote-modal {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #9ca3af;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 26px;
}

.modal-badge {
  display: inline-block;
  background: rgba(255, 94, 20, 0.18);
  color: var(--primary-orange);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.2);
}

.form-group select option {
  background: #111827;
  color: #ffffff;
}

.btn-block {
  width: 100%;
  margin-top: 8px;
}

.modal-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  gap: 16px;
}

.modal-success-state.active {
  display: flex;
}

.success-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 94, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.modal-success-state h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.modal-success-state p {
  color: #9ca3af;
  max-width: 380px;
  font-size: 14.5px;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-section {
  background-color: #ffffff;
  padding: 85px 0 95px;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 480px;
}

/* Left Media Column */
.about-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 440px;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-media:hover .about-image {
  transform: scale(1.04);
}

/* Angled Dark Badge on Bottom-Left */
.about-corner-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 68%;
  min-width: 250px;
  background: linear-gradient(135deg, #151a24 0%, #0c1017 100%);
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  padding: 26px 28px 22px;
  z-index: 5;
  box-shadow: 4px -4px 20px rgba(0, 0, 0, 0.3);
}

.corner-badge-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.corner-badge-decor-line {
  width: 2px;
  height: 64px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.corner-badge-text-group {
  display: flex;
  flex-direction: column;
}

.corner-badge-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.25;
}

.corner-badge-accent-bar {
  width: 50px;
  height: 3.5px;
  background-color: var(--primary-orange);
  margin-top: 8px;
  border-radius: 2px;
}

/* Right Content Area */
.about-body {
  display: flex;
  position: relative;
  background: #ffffff;
}

.about-text-content {
  flex: 1;
  padding: 44px 38px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1f2937;
  margin-bottom: 8px;
  display: block;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.7vw, 2.4rem);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-description {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 26px;
  max-width: 580px;
}

/* 3 Feature Pillars */
.about-pillars {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: transform var(--transition-fast);
}

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

.pillar-icon-box {
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.pillar-item:hover .pillar-icon-box {
  color: var(--primary-orange);
}

.pillar-svg {
  width: 32px;
  height: 32px;
}

.pillar-text {
  display: flex;
  flex-direction: column;
}

.pillar-label {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
}

.pillar-divider {
  width: 1px;
  height: 42px;
  background-color: #e5e7eb;
  flex-shrink: 0;
}

/* More About Us CTA Button */
.about-action {
  margin-top: 4px;
}

.about-more-btn {
  background-color: var(--primary-orange);
  color: #ffffff;
  padding: 12.5px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.35);
  transition: all var(--transition-fast);
  display: inline-flex;
}

.about-more-btn:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 94, 20, 0.5);
}

.about-more-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Far Right Angled Experience Banner */
.about-experience-badge {
  width: 165px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #151a24 0%, #0c1017 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 24px 38px;
  position: relative;
}

.exp-badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
}

.exp-counter {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 4px;
}

.exp-word {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
}

.exp-accent-bar {
  width: 46px;
  height: 3.5px;
  background-color: var(--primary-orange);
  margin-top: 8px;
  border-radius: 2px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
  background-color: #f4f6f9;
  padding: 85px 0 95px;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 46px;
  gap: 20px;
  flex-wrap: wrap;
}

.services-eyebrow {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 8px;
  display: block;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-transform: uppercase;
}

.services-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.services-view-all:hover {
  color: var(--primary-orange-hover);
  transform: translateX(4px);
}

/* 4 Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.service-card-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e5e7eb;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card-body {
  padding: 0 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

/* Circular Icon Badge */
.service-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  border: 3.5px solid #ffffff;
  box-shadow: 0 4px 14px rgba(255, 94, 20, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
  margin-bottom: 16px;
  position: relative;
  z-index: 5;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.service-card:hover .service-icon-badge {
  transform: scale(1.1);
  background-color: var(--primary-orange-hover);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 22px;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-link:hover,
.service-card:hover .service-card-link {
  gap: 12px;
  color: var(--primary-orange-hover);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

.why-us-section {
  position: relative;
  overflow: hidden;
  background-color: #0b0f17;
  min-height: 145px;
  display: flex;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-us-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.why-us-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  opacity: 0.6;
}

.why-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(8, 12, 19, 0.98) 0%, 
    rgba(8, 12, 19, 0.92) 36%, 
    rgba(8, 12, 19, 0.65) 68%, 
    rgba(8, 12, 19, 0.35) 100%
  );
}

.why-us-container {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Title Block */
.why-us-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.why-us-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.why-us-heading .word-white {
  color: #ffffff;
}

.why-us-heading .word-orange {
  color: var(--primary-orange);
}

.why-us-underline {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  border-radius: 1px;
}

/* Right 4 Trust Features */
.why-us-features {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
}

.why-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition-fast);
}

.why-feature-item:hover {
  transform: translateY(-2px);
}

.why-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.why-feature-item:hover .why-icon-wrap {
  transform: scale(1.1);
}

.why-svg {
  width: 28px;
  height: 28px;
  display: block;
}

.why-feature-text {
  display: flex;
  flex-direction: column;
}

.why-line {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  white-space: nowrap;
}

.why-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */

.projects-section {
  background-color: #0b1019;
  background-image: 
    radial-gradient(circle at 12% 40%, rgba(255, 94, 20, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, rgba(11, 16, 25, 0.94) 0%, rgba(11, 16, 25, 0.98) 100%),
    url('why-choose-bg.jpg');
  background-size: auto, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.projects-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.projects-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.projects-eyebrow {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-orange);
}

.projects-eyebrow-line {
  width: 44px;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 1px;
}

.projects-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-transform: uppercase;
}

.btn-projects-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.02);
}

.btn-projects-view-all:hover {
  border-color: var(--primary-orange);
  background: rgba(255, 94, 20, 0.14);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

/* Carousel Layout */
.projects-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 -10px;
  padding: 10px;
}

.project-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(14, 20, 30, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  margin-bottom: 42px; /* Perfectly centers with card image above info text */
}

.project-nav-btn:hover {
  border-color: var(--primary-orange);
  background: var(--primary-orange);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 18px var(--primary-orange-glow);
}

.project-nav-btn:active {
  transform: scale(0.95);
}

.projects-track-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 12px;
}

.projects-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Project Card */
.project-card {
  flex: 0 0 calc((100% - 72px) / 4);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.project-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  min-height: 190px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1a2230;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(11, 16, 25, 0.45) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.project-card:hover .project-card-img {
  transform: scale(1.08);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 4px;
}

.project-card-text {
  display: flex;
  flex-direction: column;
}

.project-name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
  line-height: 1.25;
}

.project-location {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #9ca3af;
  display: block;
}

.project-arrow-icon {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.project-card:hover .project-arrow-icon {
  color: var(--primary-orange);
  transform: translateX(4px);
}

.projects-mobile-controls {
  display: none;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  background-color: #f4f6f8;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Header */
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonials-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonials-eyebrow {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-orange);
}

.testimonials-eyebrow-line {
  width: 44px;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 1px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Controls (Dots + Chevrons) */
.testimonials-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonials-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-dot:hover {
  background-color: #94a3b8;
  transform: scale(1.15);
}

.testimonial-dot.active {
  background-color: var(--primary-orange);
  width: 10px;
  height: 10px;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 94, 20, 0.45);
}

.testimonials-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-nav-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border-radius: 4px;
}

.testimonial-nav-btn:hover {
  color: var(--primary-orange);
  transform: scale(1.2);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

/* Carousel Viewport & Track */
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 4px 20px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Card Design */
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 10px;
  padding: 34px 30px 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.testimonial-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.testimonial-quote-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}

.testimonial-quote-svg {
  width: 26px;
  height: 22px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
  font-weight: 500;
}

.testimonial-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 40px; /* Aligns with text beside the quote icon */
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--primary-orange);
}

.testimonial-author-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.testimonial-location {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  background-color: #0b1019;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1.6fr 1fr;
  align-items: stretch;
  min-height: 480px;
  position: relative;
}

/* Left Column: Info */
.contact-info-col {
  padding: 70px 30px 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-eyebrow {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-orange);
}

.contact-eyebrow-line {
  width: 44px;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 1px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 32px;
  max-width: 380px;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.contact-item-row:hover {
  transform: translateX(4px);
}

.contact-item-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 94, 20, 0.35);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.contact-item-row:hover .contact-item-icon-box {
  transform: scale(1.1);
  background-color: var(--primary-orange-hover);
}

.contact-item-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

.contact-item-row:hover .contact-item-val {
  color: var(--primary-orange);
}

/* Center Column: Direct Form */
.contact-form-col {
  padding: 65px 35px 65px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-box {
  display: flex;
  flex-direction: column;
}

.contact-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.custom-field-wrap {
  position: relative;
  margin-bottom: 14px;
}

.custom-field-wrap input,
.custom-field-wrap select,
.custom-field-wrap textarea {
  width: 100%;
  background: rgba(17, 24, 38, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 13px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
}

.custom-field-wrap input:focus,
.custom-field-wrap select:focus,
.custom-field-wrap textarea:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.2);
  background: rgba(22, 31, 48, 0.95);
}

.floating-field-label {
  position: absolute;
  left: 18px;
  top: 14px;
  color: #9ca3af;
  font-family: var(--font-body);
  font-size: 14px;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 3px;
}

.orange-star {
  color: var(--primary-orange);
  font-weight: bold;
}

.custom-field-wrap input:focus ~ .floating-field-label,
.custom-field-wrap input:not(:placeholder-shown) ~ .floating-field-label,
.custom-field-wrap textarea:focus ~ .floating-field-label,
.custom-field-wrap textarea:not(:placeholder-shown) ~ .floating-field-label,
.custom-field-wrap select:focus ~ .floating-field-label,
.custom-field-wrap select:valid ~ .floating-field-label {
  opacity: 0;
  transform: translateY(-8px);
}

.select-custom-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.select-custom-wrap select option {
  background-color: #0d1422;
  color: #ffffff;
  padding: 8px;
}

.select-arrow-chevron {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.textarea-custom-wrap textarea {
  resize: vertical;
  min-height: 105px;
}

.btn-contact-send {
  width: 100%;
  background: var(--primary-orange);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 15px 24px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 18px rgba(255, 94, 20, 0.35);
  margin-top: 4px;
}

.btn-contact-send:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 94, 20, 0.5);
}

.btn-contact-send:active {
  transform: scale(0.98);
}

.contact-success-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 94, 20, 0.12);
  border: 1px solid var(--primary-orange);
  border-radius: 6px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13.5px;
  margin-top: 14px;
  animation: fadeIn 0.3s ease;
}

/* Right Column: Angled Textured Trust Panel */
.contact-trust-col {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 60px;
  background-color: #0b1019;
  clip-path: polygon(55px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.contact-trust-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 94, 20, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
  z-index: 5;
}

.contact-trust-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.contact-trust-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.45;
}

.contact-trust-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(11, 16, 25, 0.88) 0%, 
    rgba(11, 16, 25, 0.4) 100%
  );
}

.contact-trust-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform var(--transition-fast);
}

.contact-trust-item:hover {
  transform: translateX(4px);
}

.contact-trust-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.contact-trust-item:hover .contact-trust-icon-box {
  transform: scale(1.1);
}

.contact-trust-svg {
  display: block;
}

.contact-trust-text-box {
  display: flex;
  flex-direction: column;
}

.trust-title-line {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.site-footer {
  background-color: #060a11;
  color: #9ca3af;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 40px 0;
}

.footer-main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 60px;
}

/* Col 1: Brand & Socials */
.footer-col-brand {
  flex: 0 0 310px;
  max-width: 310px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
  transition: transform var(--transition-fast);
}

.footer-logo-link:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 83px; /* Exactly matches navbar logo size */
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: #9ca3af;
  margin-bottom: 22px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social-btn:hover {
  border-color: var(--primary-orange);
  background-color: var(--primary-orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 94, 20, 0.35);
}

/* Vertical Dividers */
.footer-divider-vert {
  width: 1px;
  height: 170px;
  background-color: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin-top: 10px;
}

/* Common Column Styles */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  position: relative;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #9ca3af;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-orange);
  transform: translateX(4px);
}

/* Col 4: Contact Us */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #d1d5db;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a.footer-contact-item:hover {
  color: var(--primary-orange);
}

.footer-contact-svg {
  flex-shrink: 0;
  display: block;
}

/* Col 5: Australia Badge */
.footer-col-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
}

.footer-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.australia-map-svg {
  fill: #8e9ba9;
  display: block;
  transition: transform var(--transition-fast), fill var(--transition-fast);
}

.footer-badge-wrap:hover .australia-map-svg {
  transform: scale(1.06);
  fill: #ffffff;
}

.footer-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-line {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.footer-tagline-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: #9ca3af;
}

.footer-tagline-line {
  width: 26px;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 1px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================= */

@media (max-width: 1140px) {
  .header-container {
    padding: 0 28px;
  }

  .nav-list {
    gap: 22px;
  }

  .trust-container {
    padding: 16px 28px;
  }

  .trust-title {
    font-size: 13px;
  }

  .trust-subtitle {
    font-size: 12px;
  }

  .trust-svg {
    width: 32px;
    height: 32px;
  }

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

  .about-text-content {
    padding: 36px 28px 34px 34px;
  }

  .about-experience-badge {
    width: 140px;
    padding: 20px 14px 20px 30px;
  }

  .exp-counter {
    font-size: 42px;
  }

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

  .why-us-features {
    gap: 20px;
  }

  .why-line {
    font-size: 12.5px;
  }

  .why-svg {
    width: 24px;
    height: 24px;
  }

  .project-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
    padding: 28px 24px 24px;
  }

  .contact-container {
    grid-template-columns: 1fr 1.2fr;
    padding: 0 28px;
  }

  .contact-trust-col {
    grid-column: 1 / -1;
    clip-path: none;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px 20px;
  }

  .contact-trust-col::before {
    display: none;
  }

  .contact-trust-inner {
    flex-direction: row;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-main-row {
    flex-wrap: wrap;
    gap: 36px 28px;
  }

  .footer-divider-vert {
    display: none;
  }

  .footer-col-brand {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 96px;
  }

  .logo-image {
    height: 72px;
  }

  .footer-logo-img {
    height: 72px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: flex;
  }

  .hero-section {
    height: auto;
    min-height: 760px;
    padding: 70px 0 180px;
  }

  .hero-container {
    padding-bottom: 30px;
  }

  .trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 28px;
  }

  .trust-divider {
    display: none;
  }

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

  .about-media {
    min-height: 380px;
  }

  .about-corner-badge {
    width: 80%;
  }

  .about-body {
    flex-direction: column;
  }

  .about-experience-badge {
    width: 100%;
    clip-path: none;
    padding: 24px 36px;
    justify-content: flex-start;
  }

  .exp-badge-content {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .exp-counter {
    margin-bottom: 0;
  }

  .exp-accent-bar {
    display: none;
  }

  .why-us-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
  }

  .why-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 114px;
  }

  .site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .header-container {
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .logo-image {
    height: 94px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide call button from navbar header on mobile */
  .header-call-btn {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .hamburger-bar {
    width: 100%;
    height: 2.5px;
    background-color: #111827;
    border-radius: 2px;
    transition: all var(--transition-fast);
  }

  /* Mobile Hero Section - Compact & Natural Height */
  .hero-section {
    min-height: auto !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 26px 0 46px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 25%;
    transform: none !important;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(180deg, rgba(8, 12, 18, 0.76) 0%, rgba(8, 12, 18, 0.48) 45%, rgba(8, 12, 18, 0.82) 100%),
      linear-gradient(90deg, rgba(8, 12, 18, 0.88) 0%, rgba(8, 12, 18, 0.55) 60%, rgba(8, 12, 18, 0.22) 100%);
    pointer-events: none;
  }

  .hero-container {
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile Eyebrow Subtitle */
  .hero-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
  }

  .eyebrow-accent-dot {
    display: none;
  }

  .eyebrow-text-wrapper {
    display: block;
  }

  .eyebrow-text {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #cbd5e1;
    line-height: 1.38;
    text-transform: uppercase;
  }

  .eyebrow-word {
    display: block;
  }

  .eyebrow-space {
    display: none;
  }

  .eyebrow-accent-bar {
    display: block;
    width: 34px;
    height: 3.5px;
    background-color: var(--primary-orange);
    border-radius: 2px;
  }

  /* Mobile Hero Title */
  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.15rem, 8.8vw, 2.75rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: 100%;
  }

  .title-row {
    display: block;
  }

  .title-row-brighter {
    display: block;
    white-space: normal;
  }

  .title-space-desktop {
    display: none;
  }

  .title-row-tomorrow {
    display: block;
  }

  .title-text.word-white {
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
  }

  .title-text.word-orange {
    color: var(--primary-orange);
    text-shadow: 0 3px 20px rgba(255, 94, 20, 0.4);
    display: inline-block;
  }

  /* Mobile Hero Description */
  .hero-description {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.9);
    max-width: 92%;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }

  /* Mobile Hero CTA Buttons */
  .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    gap: 12px;
    margin-bottom: 22px;
  }

  .btn {
    width: 100% !important;
    height: 50px;
    padding: 0 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.15s ease, background-color 0.2s ease;
  }

  .btn:active {
    transform: scale(0.98) !important;
  }

  .btn-primary {
    background-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(255, 94, 20, 0.4);
    border: none;
  }

  .btn-secondary {
    background: rgba(10, 15, 22, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Mobile Trust Features 2x2 Grid */
  .trust-bar {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 0 0 8px;
    bottom: auto;
    left: auto;
    z-index: 10;
  }

  .trust-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 0 !important;
    padding: 0 16px 0 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .trust-divider {
    display: none !important;
  }

  .trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  .trust-item-col1 {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding-right: 12px !important;
  }

  .trust-item-col2 {
    padding-left: 14px !important;
  }

  .trust-icon-box {
    color: #ffffff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
  }

  .trust-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .trust-title {
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
    line-height: 1.22;
  }

  .trust-subtitle {
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.22;
  }

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

  .quote-modal {
    padding: 28px 22px;
  }

  .about-section {
    padding: 55px 0;
  }

  .about-wrapper {
    padding: 0 20px;
  }

  .about-text-content {
    padding: 30px 20px;
  }

  .about-pillars {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pillar-divider {
    display: none;
  }

  .about-more-btn {
    width: 100%;
  }

  .about-corner-badge {
    width: 95%;
    clip-path: none;
    border-top-right-radius: 8px;
  }

  .exp-badge-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .services-section {
    padding: 55px 0;
  }

  .services-container {
    padding: 0 20px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-us-section {
    padding: 36px 0;
  }

  .why-us-container {
    padding: 0 20px;
  }

  .why-us-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .projects-section {
    padding: 55px 0;
  }

  .projects-container {
    padding: 0 20px;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .projects-carousel-wrapper {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .projects-track-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }

  .projects-track-viewport:active {
    cursor: grabbing;
  }

  .projects-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .project-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  /* Floating Overlay Nav Arrows on Mobile Card */
  .project-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 20;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 22, 34, 0.88);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    margin: 0;
    transition: all var(--transition-fast);
  }

  .project-prev-btn {
    left: 10px;
  }

  .project-next-btn {
    right: 10px;
  }

  .project-nav-btn:hover,
  .project-nav-btn:active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 20px rgba(255, 94, 20, 0.5);
  }

  /* Mobile Controls Bar (Dots, Counter & Buttons) */
  .projects-mobile-controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 10px 14px;
    background: rgba(18, 25, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .projects-ctrl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
  }

  .projects-ctrl-btn:hover,
  .projects-ctrl-btn:active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(255, 94, 20, 0.4);
  }

  .projects-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .projects-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .projects-dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 94, 20, 0.7);
  }

  .projects-counter-badge {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .projects-counter-badge span:first-child {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 14px;
  }

  .testimonials-section {
    padding: 55px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonials-controls {
    width: 100%;
    justify-content: space-between;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 26px 20px 22px;
  }

  .testimonial-footer {
    padding-left: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .contact-info-col {
    padding: 50px 0 20px;
  }

  .contact-form-col {
    padding: 10px 0 45px;
  }

  .contact-input-row {
    grid-template-columns: 1fr;
  }

  .contact-trust-col {
    padding: 40px 20px;
  }

  .contact-trust-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-container {
    padding: 50px 20px 0;
  }

  .footer-logo-img {
    height: 94px; /* Same size as mobile navbar logo */
  }

  .footer-main-row {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-col-brand,
  .footer-col-links,
  .footer-col-services,
  .footer-col-contact,
  .footer-col-badge {
    flex: 0 0 100%;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer-badge-wrap {
    align-items: flex-start;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Ultra-compact Mobile Viewports (320px - 360px) */
@media (max-width: 360px) {
  :root {
    --header-height: 102px;
  }

  .header-container {
    padding: 0 14px;
  }

  .logo-image {
    height: 80px;
  }

  .footer-logo-img {
    height: 80px;
  }


  .mobile-menu-toggle {
    width: 22px;
    height: 16px;
  }

  .hero-container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .trust-container {
    padding: 0 10px 0 16px !important;
  }

  .trust-item-col1 {
    padding-right: 8px !important;
  }

  .trust-item-col2 {
    padding-left: 8px !important;
  }

  .trust-item {
    gap: 8px !important;
  }

  .trust-svg {
    width: 26px;
    height: 26px;
  }

  .trust-title {
    font-size: 10px;
  }

  .trust-subtitle {
    font-size: 9px;
  }
}
