/***************************
 * GLOBAL & RESET
 ***************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter Display', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
/* ========================================
   Font Face Declarations
   ======================================== */
@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4 {
  font-family: 'Inter Display', system-ui;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 0.5em;
}
h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: clamp(2rem, 5vw, 3rem);
}
h4 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
p {
  font-size: 1.125rem;
  line-height: 1.15;
  margin-bottom: 1.5em;
  font-weight: 500;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
a:hover {
  text-decoration: none;
}
/* Hero H1 Animation */
.hero h1 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
  font-weight: 700;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Reusable colored text spans */
.text-highlight {
  color: #00c6ff;
  font-weight: 500;
}
.text-gray {
  color: #d3d3d3;
}
.text-armada {
  color: #00c6ff;
}
.text-green {
  color: #00cc99;
}
.text-gold {
  color: #ffd700;
}

/* ========================================
   Pulse Animation
   ======================================== */
@keyframes pulse-gentle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}
.pulse-resume {
    animation: pulse-gentle 2s ease-in-out infinite;
    display: inline-block;
}

/***************************
 * NAVBAR – Full Updated Version
 * + → × toggle • full-screen mobile menu • subtle thin dividers • clean desktop/mobile split
 ***************************/
:root {
  --nav-height-desktop: 4.5rem;
  --nav-height-mobile: 4.2rem;
  --logo-height-desktop: 24px;
  --logo-height-mobile: 18px;
  --primary: #00c6ff;
  --text-light: #ffffff;
  --text-dark: #f0f0f0;
  --divider-light: rgba(255, 255, 255, 0.08); /* very subtle divider */
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  color: var(--text-light);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 25, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height-desktop);
}

.logo img {
  height: var(--logo-height-desktop);
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
 
.logo {
  position: relative;         /* ← important: creates positioning context */
}

.logo::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px;               /* distance from bottom of logo – adjust as needed */
  transform: translateX(-50%);
  width: 80%;                  /* width of glow relative to logo – 50–80% usually looks best */
  height: 16px;                /* controls vertical spread of glow */
  background: transparent;
  border-radius: 30%;
  box-shadow: 
    0 8px 25px -4px var(--text-light),   /* main glow */
    0 12px 40px -8px var(--primary);  /* softer outer glow */
  opacity: 0.55;               /* keep it faint – 0.25 to 0.45 range usually nicest */
  pointer-events: none;
  z-index: -1;
}

/* Optional: make glow stronger/more visible when navbar is scrolled */
.navbar.scrolled .logo::after {
  opacity: 0.60;
} 

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

.nav-links a {
  position: relative;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Toggle: Pure CSS + → × morph */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-toggle::before {
  transform: translate(-50%, -50%) rotate(90deg); /* vertical for + */
}

.nav-toggle span {
  /* horizontal for + */
}

.nav-toggle:hover::before,
.nav-toggle:hover::after,
.nav-toggle:hover span {
  background: var(--primary);
}

/* ──────────────────────────────────────────────
   MOBILE STYLES (≤ 992px)
──────────────────────────────────────────────── */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }

  .nav-container {
    height: var(--nav-height-mobile);
  }

  .logo img {
    height: var(--logo-height-mobile);
  }

  /* Full-screen mobile menu */
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: rgba(15, 15, 25, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    position: relative;
  }

  .nav-links a {
    display: block;
    padding: 1.5rem 2rem;           /* ← Reduced from 2rem → tighter vertical spacing */
    font-size: 1.55rem;             /* ← Reduced from 1.8rem → smaller but still very readable/tappable */
    font-weight: 300;
    color: var(--text-light);
    transition: color 0.35s ease, padding 0.35s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  /* Subtle thin full-width-ish dividers */
  .nav-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--divider-light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
  }

  .nav-links li:hover::after,
  .nav-links.active li::after {
    transform: scaleX(1);
  }
}

/* ──────────────────────────────────────────────
   DESKTOP OVERRIDE (≥ 993px) – Prevent mobile styles from leaking
──────────────────────────────────────────────── */
@media (min-width: 993px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 2.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .nav-links li::after {
    display: none !important; /* no dividers on desktop */
  }

  .nav-links a {
    font-size: 0.875rem !important;
    padding: 0 !important;
  }
}

