/* ==========================================================================
   Victorian Building Surveyors - Precision Stylesheet
   Modern, High-Fidelity & Responsive Design
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Brand Palette from Design */
  --color-brand-blue: #113c5d;
  --color-primary-accent: #2b76b2;
  --color-primary-hover: #226499;
  --color-accent-sky: #70b4e7;
  --color-dark-navy: #081a2c;
  --color-nav-dark: #092846;
  --color-nav-text: #2c3e50;
  --color-text-muted: #d1e2f1;
  --color-white: #ffffff;
  
  /* Layout Spacing */
  --header-height: 86px;
  --container-max: 1420px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-family: var(--font-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-white);
  color: var(--color-nav-text);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  z-index: 100;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  height: 78px;
}

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

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

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

.logo-img {
  height: 72px; /* 50% larger (from 48px to 72px) */
  width: auto;
  object-fit: contain;
  transition: height var(--transition-smooth), transform var(--transition-fast);
}

.site-header.scrolled .logo-img {
  height: 62px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-nav-text);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

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

.nav-link.active {
  color: var(--color-primary-accent);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-accent);
  border-radius: 2px;
}

/* Header Right Actions (Phone & Hamburger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-nav-dark);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-smooth);
  box-shadow: 0 3px 12px rgba(9, 40, 70, 0.16);
}

.phone-btn:hover {
  background-color: #0d3862;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(9, 40, 70, 0.25);
}

.phone-icon {
  stroke-width: 2.2;
  transition: transform var(--transition-bounce);
}

.phone-btn:hover .phone-icon {
  transform: rotate(-10deg) scale(1.06);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  padding: 0;
  z-index: 105;
}

.mobile-toggle .bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-nav-dark);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

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

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

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

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 99;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav-link {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-nav-text);
  transition: color var(--transition-fast);
}

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

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-phone-btn {
  justify-content: center;
  width: 100%;
  padding: 14px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-dark-navy);
}

/* Background Image & Architectural Framing */
.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 48%;
  transform: scale(1.01);
  transition: transform 10s ease-out;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.04);
}

/* Seamless Navy Gradient Blend */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 24, 40, 0.96) 0%,
    rgba(7, 25, 42, 0.94) 28%,
    rgba(8, 27, 44, 0.84) 40%,
    rgba(8, 28, 46, 0.52) 56%,
    rgba(8, 28, 46, 0.16) 72%,
    rgba(8, 28, 46, 0.02) 86%,
    transparent 100%
  );
  pointer-events: none;
}

/* Hero Content Area */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 68px 54px;
}

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

/* Eyebrow / Tag */
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
}

.hero-eyebrow span {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-sky);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

/* Headline H1 */
.hero-headline {
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 750;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.018em;
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

/* Description Text */
.hero-description {
  font-size: clamp(15.5px, 1.22vw, 16.8px);
  line-height: 1.66;
  color: var(--color-text-muted);
  font-weight: 400;
  max-width: 510px;
  margin-bottom: 18px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

/* Established Note */
.hero-meta {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

/* Action Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

/* Primary Button */
.btn-primary {
  background-color: var(--color-primary-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(43, 118, 178, 0.38);
  border: 1.5px solid transparent;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(43, 118, 178, 0.52);
}

.btn-arrow {
  transition: transform var(--transition-smooth);
}

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

/* Outline Button */
.btn-outline {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 500;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

/* ==========================================================================
   Smooth Staggered Entrance Animations
   ========================================================================== */
.fade-in-element {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Quick Contact Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 20, 34, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: var(--color-white);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.92) translateY(20px);
  transition: all var(--transition-smooth);
}

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

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  color: #718096;
  transition: color var(--transition-fast);
  line-height: 1;
}

.modal-close:hover {
  color: #1a202c;
}

.modal-subtitle {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-nav-dark);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 22px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f1f6fb;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid #dce8f5;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 12.5px;
  color: #5a6e85;
  font-weight: 500;
}

.contact-card-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-brand-blue);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d8e2ed;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: #1a202c;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-primary-accent);
  box-shadow: 0 0 0 3px rgba(43, 118, 178, 0.15);
}