/* Overlay – dim background when menu is open */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Toggle morph when menu is active */
.nav-links.active ~ .nav-toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
  background: var(--primary);
}

.nav-links.active ~ .nav-toggle::after,
.nav-links.active ~ .nav-toggle span {
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--primary);
}

.nav-links.active ~ .nav-toggle span {
  opacity: 0;
}

/***************************
 * HERO
 ***************************/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #f8f9fa url('../images/hero-armada2.jpg') center/cover no-repeat fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.hero p {
  font-size: clamp(1.375rem, 3.2vw, 1.75rem);
  max-width: 720px;
  margin: 0 auto 3rem;
  opacity: 0.92;
  color: #ffffff;
  font-weight: 400;
}

/***************************
 * PILL CTA BUTTON – Improved Slide Effect
 ***************************/
.pill-cta-slide {
  --color-main: #00c6ff;
  --color-text: #ffffff;
  --color-text-hover: #000000;
  --border-color: #ffffff;
  --shadow-color: rgba(0, 198, 255, 0.4);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-family: 'Inter Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.75rem 3rem;
  min-height: 56px;
  min-width: 280px;
  border: 3px solid var(--border-color);
  border-radius: 12px;
  background: rgba(102, 102, 102, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.45s ease, color 0.55s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}
.pill-cta-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-main);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.pill-cta-slide:hover,
.pill-cta-slide:focus-visible {
  color: var(--color-text-hover);
  box-shadow: 0 8px 24px var(--shadow-color);
  outline: none;
}
.pill-cta-slide:hover::before,
.pill-cta-slide:focus-visible::before {
  transform: translateX(0);
}
.pill-cta-slide:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}
@media (max-width: 768px) {
  .pill-cta-slide {
    padding: 0.75rem 2.5rem;
    min-width: 240px;
    font-size: 1rem;
  }
}

/***************************
 * SAIL BUTTON – Original Width + Perfect Centering + Click Animation
 ***************************/
.sail-button {
  --color-main: #00c6ff;
  --color-text-soft: #e0e0e0;
  --color-text-bright: #ffffff;
  --glow-color: rgba(0, 198, 255, 0.55);
  --glow-soft:  rgba(0, 198, 255, 0.25);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Display', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.75rem 3rem;
  min-height: 56px;
  min-width: 280px;

  border: none;
  border-radius: 12px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  overflow: hidden;
  cursor: pointer;
  transition: transform 0.1s ease;
  box-shadow: none;
  isolation: isolate;
}

/* Text container */
.sail-button .text-container {
  position: relative;
  display: inline-block;
}

/* Default text */
.sail-button .text-explore {
  color: var(--color-text-soft);
  opacity: 1;
  transition: opacity 0.55s ease;
}

/* Hover text */
.sail-button .text-begin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-text-bright);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  white-space: nowrap;
}

/* Text swap */
.sail-button:hover .text-explore,
.sail-button:focus-visible .text-explore {
  opacity: 0;
}

.sail-button:hover .text-begin,
.sail-button:focus-visible .text-begin {
  opacity: 1;
}

/* No button-level effects */
.sail-button:hover,
.sail-button:focus-visible { }

/* Sail icon – full desktop behavior */
.sail-button::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%) translateX(-80%);
  width: 32px;
  height: 32px;
  background-image: url('../images/icon-sail.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  
  opacity: 0;
  
  box-shadow:
    0 12px 10px -6px var(--glow-color),
    0 22px 28px -11px var(--glow-soft);
  
  transition:
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s ease,
    box-shadow 0.8s ease;
  
  will-change: transform, opacity, box-shadow;
  z-index: 1;
}