.modal-submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Large screens: Expand layout */
@media (min-width: 1440px) {
  .hero-container {
    padding: 85px 60px;
  }
  .hero-content {
    max-width: 620px;
  }
}

/* Tablet & Smaller Laptops */
@media (max-width: 1120px) {
  .header-container,
  .hero-container {
    padding: 0 32px;
  }
  .nav-list {
    gap: 20px;
  }
  .nav-link {
    font-size: 14px;
  }
  .phone-btn {
    padding: 9px 18px;
    font-size: 13.5px;
  }
  .hero-gradient-overlay {
    background: linear-gradient(
      90deg,
      rgba(7, 24, 40, 0.97) 0%,
      rgba(7, 25, 42, 0.95) 35%,
      rgba(8, 27, 44, 0.86) 50%,
      rgba(8, 28, 46, 0.45) 72%,
      transparent 100%
    );
  }
}

/* Small Tablets & Mobile Navigation Trigger */
@media (max-width: 960px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .site-header {
    height: 72px;
  }
  .header-container {
    padding: 0 20px;
  }
  .hero-section {
    min-height: clamp(780px, 100vh, 920px);
    min-height: 100svh;
    align-items: flex-start;
    padding: 0;
  }
  .hero-container {
    padding: 34px 24px 40px 24px;
    width: 100%;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-bg-img {
    object-position: 78% 100%;
    transform: none !important;
  }
  .hero-section:hover .hero-bg-img {
    transform: none !important;
  }
  .hero-gradient-overlay {
    background: linear-gradient(
      180deg,
      rgba(9, 44, 82, 0.94) 0%,
      rgba(9, 46, 86, 0.88) 22%,
      rgba(10, 52, 94, 0.65) 42%,
      rgba(11, 56, 100, 0.28) 58%,
      rgba(12, 60, 106, 0.05) 68%,
      transparent 78%
    );
  }
  .hero-headline::after {
    content: '';
    display: block;
    width: 44px;
    height: 2.5px;
    background-color: var(--color-accent-sky);
    margin-top: 14px;
    border-radius: 2px;
  }
}

/* Mobile Phones (Exact match to mobile design) */
@media (max-width: 580px) {
  .site-header {
    height: 70px;
  }
  .header-container {
    padding: 0 16px;
  }
  .logo-img {
    height: 52px;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 9999px;
    background-color: var(--color-nav-dark);
    font-size: 13px;
    font-weight: 600;
  }
  .phone-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
  .phone-number {
    display: inline-block !important;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
  }
  .hero-section {
    min-height: clamp(750px, 100vh, 880px);
    min-height: 100svh;
    align-items: flex-start;
    padding: 0;
  }
  .hero-container {
    padding: 28px 18px 36px 18px;
  }
  .hero-eyebrow {
    margin-bottom: 14px;
  }
  .hero-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.13em;
  }
  .hero-headline {
    font-size: clamp(27px, 6.7vw, 32px);
    line-height: 1.18;
    margin-bottom: 12px;
  }
  .hero-headline::after {
    margin-top: 13px;
    width: 44px;
    height: 2.5px;
  }
  .hero-description {
    font-size: 14.5px;
    line-height: 1.56;
    color: rgba(235, 245, 255, 0.94);
    margin-bottom: 14px;
    max-width: 100%;
  }
  .hero-meta {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
  }
  .hero-cta-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: auto;
    flex-wrap: wrap;
  }
  .btn {
    width: auto;
    padding: 10px 20px;
    font-size: 13.5px;
    border-radius: 9999px;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .btn-primary {
    background-color: var(--color-primary-accent);
  }
  .btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
  }
}

/* Extra small mobile screens (<= 380px) */
@media (max-width: 380px) {
  .header-container {
    padding: 0 12px;
  }
  .logo-img {
    height: 48px;
  }
  .phone-btn {
    padding: 6px 11px;
    font-size: 12px;
    gap: 5px;
  }
  .phone-number {
    font-size: 12px;
  }
  .hero-container {
    padding: 24px 14px 30px 14px;
  }
  .hero-headline {
    font-size: 25px;
  }
  .hero-cta-group {
    gap: 8px;
  }
  .btn {
    padding: 9px 15px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0 110px 0;
  border-bottom: 1px solid #edf2f7;
}

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

/* Services Header */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.services-header-left {
  flex: 1;
  max-width: 600px;
}

.services-eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-accent);
  margin-bottom: 12px;
}

.services-title {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #0b2847;
}

.services-header-right {
  flex: 1;
  max-width: 500px;
}

.services-intro {
  font-size: 15.5px;
  line-height: 1.68;
  color: #556980;
  font-weight: 400;
}

/* Services Showcase (Alternating Slanted Diagonal Cards) */
.services-showcase {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e2edf7;
  box-shadow: 0 14px 44px rgba(10, 42, 77, 0.06);
}

/* Individual Service Row */
.service-row {
  position: relative;
  display: flex;
  min-height: 260px;
  background: linear-gradient(135deg, #f8fbff 0%, #f1f6fc 100%);
  border-bottom: 1px solid #e3eef8;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-row:last-child {
  border-bottom: none;
}

.service-row:hover {
  background: linear-gradient(135deg, #f1f7ff 0%, #e9f2fc 100%);
}

/* Content Column (Text Half) */
.service-content-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 38px 46px 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.service-row-right .service-content-col {
  margin-left: auto;
  padding: 38px 44px 36px 46px;
}

/* Header Meta: Icon + Index/Title */
.service-header-meta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}

/* Circular Icon Badge */
.service-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e2f0fc;
  color: #0b3866;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #cbe3fa;
  transition: all var(--transition-smooth);
}

.service-row:hover .service-icon-circle {
  background-color: var(--color-primary-accent);
  color: #ffffff;
  border-color: var(--color-primary-accent);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 18px rgba(43, 118, 178, 0.35);
}

/* Title & Index Group */
.service-title-group {
  display: flex;
  flex-direction: column;
}

.service-index {
  font-size: 13.5px;
  font-weight: 750;
  color: #2b76b2;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.service-name {
  font-size: 21px;
  font-weight: 750;
  color: #07223e;
  letter-spacing: -0.015em;
  line-height: 1.22;
  margin: 0;
  transition: color var(--transition-fast);
}

.service-row:hover .service-name {
  color: var(--color-primary-accent);
}

.service-subtitle {
  font-size: 13.5px;
  font-weight: 600;
  color: #556c82;
  margin-top: 3px;
  line-height: 1.35;
}

/* Descriptive Paragraph */
.service-desc {
  font-size: 13.5px;
  line-height: 1.62;
  color: #496177;
  margin-bottom: 16px;
  max-width: 480px;
}

/* Action Link */
.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1b68a8;
  text-decoration: none;
  transition: all var(--transition-smooth);
  width: fit-content;
}

.action-arrow {
  transition: transform var(--transition-smooth);
}

.service-row:hover .service-action-link {
  color: #093f70;
}

.service-row:hover .action-arrow {
  transform: translateX(6px);
}

/* Media Column (Image Half with Slanted Cut) */
.service-row-left .service-media-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 53%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 48px 100%);
  z-index: 1;
}

.service-row-right .service-media-col {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 53%;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* Responsive Image with Smooth Scale */
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover .service-img {
  transform: scale(1.05);
}

/* Scroll Animation */
.services-header.in-view,
.service-row.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules for Services Section */
@media (max-width: 1160px) {
  .services-container {
    padding: 0 36px;
  }
  .service-content-col {
    padding: 32px 34px 30px 34px;
  }
  .service-row-right .service-content-col {
    padding: 32px 34px 30px 34px;
  }
  .service-name {
    font-size: 19.5px;
  }
  .service-desc {
    font-size: 13px;
    line-height: 1.56;
  }
}

@media (max-width: 920px) {
  .services-section {
    padding: 75px 0 85px 0;
  }
  .services-container {
    padding: 0 24px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
  .services-title {
    font-size: 32px;
  }
  .services-intro {
    font-size: 15px;
  }
  /* Mobile Stacked Rows */
  .services-showcase {
    border-radius: 16px;
  }
  .service-row {
    flex-direction: column !important;
    min-height: auto;
  }
  .service-row-left .service-media-col,
  .service-row-right .service-media-col {
    position: relative !important;
    width: 100% !important;
    height: 220px;
    clip-path: none !important;
    order: 1;
  }
  .service-row-left .service-content-col,
  .service-row-right .service-content-col {
    flex: 1 1 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 28px 24px 30px 24px !important;
    order: 2;
  }
  .service-desc {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .service-row-left .service-media-col,
  .service-row-right .service-media-col {
    height: 190px;
  }
  .service-row-left .service-content-col,
  .service-row-right .service-content-col {
    padding: 22px 18px 24px 18px !important;
  }
  .service-name {
    font-size: 18.5px;
  }
  .service-desc {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .service-icon-circle {
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0 110px 0;
  border-bottom: 1px solid #edf2f7;
}

.about-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left Image Column */
.about-media-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(11, 40, 71, 0.09);
  border: 1px solid #e2e8f0;
}

.about-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.035);
}

/* Right Content Column */
.about-content-col {
  display: flex;
  flex-direction: column;
}

.about-eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-accent);
  margin-bottom: 12px;
}