.sail-button:hover::before,
.sail-button:focus-visible::before {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

/* Click feedback */
.sail-button:active {
  transform: scale(0.98);
}

/* ─────────────────────────────────────────────── */
/* Mobile: hide sail icon completely */
@media (max-width: 768px) {
  .sail-button {
    padding: 0.75rem 2.5rem;
    min-width: 240px;
    font-size: 1rem;
  }
  
  /* Hide the icon entirely on mobile */
  .sail-button::before {
    display: none !important;
  }
}

/***************************
 * BANNER
 ***************************/
.banner {
  background: #ffffff;
  padding: clamp(5rem, 12vw, 9rem) 0;
  border-bottom: 1px solid #eeeeee;
}
.banner-grid {
  display: grid;
  grid-template-columns: 740px 1fr;
  gap: clamp(4rem, 8vw, 10rem);
  align-items: start;
}
.banner-left h2 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #111111;
}
.banner-left p {
  font-size: clamp(1.3rem, 3.3vw, 2.3rem);
  font-weight: 500;
  max-width: 800px;
  opacity: 0.88;
  line-height: 1.05;
  color: #555555;
}
.banner-right p {
  font-size: 0.85rem;
  font-weight: 500;
  max-width: 400px;
  margin-left: auto;
  opacity: 0.88;
  line-height: 1.4;
  color: #555555;
}
/***************************
 * SECTION HEADERS (shared styles)
 ***************************/
.section-header,
.gallery-menu,
.services,
.services2 {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: #ffffff;
  border-bottom: 1px solid #d3d3d3;
}
.header-grid,
.gallery-header-grid,
.services-header-grid,
.services2-header-grid {
  display: grid;
  grid-template-columns: 1fr 740px;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}
.header-left h2,
.gallery-header-left,
.services-header-left,
.services2-header-left {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
  padding-top: 0.35em;
  margin-bottom: 3rem;
}
.header-right h2,
.gallery-header-right h2,
.services-header-right h2,
.services2-header-right h2 {
  font-size: clamp(1.3rem, 3.3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  opacity: 0.88;
  color: #111111;
}
.header-left p {
  font-size: 0.85rem;
  font-weight: 500;
  max-width: 400px;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 1.5rem;
  opacity: 0.88;
  line-height: 1.4;
  color: #555555;
}
/***************************
 * REVEAL ANIMATIONS – CLEAN & COMPREHENSIVE
 ***************************/
/* Base hidden state */
h2,
h3,
p,
.gallery-item,
.gallery-caption,
.full-screen-image-item,
.full-screen-image-header h2,
.quote-pod,
.service-card,
.service-card h3,
.header-left p,
.banner p,
.banner-left h2,
.banner-right p,
.two-column-list li,
.service-card li,
.standard-paragraph {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
/* Visible state */
h2.is-visible,
h3.is-visible,
p.is-visible,
.gallery-item.is-visible,
.gallery-caption.is-visible,
.full-screen-image-item.is-visible,
.full-screen-image-header h2.is-visible,
.quote-pod.is-visible,
.service-card.is-visible,
.service-card h3.is-visible,
.header-left p.is-visible,
.banner p.is-visible,
.banner-left h2.is-visible,
.banner-right p.is-visible,
.two-column-list li.is-visible,
.service-card li.is-visible,
.standard-paragraph.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered timing for natural flow */
.header-left p { transition-delay: 0.15s; }
.banner-left p { transition-delay: 0.15s; }
.banner-right p { transition-delay: 0.35s; }
.gallery-caption { transition-delay: 0.25s; }
.service-card h3 { transition-delay: 0.15s; }
.service-card p { transition-delay: 0.25s; }
.service-card li { transition-delay: 0.1s; }
.two-column-list li:nth-child(1) { transition-delay: 0.15s; }
.two-column-list li:nth-child(2) { transition-delay: 0.25s; }
.two-column-list li:nth-child(3) { transition-delay: 0.35s; }
.two-column-list li:nth-child(4) { transition-delay: 0.45s; }
.two-column-list li:nth-child(5) { transition-delay: 0.55s; }
/***************************
 * GALLERY MENU
 ***************************/
.gallery-menu {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(5rem, 12vw, 9rem);
}
.gallery-header {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.gallery-header-left {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
  padding-top: 0.35em;
}
.gallery-grid {
  padding-top: clamp(1rem, 2vw, 1rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  overflow: hidden;
}
.gallery-item:hover {
  transform: translateY(-8px);
  transition: transform 0.3s ease;
}
.gallery-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 0.5rem;
  border: 1px solid #dddddd;
}
.gallery-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.45;
  opacity: 0.85;
  font-weight: 400;
}
.caption-left { text-align: left; }
.caption-right { text-align: right; }
@media (max-width: 640px) {
  .gallery-caption {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .caption-right { text-align: left; }
}
/***************************
 * FULL SCREEN IMAGE STACK
 ***************************/
.full-screen-image {
  padding-top: 1.5rem;
  background: #ffffff;
}
.full-screen-image-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.5rem);
}
.full-screen-image-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 0.75rem;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, box-shadow 0.35s ease, filter 0.35s ease;
}
.full-screen-image-item:hover {
  box-shadow:
    inset 0 0 0 4px #00c6ff,
    inset 0 0 0 8px rgba(0, 198, 255, 0.3),
    0 0 0 4px rgba(0, 198, 255, 0.15);
  transform: scale(1.015);
  filter: brightness(1.05);
}
.full-screen-image-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.full-screen-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.10) 100%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.4;
  opacity: 0.95;
  pointer-events: none;
  font-weight: 400;
}
.full-screen-image-item .caption-left {
  font-weight: 600;
}
.full-screen-image-item .caption-right {
  font-weight: 500;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .full-screen-image-item .full-screen-image-caption {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .full-screen-image-item .caption-right {
    text-align: left;
  }
}
/***************************
 * TWO-COLUMN LIST (Services)
 ***************************/
.two-column-list {
  margin-top: 3rem;
  width: 100%;
}
.two-column-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.4rem, 3.5vw, 1.8rem) 0;
  border-bottom: 1px solid #eeeeee;
}
.two-column-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.two-column-list__left {
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.3;
  color: #000000;
}
.two-column-list__right {
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  line-height: 1.5;
  opacity: 0.9;
  color: #444444;
  font-weight: 400;
}
.two-column-list__right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: right;
}
.two-column-list__left--with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.two-column-list__icon {
  width: 0.8em;
  height: 0.8em;
  flex-shrink: 0;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .two-column-list__item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .two-column-list__right ul {
    text-align: right;
  }
}
/***************************
 * CAPABILITIES (service cards)
 ***************************/