.about-title {
  font-size: clamp(28px, 2.9vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0b2847;
  margin-bottom: 24px;
}

.about-paragraph {
  font-size: 15.5px;
  line-height: 1.68;
  color: #556980;
  font-weight: 400;
  margin-bottom: 18px;
}

.about-cta-wrapper {
  margin-top: 14px;
}

/* Dark Navy Button */
.btn-navy {
  background-color: var(--color-nav-dark);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(9, 40, 70, 0.22);
}

.btn-navy:hover {
  background-color: #0d3862;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(9, 40, 70, 0.32);
}

.btn-navy:hover .btn-arrow {
  transform: translateX(4px);
}

/* Scroll Animation States */
.about-media-col.in-view,
.about-content-col.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules for About Section */
@media (max-width: 1120px) {
  .about-container {
    padding: 0 32px;
    gap: 44px;
  }
}

@media (max-width: 960px) {
  .about-section {
    padding: 75px 0 85px 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .about-title {
    font-size: 32px;
  }
  .about-paragraph {
    font-size: 15px;
  }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
  position: relative;
  background-color: var(--color-dark-navy);
  padding: 95px 0 105px 0;
  overflow: hidden;
}

/* Architectural Background & Navy Overlay */
.why-us-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.why-us-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 45%;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.why-us-section:hover .why-us-bg-img {
  transform: scale(1.04);
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 23, 40, 0.98) 0%,
    rgba(7, 28, 48, 0.95) 35%,
    rgba(8, 32, 54, 0.88) 55%,
    rgba(9, 36, 62, 0.72) 75%,
    rgba(9, 36, 62, 0.48) 100%
  );
  pointer-events: none;
}

/* Why Choose Us Container */
.why-us-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 54px;
}

/* Header */
.why-us-header {
  margin-bottom: 56px;
}

.why-us-eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-sky);
  margin-bottom: 12px;
}

.why-us-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

/* 5 Feature Columns Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

/* Individual Feature Item */
.why-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  position: relative;
  transition: transform var(--transition-smooth);
}

.why-us-item:hover {
  transform: translateY(-4px);
}

/* Vertical Divider Lines */
.why-us-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

/* Icon */
.why-us-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 20px;
  color: var(--color-white);
  transition: transform var(--transition-bounce), color var(--transition-fast);
}

.why-us-item:hover .why-us-icon {
  transform: scale(1.12);
  color: var(--color-accent-sky);
}

/* Title */
.why-us-item-title {
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.38;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

/* Scroll Animation States */
.why-us-header.in-view,
.why-us-item.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules for Why Choose Us Section */
@media (max-width: 1120px) {
  .why-us-container {
    padding: 0 32px;
  }
  .why-us-item {
    padding: 8px 12px;
  }
  .why-us-item-title {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .why-us-section {
    padding: 70px 0 80px 0;
  }
  .why-us-container {
    padding: 0 24px;
  }
  .why-us-header {
    margin-bottom: 40px;
  }
  .why-us-overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 23, 40, 0.96) 0%,
      rgba(7, 28, 48, 0.94) 50%,
      rgba(8, 32, 54, 0.85) 80%,
      rgba(9, 36, 62, 0.6) 100%
    );
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }
  .why-us-item:not(:first-child)::before {
    display: none;
  }
  .why-us-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(4px);
  }
}

@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-us-item {
    flex-direction: row;
    gap: 20px;
    text-align: left;
    align-items: center;
    padding: 18px 20px;
  }
  .why-us-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .why-us-item-title br {
    display: none;
  }
}

/* ==========================================================================
   Our Process Section
   ========================================================================== */
.process-section {
  position: relative;
  background-color: #ffffff;
  padding: 95px 0 105px 0;
  border-bottom: 1px solid #edf2f7;
}

.process-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Intro Header */
.process-intro {
  max-width: 420px;
  flex-shrink: 0;
}

.process-eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-accent);
  margin-bottom: 12px;
}

.process-title {
  font-size: clamp(28px, 2.9vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0b2847;
  margin-bottom: 16px;
}

.process-desc {
  font-size: 15.5px;
  line-height: 1.68;
  color: #556980;
  font-weight: 400;
}

/* Right Horizontal Steps Flow */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  max-width: 780px;
}

/* Individual Process Step */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  cursor: pointer;
  transition: transform var(--transition-smooth);
}

.process-step:hover {
  transform: translateY(-4px);
}

/* Number Circle Badge */
.process-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #0b2847;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(11, 40, 71, 0.18);
}

.process-step:hover .process-badge {
  background-color: var(--color-primary-accent);
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(43, 118, 178, 0.4);
}

/* Step Title */
.process-step-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #0b2847;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.process-step:hover .process-step-title {
  color: var(--color-primary-accent);
}

/* Process Flow Arrow */
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fa8c2;
  flex-shrink: 0;
  height: 58px; /* Vertically aligns with the 58px circle badge */
  transition: transform var(--transition-smooth), color var(--transition-fast);
}

.process-step:hover + .process-arrow {
  transform: translateX(4px);
  color: var(--color-primary-accent);
}

/* Scroll Animation States */
.process-intro.in-view,
.process-step.in-view,
.process-arrow.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules for Process Section */
@media (max-width: 1100px) {
  .process-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding: 0 32px;
  }
  .process-intro {
    max-width: 100%;
  }
  .process-flow {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .process-section {
    padding: 70px 0 80px 0;
  }
  .process-container {
    padding: 0 24px;
  }
  .process-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
  .process-arrow {
    display: none;
  }
  .process-step {
    padding: 20px 16px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    min-width: auto;
  }
}

/* ==========================================================================
   Our Experience Section
   ========================================================================== */
.experience-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0 110px 0;
  border-bottom: 1px solid #edf2f7;
}

.experience-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 54px;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left Melbourne Skyline Experience Banner */
.experience-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 56px 48px;
  box-shadow: 0 14px 40px rgba(11, 40, 71, 0.12);
}

.experience-media-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.experience-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.experience-banner:hover .experience-bg-img {
  transform: scale(1.05);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 42, 0.96) 0%,
    rgba(7, 28, 48, 0.92) 42%,
    rgba(8, 32, 54, 0.72) 75%,
    rgba(8, 32, 54, 0.45) 100%
  );
  pointer-events: none;
}

.experience-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  width: 100%;
}

.experience-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-sky);
  margin-bottom: 12px;
}

.experience-title {
  font-size: clamp(26px, 2.7vw, 35px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--color-white);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.experience-divider-bar {
  width: 44px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 26px;
  border-radius: 2px;
}

/* 5 Client Badges Grid */
.experience-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  transition: transform var(--transition-smooth);
  cursor: default;
}

.exp-badge:hover {
  transform: translateY(-2px);
}

.exp-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.08);
}

.exp-badge:hover .exp-badge-icon {
  border-color: var(--color-accent-sky);
  color: var(--color-accent-sky);
  background: rgba(114, 181, 234, 0.18);
  transform: scale(1.06);
}

.exp-badge-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

/* Right Stats Card */
.experience-stats-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding-left: 20px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 28px;
  transition: transform var(--transition-smooth);
}

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

.stat-number {
  font-size: clamp(42px, 3.8vw, 54px);
  font-weight: 800;
  color: #0b2847;
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 140px;
  transition: color var(--transition-fast);
}

.stat-row:hover .stat-number {
  color: var(--color-primary-accent);
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #0b2847;
  letter-spacing: -0.01em;
}