.services2-content {
  padding-top: clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fafafa;
}
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 400;
}
.service-card li::before {
  content: "•";
  margin-right: 0.6rem;
  color: #000;
}
/***************************
 * QUOTE POD
 ***************************/
.quote-pod {
  background: #111111;
  color: #ffffff;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: 1rem;
  margin-top: 3rem;
}
.quote-pod__text {
  font-size: clamp(1.0rem, 2.0vw, 1.1rem);
  line-height: 1.3;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.quote-pod__author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.quote-pod__avatar {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 2px solid #00c6ff;
  flex-shrink: 0;
}
.quote-pod__name {
  font-size: 1.0rem;
  font-weight: 700;
}
.quote-pod__title {
  font-size: 0.95rem;
  opacity: 0.75;
  color: #cccccc;
  font-weight: 400;
}
.quote-pod--align-right {
  margin-left: auto;
  margin-right: 0;
  max-width: none;
}

/***************************
 * CONTACT FORM – FULL WIDTH (Desktop & Mobile)
 ***************************/
.contact-form {
  width: 100%;
  max-width: none;                  /* Removes width cap for full stretch */
  margin: 0 auto;                   /* Centers the form horizontally */
  padding: clamp(2.5rem, 6vw, 5rem); /* More breathing room on larger screens */
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-form-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.03em;
  margin: 0;
  text-align: center;               /* Centered for better balance in full-width */
}

.contact-form-subtitle {
  font-size: 1.15rem;
  color: #555555;
  font-weight: 500;
  opacity: 0.92;
  margin: 0;
  line-height: 1.4;
  text-align: center;               /* Centered subtitle */
}

.contact-form-inner .form-group {
  margin-bottom: 1.25rem;
}

.contact-form-inner input,
.contact-form-inner textarea {
  width: 100%;
  padding: 1.1rem 1.4rem;
  font-family: 'Inter Display', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111111;
  background: #fafafa;
  border: 1px solid #dddddd;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;           /* Ensures padding doesn't overflow */
}

.contact-form-inner input::placeholder,
.contact-form-inner textarea::placeholder {
  color: #888888;
  font-weight: 500;
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
  outline: none;
  border-color: #00c6ff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.15);
}

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

.contact-form-submit {
  width: 100%;
  padding: 1.1rem;
  font-family: 'Inter Display', system-ui;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000000;
  background: #00c6ff;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 198, 255, 0.25);
}

.contact-form-submit:hover {
  background: #00d6ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.35);
}

.contact-form-submit:active {
  transform: translateY(0);
}

/* Mobile adjustments – tighter padding for smaller screens */
@media (max-width: 640px) {
  .contact-form {
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 1rem;             /* Slightly smaller corners on mobile */
    margin: 2rem auto;               /* Optional: add vertical spacing if needed */
  }

  .contact-form-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
}

/* Optional: Extra polish on very large screens */
@media (min-width: 1400px) {
  .contact-form {
    padding: 5rem 8rem;              /* Luxurious padding on ultra-wide screens */
  }
}

/***************************
 * FOOTER
 ***************************/
.footer {
  background: #000000;
  color: #ffffff;
  min-height: 30vh;
  display: flex;
  align-items: flex-start;
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(3rem, 6vw, 5rem);
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-column h4 {
  font-size: 1.0rem;
  color: #d2d2d2;
  font-weight: 600;
  opacity: 0.875;
  margin-bottom: 0.5rem;
}
.footer-column p,
.footer-column a {
  font-size: 0.90rem;
  color: #e8e8e8;
  opacity: 0.75;
  line-height: 1.5;
  font-weight: 400;
}
.footer-column a:hover {
  opacity: 1;
  color: #ffffff;
}
.footer-copyright {
  margin-top: clamp(3rem, 8vw, 5rem);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

/***************************
 * BACK TO TOP BUTTON
 ***************************/

#back-to-top {
  --radius: 2.5rem;           /* base circle size – mobile-first */
  --padding: 1rem;            /* space from screen edges */

  position: fixed;
  bottom: var(--padding);
  right: calc(var(--padding) + 0.5rem);  /* slightly more right padding for balance */
  z-index: 999;

  width: calc(var(--radius) * 2);
  height: calc(var(--radius) * 2);
  border-radius: 25%;

  background-color: #00c6ff;
  color: white;

  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;

  box-shadow: 0 4px 12px rgba(0, 198, 255, 0.3); /* subtle brand glow */
	
    /* FIX: Remove transparent square / tap highlight on mobile touch */
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:active {
  transform: scale(0.92) translateY(2px);
  box-shadow: 0 2px 8px rgba(0, 198, 255, 0.3);
}

/* Chevron styling – base (mobile/small screens) */
#back-to-top svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: white;
  stroke-width: 3;
  transition: transform 0.2s ease;
}

/* Desktop / larger screens – bigger chevron + slightly larger button */
@media (min-width: 768px) {
  #back-to-top {
    --radius: 2.4rem;
    --padding: 1.5rem;
  }

  #back-to-top svg {
    width: 3rem;
    height: 3rem;
    stroke-width: 2.4;        /* slightly bolder when larger */
  }
}

/* Extra wide screens – even more premium feel */
@media (min-width: 1200px) {
  #back-to-top {
    --radius: 2.4rem;
  }

  #back-to-top svg {
    width: 3rem;
    height: 3rem;
    stroke-width: 2.4;
  }
}

/* Hover & focus states */
#back-to-top:hover {
  background-color: #00b0e0;     /* darker hover for feedback */
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 198, 255, 0.45);
}

#back-to-top:focus-visible {
  outline: 3px solid #00c6ff;
  outline-offset: 4px;
}

/* Very small screens – keep it compact */
@media (max-width: 480px) {
  #back-to-top {
    --radius: 1.9rem;
    --padding: 0.8rem;
  }

  #back-to-top svg {
    width: 2.0rem;
    height: 2.0rem;
  }
}

/***************************
 * RESPONSIVE ADJUSTMENTS
 ***************************/
@media (max-width: 1024px) {
  .banner-grid,
  .header-grid,
  .gallery-header-grid,
  .services-header-grid,
  .services2-header-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .header-right h2,
  .gallery-header-right h2,
  .services-header-right h2,
  .services2-header-right h2 {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .quote-pod,
  .service-card,
  .service-item {
    transform: translateY(25px);
    transition-duration: 0.8s;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 4rem 0;
    min-height: auto;
  }
}