.stat-desc {
  font-size: 14.5px;
  color: #64748b;
  font-weight: 400;
}

.stat-divider {
  height: 1px;
  width: 100%;
  background-color: #e2e8f0;
}

/* Scroll Animation States */
.experience-banner.in-view,
.experience-stats-card.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules for Experience Section */
@media (max-width: 1120px) {
  .experience-container {
    padding: 0 32px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .experience-stats-card {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .experience-section {
    padding: 70px 0 80px 0;
  }
  .experience-container {
    padding: 0 24px;
  }
  .experience-banner {
    padding: 38px 24px;
    min-height: auto;
  }
  .experience-badges-grid {
    gap: 14px;
  }
  .stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .stat-number {
    min-width: auto;
  }
}

/* ==========================================================================
   Watch Our Video Section
   ========================================================================== */
.video-section {
  position: relative;
  background: linear-gradient(135deg, #071f36 0%, #082845 50%, #061c30 100%);
  padding: 100px 0 110px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 54px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content Column */
.video-content-col {
  max-width: 500px;
}

.video-eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-sky);
  margin-bottom: 12px;
}

.video-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.video-description {
  font-size: 15.5px;
  line-height: 1.68;
  color: #c4d7ec;
  font-weight: 400;
  margin-bottom: 32px;
}

.video-cta-wrap {
  display: flex;
  align-items: center;
}

/* Video Play Outline Button */
.btn-video-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-video-play:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-play-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-nav-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  transition: transform var(--transition-bounce);
}

.btn-video-play:hover .btn-play-circle {
  transform: scale(1.1);
}

/* Right Video Player Mockup Card */
.video-preview-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #000000;
}

.video-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.video-preview-card:hover .video-thumb-img {
  transform: scale(1.035);
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.18) 50%,
    rgba(5, 18, 30, 0.85) 100%
  );
  pointer-events: none;
}

/* Center Glass Play Button */
.video-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(9, 36, 62, 0.65);
  border: 2.5px solid #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding-left: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  pointer-events: none;
}

.video-preview-card:hover .video-center-play {
  background: rgba(37, 117, 181, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 35px rgba(37, 117, 181, 0.75);
}

/* Controls Bar at bottom of card */
.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 18px 12px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 16, 28, 0.95) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-progress-line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.video-progress-filled {
  width: 0%;
  height: 100%;
  background: var(--color-accent-sky);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.video-preview-card:hover .video-progress-filled {
  width: 40%;
}

.video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.video-controls-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ctrl-btn-play {
  display: flex;
  align-items: center;
  color: #ffffff;
}

.video-timestamp {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #e2e8f0;
}

.video-controls-right {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.9;
}

.ctrl-icon {
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.video-preview-card:hover .ctrl-icon:hover {
  color: var(--color-accent-sky);
}

/* Scroll Animation States */
.video-content-col.in-view,
.video-player-col.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ==========================================================================
   Video Lightbox Modal
   ========================================================================== */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 15, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.video-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-dialog {
  width: 100%;
  max-width: 960px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform var(--transition-smooth);
  background: #000000;
}

.video-modal-backdrop.active .video-modal-dialog {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 34px;
  color: #ffffff;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 10;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.video-modal-close:hover {
  background: rgba(239, 68, 68, 0.85);
  transform: scale(1.08);
}

.video-modal-player-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-modal-player-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Rules for Video Section */
@media (max-width: 1100px) {
  .video-container {
    padding: 0 32px;
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .video-content-col {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .video-section {
    padding: 70px 0 80px 0;
  }
  .video-container {
    padding: 0 24px;
  }
  .video-center-play {
    width: 60px;
    height: 60px;
  }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  position: relative;
  background-color: #f8fafc;
  padding: 100px 0 110px 0;
  border-bottom: 1px solid #edf2f7;
}

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

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

.testimonials-eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-accent);
  margin-bottom: 10px;
}

.testimonials-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0b2847;
}

/* Navigation Arrow Buttons */
.testimonials-nav-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d4e2f0;
  background-color: #ffffff;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.t-nav-btn:hover {
  background-color: #0b2847;
  color: #ffffff;
  border-color: #0b2847;
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(11, 40, 71, 0.2);
}

/* Testimonials Cards Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual Testimonial Card */
.testimonial-card {
  background-color: #ffffff;
  border: 1.5px solid #e9eff6;
  border-radius: 20px;
  padding: 38px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(11, 40, 71, 0.03);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 40, 71, 0.08);
  border-color: #cbdbee;
}

/* Quote Icon Badge */
.quote-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #eef6fd;
  color: var(--color-primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-bounce);
}

.testimonial-card:hover .quote-icon-badge {
  transform: scale(1.08);
  background-color: #e0edfb;
}

/* Quote Text */
.testimonial-quote {
  font-size: 15.5px;
  line-height: 1.68;
  color: #334155;
  font-weight: 400;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Author Row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8f0f8;
  flex-shrink: 0;
}

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

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #0b2847;
  letter-spacing: -0.01em;
}

.author-role {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

/* Scroll Animation States */
.testimonials-header.in-view,
.testimonial-card.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules for Testimonials Section */
@media (max-width: 1040px) {
  .testimonials-container {
    padding: 0 32px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .testimonials-section {
    padding: 70px 0 80px 0;
  }
  .testimonials-container {
    padding: 0 24px;
  }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonial-card {
    padding: 30px 24px 26px 24px;
  }
}

/* ==========================================================================
   Contact CTA Section
   ========================================================================== */
.contact-cta-section {
  position: relative;
  background-color: var(--color-dark-navy);
  padding: 75px 0 80px 0;
  overflow: hidden;
}

.contact-cta-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.contact-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 45%;
  filter: brightness(0.7);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.contact-cta-section:hover .contact-cta-bg-img {
  transform: scale(1.04);
}

.contact-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 42, 0.98) 0%,
    rgba(7, 28, 48, 0.95) 45%,
    rgba(8, 32, 54, 0.88) 75%,
    rgba(9, 36, 62, 0.72) 100%
  );
  pointer-events: none;
}

.contact-cta-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Left: Info Text */
.contact-cta-left {
  max-width: 460px;
}

.contact-cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-sky);
  margin-bottom: 10px;
}

.contact-cta-title {
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.contact-cta-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #c4d7ec;
  font-weight: 400;
}

/* Middle: Phone & Email Contacts */
.contact-cta-mid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-link-item:hover {
  color: var(--color-accent-sky);
  transform: translateX(3px);
}

.contact-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.contact-link-item:hover .contact-link-icon {
  border-color: var(--color-accent-sky);
  background: rgba(114, 181, 234, 0.2);
  color: var(--color-accent-sky);
}

/* Right: CTA Send Button */
.contact-cta-right {
  flex-shrink: 0;
}

.btn-cta-send {
  padding: 13px 32px;
  font-size: 15.5px;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: #06192a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 0 32px 0;
  color: var(--color-white);
}

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

/* Main Row */
.footer-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* White Logo in Footer */
.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover {
  opacity: 0.88;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: invert(1) grayscale(1) contrast(300%) brightness(1.5);
  mix-blend-mode: screen;
}

/* Footer Navigation */
.footer-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: #cbd7e6;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.footer-nav-link:hover {
  color: var(--color-accent-sky);
}

/* Socials */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.social-icon-btn:hover {
  background-color: var(--color-primary-accent);
  transform: scale(1.1);
  border-color: var(--color-primary-accent);
}

/* Bottom Copyright Row */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  color: #8fa4bc;
  font-size: 13.5px;
}

.footer-copyright {
  color: #8fa4bc;
}

.footer-slogan {
  color: #8fa4bc;
  font-weight: 500;
}

/* Scroll Animation States */
.contact-cta-left.in-view,
.contact-cta-mid.in-view,
.contact-cta-right.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules for Contact & Footer */
@media (max-width: 1100px) {
  .contact-cta-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 32px;
  }
  .contact-cta-left {
    max-width: 100%;
  }
  .footer-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-container {
    padding: 0 32px;
  }
}

@media (max-width: 640px) {
  .contact-cta-section {
    padding: 60px 0 65px 0;
  }
  .contact-cta-container {
    padding: 0 24px;
  }
  .footer-container {
    padding: 0 24px;
  }
  .footer-nav-list {
    gap: 16px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}








