:root {
  --font-montserrat: 'Montserrat', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --navy: #0D1B2A;
  --charcoal: #415A77;
  --teal: #1DCED8;
  /* More vibrant, high-contrast cyan-teal */
  --teal-muted: #0B5D6B;
  /* Original industrial teal for subtler elements */
  --teal-dark: #073E48;
  --white: #FFFFFF;
  /* Pure white for maximum text contrast */
  --light-bg: #F5F5F5;
  --glass: rgba(13, 27, 42, 0.85);
  --glass-border: rgba(29, 206, 216, 0.2);
  /* Teal-tinted borders for glass */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-montserrat), sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 900;
  /* Black weight for maximum impact */
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

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

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Blueprint Grid Background */
.blueprint-bg {
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(65, 90, 119, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 90, 119, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Glassmorphism */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(11, 93, 107, 0.2);
  transform: translateY(-5px);
}

.legal-container {
  max-width: 920px;
}

.legal-content {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(13, 27, 42, 0.88);
}

.legal-content:hover {
  transform: none;
}

.legal-content p {
  max-width: 76ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.legal-content .legal-effective-date {
  display: inline-block;
  max-width: none;
  margin: 0 0 1.5rem;
  padding: 0.55rem 0.85rem;
  border-left: 2px solid var(--teal);
  background: rgba(11, 93, 107, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.5;
}

.legal-content h2 {
  margin: 2rem 0 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(65, 90, 119, 0.35);
  color: var(--white);
  font-family: var(--font-montserrat), sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.legal-content h2:first-of-type {
  margin-top: 1rem;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-content a:hover {
  color: var(--white);
}

/* Buttons */
.btn-primary {
  background-color: var(--teal);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--teal-muted);
  box-shadow: 0 0 25px rgba(29, 206, 216, 0.4);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--teal);
  color: var(--navy);
  font-weight: 900;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Responsive Grid Utility */
.responsive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.responsive-grid.contact-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

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

@media (max-width: 900px) {
  .responsive-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .responsive-grid.contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-details-card {
  background: rgba(13, 27, 42, 0.9);
  border: 1px solid rgba(29, 206, 216, 0.18);
  padding: 2rem;
}

.contact-details-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--teal);
}

.contact-details-header p {
  color: rgba(224, 225, 221, 0.75);
  margin-bottom: 2rem;
  max-width: 700px;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(29, 206, 216, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 1rem;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-row-summary {
  min-width: 0;
}

.contact-row-label {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.contact-row-link,
.contact-row-value {
  display: block;
  color: rgba(224, 225, 221, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
  word-break: break-word;
}

.contact-row-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.copy-btn,
.qr-toggle-btn {
  background: rgba(29, 206, 216, 0.12);
  color: var(--white);
  border: 1px solid rgba(29, 206, 216, 0.25);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.copy-btn:hover,
.qr-toggle-btn:hover {
  background: rgba(29, 206, 216, 0.2);
}

.contact-qr-panel {
  display: none;
  margin-top: 1rem;
  border: 1px solid rgba(29, 206, 216, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.contact-qr-panel img {
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.contact-row-actions .copy-btn {
  min-width: 95px;
}

@media (max-width: 720px) {
  .contact-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-row-actions {
    justify-content: flex-start;
  }
}

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), url('../images/project-4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.heroContent {
  max-width: 900px;
  padding: 0 2rem;
  z-index: 1;
}

.heroSubtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: block;
}

.heroTitle {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.heroDesc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(224, 225, 221, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
}

.heroBtns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Subpage Hero Banner Styling (Compact Ratio for Services, Gallery, Contact, etc.) */
.subpage-hero,
.hero:not(#hero) {
  height: auto !important;
  min-height: 600px !important;
  max-height: 800px !important;
  padding: calc(75px + 2rem) 0 2.25rem 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.subpage-hero .heroContent,
.hero:not(#hero) .heroContent {
  max-width: 950px;
  padding: 0 1.5rem;
  margin: 0 auto;
  text-align: center;
}

.subpage-hero .heroTitle,
.hero:not(#hero) .heroTitle {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  font-weight: 850;
  text-transform: uppercase;
}

.subpage-hero .heroSubtitle,
.hero:not(#hero) .heroSubtitle {
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

@media (max-width: 768px) {

  .subpage-hero,
  .hero:not(#hero) {
    min-height: 220px !important;
    padding: calc(70px + 1.5rem) 0 1.75rem 0 !important;
  }
}

/* =====================================================
   First Section: Dedicated Brand Showcase (Logo & Name)
   ===================================================== */
.brandSection {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at center, #13273d 0%, #0a1522 70%, #060e17 100%);
  padding: calc(75px + 2rem) 2rem 3rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}

.brandSection::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, rgba(13, 27, 42, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.brandSection::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.brandIntroInner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  margin: auto 0;
}

.brandIntroLockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.brandIntroLogo {
  width: clamp(75px, 8vw, 105px);
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 180, 216, 0.25);
  background: #ffffff;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brandIntroLogo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 36px rgba(0, 180, 216, 0.4);
}

.brandIntroLogo img {
  width: 100%;
  height: auto;
  display: block;
}

.brandIntroText {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1;
}

.brandIntroName {
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  line-height: 1.05;
}

.brandIntroSub {
  font-family: var(--font-inter), sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.25rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--teal);
  margin-top: 0.6rem;
  text-shadow: 0 2px 12px rgba(0, 180, 216, 0.3);
}

.brandIntroOverview {
  max-width: 680px;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.75;
  color: rgba(224, 225, 221, 0.85);
  margin: 0 auto 2.25rem auto;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

.brandIntroDivider {
  width: 100%;
  max-width: 480px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin-bottom: 3.5rem;
  opacity: 0.6;
}

.brandIntroScroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(224, 225, 221, 0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
}

.brandIntroScroll:hover {
  color: var(--teal);
  transform: translateY(2px);
}

.scrollIndicatorIcon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 216, 0.3);
  background: rgba(0, 180, 216, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }

  60% {
    transform: translateY(3px);
  }
}

/* =====================================================
   Hero Section: Split Layout (Matches Screenshot 1)
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(13, 27, 42, 0.72), rgba(13, 27, 42, 0.72)), url('../images/project-4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0;
}

.heroContent {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  z-index: 1;
  margin: 0 auto;
}

.heroSubtitle {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-bottom: 2.75rem;
  display: block;
  text-align: center;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  text-align: left;
  width: 100%;
}

.heroColLeft {
  text-align: left;
}

.heroColLeft .heroTitle {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.04;
  margin-bottom: 0;
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.heroColRight {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heroColRight .heroDesc {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: rgba(224, 225, 221, 0.88);
  line-height: 1.75;
  margin-bottom: 2rem;
  margin-inline: 0;
  max-width: 100%;
  text-align: left;
}

.heroBtns {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .brandIntroLockup {
    gap: 1.5rem;
  }

  .heroGrid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .heroColLeft {
    text-align: center;
  }

  .heroColLeft .heroTitle {
    text-align: center;
  }

  .heroColRight {
    text-align: center;
    align-items: center;
  }

  .heroColRight .heroDesc {
    text-align: center;
    margin-inline: auto;
    max-width: 600px;
    margin-bottom: 2rem;
  }

  .heroBtns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .brandSection {
    padding: calc(75px + 1.5rem) 1.5rem 2.5rem 1.5rem;
  }

  .brandIntroLockup {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .brandIntroText {
    text-align: center;
  }

  .brandIntroName {
    font-size: 2.2rem;
  }

  .brandIntroSub {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .brandIntroOverview {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    padding: 0 0.5rem;
  }

  .brandIntroDivider {
    max-width: 260px;
    margin-bottom: 2rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .heroSubtitle {
    margin-bottom: 1.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .heroColLeft .heroTitle br {
    display: none;
  }

  .heroBtns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 0.85rem;
  }

  .heroBtns a {
    width: 100%;
    text-align: center;
  }
}

.servicesSection {
  padding: 8rem 0;
  background: var(--navy);
}

.sectionHeader {
  text-align: center;
  margin-bottom: 5rem;
}

.sectionHeader h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sectionHeader p {
  color: rgba(224, 225, 221, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .heroBtns {
    flex-direction: column;
    gap: 1rem;
  }

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

.page {
  --background: #fafafa;
  --foreground: #fff;

  --text-primary: #000;
  --text-secondary: #666;

  --button-primary-hover: #383838;
  --button-secondary-hover: #f2f2f2;
  --button-secondary-border: #ebebeb;

  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-geist-sans);
  background-color: var(--background);
}

.main {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--foreground);
  padding: 120px 60px;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}

.intro h1 {
  max-width: 320px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -2.4px;
  text-wrap: balance;
  color: var(--text-primary);
}

.intro p {
  max-width: 440px;
  font-size: 18px;
  line-height: 32px;
  text-wrap: balance;
  color: var(--text-secondary);
}

.intro a {
  font-weight: 500;
  color: var(--text-primary);
}

.ctas {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 440px;
  gap: 16px;
  font-size: 14px;
}

.ctas a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 128px;
  border: 1px solid transparent;
  transition: 0.2s;
  cursor: pointer;
  width: fit-content;
  font-weight: 500;
}

a.primary {
  background: var(--text-primary);
  color: var(--background);
  gap: 8px;
}

a.secondary {
  border-color: var(--button-secondary-border);
}

/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  a.primary:hover {
    background: var(--button-primary-hover);
    border-color: transparent;
  }

  a.secondary:hover {
    background: var(--button-secondary-hover);
    border-color: transparent;
  }
}

@media (max-width: 600px) {
  .main {
    padding: 48px 24px;
  }

  .intro {
    gap: 16px;
  }

  .intro h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.92px;
  }
}



.cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 140, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 140, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ctaInner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ctaLabel {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 4px;
}

.ctaTitle {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

.ctaDesc {
  color: rgba(224, 225, 221, 0.6);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ctaBtn {
  background: var(--teal);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.ctaBtn:hover {
  background: #e67e00;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 140, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}

@media (max-width: 768px) {
  .ctaTitle {
    font-size: 1.8rem;
  }
}

.footer {
  background: #080f18;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(65, 90, 119, 0.3);
}

.footerGrid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footerLogo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  width: max-content;
}

.logoText {
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.footerBrand p {
  color: rgba(224, 225, 221, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.socialLinks {
  display: flex;
  gap: 0.75rem;
}

.socialLink {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(224, 225, 221, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.socialLink:hover {
  border-color: var(--teal);
  background: rgba(11, 93, 107, 0.1);
  color: var(--teal);
}

.footerCol h4 {
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.footerCol ul {
  list-style: none;
}

.footerCol li {
  margin-bottom: 0.6rem;
}

.footerCol a {
  color: rgba(224, 225, 221, 0.6);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footerCol a:hover {
  color: var(--teal);
}

.footerBottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem 0.5rem;
  border-top: 1px solid rgba(65, 90, 119, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.footerBottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 3rem;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.35);
}

.footerBottom p {
  color: rgba(224, 225, 221, 0.52);
  font-size: 0.78rem;
  line-height: 1.8;
  margin: 0;
}

.footerCopyright {
  flex: 1 1 auto;
}

.footerMeta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
  text-align: right;
}

.footerBottom a {
  color: rgba(224, 225, 221, 0.72);
  transition: color 0.3s ease;
}

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

.footerCerts {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.certBadge {
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(11, 93, 107, 0.3);
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footerBottom {
    flex-direction: column;
    text-align: center;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .footerMeta {
    justify-content: center;
    text-align: center;
  }

  .footerBottom::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.section {
  padding: 5rem 0;
  background: #080f18;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
}

.subtitle {
  text-align: center;
  color: rgba(224, 225, 221, 0.5);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filterBtn {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(224, 225, 221, 0.15);
  border-radius: 4px;
  color: rgba(224, 225, 221, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.filterBtn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filterActive {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.filterActive:hover {
  background: #e67e00;
  color: white;
}

.grid {
  columns: 3;
  column-gap: 1.5rem;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--charcoal);
}

.itemImage {
  width: 100%;
  display: block;
  aspect-ratio: auto;
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
  min-height: 200px;
}

.itemOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(13, 27, 42, 0.95));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.item:hover .itemOverlay {
  transform: translateY(0);
}

.itemTitle {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.itemCategory {
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightboxContent {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.lightboxImage {
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
  min-height: 400px;
}

.lightboxInfo {
  margin-top: 1.5rem;
}

.lightboxInfo h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.lightboxInfo p {
  color: rgba(224, 225, 221, 0.6);
  font-size: 0.9rem;
}

.lightboxClose {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.lightboxClose:hover {
  color: var(--teal);
}

@media (max-width: 900px) {
  .grid {
    columns: 2;
  }
}

@media (max-width: 550px) {
  .grid {
    columns: 1;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.headerScrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 0;
}

.headerInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  text-decoration: none;
}

/* On Home Page: hide header logo initially, reveal smoothly when user scrolls down */
.home-page .header .logo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

.home-page .header.show-home-logo .logo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.logoIcon {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.logoText {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brandName {
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.brandSub {
  font-family: var(--font-inter), sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navItem {
  position: relative;
}

.navLink {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.navLink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.navLink:hover::after {
  width: 100%;
}

.navLink:hover {
  color: var(--teal);
}

/* Dropdown Submenu Styles */
.dropdownMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 280px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1010;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 0.5rem;
}

.dropdownMenu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.navItem:hover .dropdownMenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdownItem a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all 0.3s ease;
}

.dropdownItem a:hover {
  background: rgba(29, 206, 216, 0.1);
  color: var(--teal);
  padding-left: 1.75rem;
}

/* Mobile Dropdown styles */
.mobileDropdown {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(13, 27, 42, 0.5);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.mobileDropdownOpen {
  display: flex;
}

.mobileDropdownLink {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(224, 225, 221, 0.8);
  padding: 0.25rem 0;
}

.mobileDropdownLink:hover {
  color: var(--teal);
}


.emergencyBtn {
  background: var(--teal);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emergencyBtn:hover {
  background: var(--teal-dark);
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 93, 107, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(11, 93, 107, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 93, 107, 0);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburgerOpen span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburgerOpen span:nth-child(2) {
  opacity: 0;
}

.hamburgerOpen span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobileNavLink {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}

.mobileNavLink:hover {
  color: var(--teal);
}

.mobileNav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  /* Dynamic viewport height for mobile browsers */
  width: 100vw;
  background: rgba(13, 27, 42, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  /* Higher priority than header content */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: env(safe-area-inset-top) 2rem env(safe-area-inset-bottom);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.1);
  /* Subtle zoom effect */
}

.mobileNavOpen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2001;
  /* Above mobileNav */
  background: none;
  border: none;
  padding: 5px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile layout safeguards */
@media (max-width: 600px) {
  .container,
  .inner,
  .whyUsInner,
  .footerGrid,
  .servicesGrid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding,
  .servicesSection,
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .header {
    padding-top: max(0.65rem, env(safe-area-inset-top));
  }

  .headerInner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo {
    min-width: 0;
    gap: 0.6rem;
  }

  .logoIcon {
    width: 42px;
  }

  .brandName {
    font-size: 1rem;
  }

  .brandSub {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .hamburger {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobileNav {
    gap: 1.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-y: auto;
  }

  .mobileNavLink {
    font-size: clamp(1.15rem, 5vw, 1.5rem);
  }

  .mobileNav .emergencyBtn {
    width: min(100%, 320px);
    justify-content: center;
    text-align: center;
  }

  .heroContent {
    width: 100%;
    min-width: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    min-height: 560px;
    background-attachment: scroll;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .heroColLeft .heroTitle {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .heroGrid,
  .heroColLeft,
  .heroColRight {
    min-width: 0;
    width: 100%;
  }

  .heroColLeft .heroTitle br {
    display: block;
  }

  .heroColRight .heroDesc {
    width: 100%;
    overflow-wrap: break-word;
  }

  .heroSubtitle {
    letter-spacing: 0.14em;
  }

  .brandSection {
    min-height: 100svh;
  }

  .brandIntroLogo {
    width: 82px;
  }

  .brandIntroName {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
    letter-spacing: 0.02em;
  }

  .brandIntroSub {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .brandIntroOverview {
    font-size: 0.9rem;
  }

  .heroBtns,
  .heroBtns a,
  .ctaBtn {
    width: 100%;
  }

  .btn-primary,
  .btn-outline,
  .ctaBtn {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sectionHeader {
    margin-bottom: 2.5rem;
  }

  .sectionHeader h2,
  .contact-details-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .servicesGrid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

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

  .serviceImageWrap {
    height: 180px;
  }

  .new-service-card .serviceContent {
    padding: 1.25rem;
  }

  .formCard,
  .contact-details-card,
  .glass-card {
    padding: 1.25rem;
  }

  .contact-row {
    padding: 1rem;
  }

  .contact-row-actions,
  .contact-row-actions .copy-btn,
  .qr-toggle-btn {
    width: 100%;
  }

  .contact-row-actions .copy-btn,
  .qr-toggle-btn {
    min-height: 44px;
  }

  .footer {
    padding-top: 3rem;
  }

  .footerGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footerLogo img {
    max-width: 180px;
    width: 100% !important;
  }

  .cta {
    padding: 3.5rem 0;
  }

  .ctaInner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ctaTitle {
    font-size: clamp(1.65rem, 8vw, 2.25rem) !important;
  }

  .ctaDesc {
    font-size: 1rem !important;
  }
}

@media (max-width: 380px) {
  .brandName {
    font-size: 0.88rem;
  }

  .brandSub {
    font-size: 0.42rem;
  }

  .heroColLeft .heroTitle {
    font-size: 1.85rem;
  }

  .mobileDropdownLink {
    font-size: 0.9rem;
  }
}

.formSection {
  padding: 0;
}

.formCard {
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 225, 221, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stepCircle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(224, 225, 221, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(224, 225, 221, 0.4);
  transition: all 0.3s ease;
}

.stepActive .stepCircle {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.stepDone .stepCircle {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.stepLabel {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(224, 225, 221, 0.4);
}

.stepActive .stepLabel {
  color: var(--orange);
}

.stepDone .stepLabel {
  color: var(--orange);
}

.stepLine {
  width: 60px;
  height: 2px;
  background: rgba(224, 225, 221, 0.15);
  margin: 0 0.75rem;
}

.stepLineDone {
  background: var(--orange);
}

.formTitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

.fieldGroup {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(224, 225, 221, 0.6);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(13, 27, 42, 0.8);
  border: 1px solid rgba(224, 225, 221, 0.12);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.serviceOptions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
}

.serviceOption {
  padding: 1rem;
  border: 1px solid rgba(224, 225, 221, 0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(224, 225, 221, 0.6);
  background: transparent;
}

.serviceOption:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.serviceOptionActive {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.1);
  color: var(--orange);
}

.formActions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.btnBack {
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(224, 225, 221, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
}

.btnBack:hover {
  border-color: var(--orange);
}

.btnNext {
  padding: 0.85rem 2rem;
  background: var(--teal);
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btnNext:hover {
  background: #e67e00;
  transform: scale(1.03);
}

.successMsg {
  text-align: center;
  padding: 3rem 0;
}

.successIcon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.successMsg h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.successMsg p {
  color: rgba(224, 225, 221, 0.6);
  font-size: 0.95rem;
}

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

  .stepLabel {
    display: none;
  }
}

.error {
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.card {
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 225, 221, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.15);
  transform: translateY(-8px);
}

.imageContainer {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--charcoal);
  overflow: hidden;
}

.serviceImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.8;
}

.card:hover .serviceImage {
  transform: scale(1.1);
  opacity: 1;
}

.iconPlaceholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
}

.iconOverlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.content {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.description {
  color: rgba(224, 225, 221, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.link {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.link:hover {
  gap: 0.75rem;
}

.arrow {
  transition: transform 0.3s ease;
}

.card:hover .arrow {
  transform: translateX(4px);
}

.section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(65, 90, 119, 0.1) 0%, rgba(13, 27, 42, 0.9) 100%);
  border-top: 1px solid rgba(65, 90, 119, 0.2);
  border-bottom: 1px solid rgba(65, 90, 119, 0.2);
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 1.5rem;
}

.value {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(224, 225, 221, 0.8);
}

@media (max-width: 768px) {
  .inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .value {
    font-size: 2.2rem;
  }
}

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

.trustBar {
  background: rgba(8, 15, 24, 0.8);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(65, 90, 119, 0.15);
  border-bottom: 1px solid rgba(65, 90, 119, 0.15);
}

.marqueeTrack {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.marqueeTrack:hover {
  animation-play-state: paused;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(224, 225, 221, 0.7);
  background: rgba(13, 27, 42, 0.5);
}

.badgeIcon {
  font-size: 1.1rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section {
  padding: 8rem 0;
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(65, 90, 119, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 90, 119, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================
   Why Choose Us Section
   ======================== */
.whyUsSection {
  background: #080f18;
  padding: 5rem 0;
}

.whyUsInner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.whyUsHeading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}

.whyUsSubHeading {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 3rem;
}

.whyUsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.whyUsCard {
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(65, 90, 119, 0.4);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.whyUsCard:hover {
  border-color: rgba(29, 206, 216, 0.5);
  transform: translateY(-4px);
}

.whyUsIcon {
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
  display: block;
}

.whyUsTitle {
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}

.whyUsDesc {
  font-size: 0.95rem;
  color: rgba(224, 225, 221, 0.65);
  line-height: 1.7;
}

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

.flexContainer {
  display: flex;
  flex-direction: row;
  gap: 40px;
  /* Adds space between the text and image columns */
  align-items: flex-start;
  /* Aligns both columns to the top */
}

.textContent {
  flex: 1;
  /* Takes up 50% of the space */
}

.title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 3rem;
  color: var(--white);
  text-align: left;
}

.featuresList {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.featureItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.featureIcon {
  font-size: 2.2rem;
  min-width: 64px;
  height: 64px;
  background: rgba(29, 206, 216, 0.1);
  border: 1px solid rgba(29, 206, 216, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.featureTitle {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.featureDesc {
  color: rgba(224, 225, 221, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
}

.imageContent {
  min-width: 0;
  position: relative;
}

.mainImage {
  width: 100%;
  /* Forces the image to stay within its half of the container */
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  /* Optional: adds a nice rounded corner */
  display: block;
}

.experienceBadge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--teal);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(29, 206, 216, 0.3);
  z-index: 10;
}

.badgeNumber {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-montserrat), sans-serif;
  color: white;
  line-height: 1;
}

.badgeText {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  color: white;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .flexContainer {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .imageContent {
    min-width: 0;
    order: -1;
    margin-bottom: 2rem;
  }

  .mainImage {
    height: 450px;
  }

  .experienceBadge {
    bottom: 1rem;
    left: 1rem;
    padding: 1.5rem;
  }

  .badgeNumber {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .featuresList {
    flex-direction: column;
  }
}

/* ========================
   Redesigned Service Cards
   ======================== */

/* Clickable card wrapper */
a.new-service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  cursor: pointer;
}

.new-service-card {
  background: var(--navy);
  border: 1px solid rgba(65, 90, 119, 0.3);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

a.new-service-card-link:hover .new-service-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(29, 206, 216, 0.5);
}

a.new-service-card-link:hover .serviceLink {
  color: #fff;
  gap: 0.85rem;
}

a.new-service-card-link:hover .serviceImg {
  transform: scale(1.05);
}

.serviceImageWrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.serviceImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.serviceIconBox {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--teal);
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Category label in top-left of image */
.serviceCategory {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 27, 42, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(29, 206, 216, 0.3);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  z-index: 2;
}

#jobber-form {
  min-width: 0;
  overflow: hidden;
}

#jobber-form.jobber-loading::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 1.5rem auto 0;
  border: 3px solid rgba(224, 225, 221, 0.2);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: jobberSpinner 0.8s linear infinite;
}

@keyframes jobberSpinner {
  to {
    transform: rotate(360deg);
  }
}

.jobberEmbed {
  width: 100%;
  min-width: 0;
  display: none;
}

.jobberEmbed.jobberEmbedReady {
  display: block;
}

@media (max-width: 768px) {
  .jobberEmbed.jobberEmbedReady {
    display: block;
  }
}

.serviceContent {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.serviceContent .serviceTitle {
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.serviceContent .serviceDesc {
  font-size: 0.95rem;
  color: rgba(224, 225, 221, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

.serviceContent .serviceLink {
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, gap 0.3s ease;
  pointer-events: none;
  /* tile itself is the link */
}

/* Contact Info Links */
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* Contact Info Cards as Links */
.contact-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
}

.contact-card-link .glass-card {
  margin-bottom: 0 !important;
}

.contact-card-link:hover .glass-card {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(11, 93, 107, 0.3);
  transform: translateY(-5px);
}

/* Modern Footer Contact List with SVG Icons */
.footerContactList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerContactList li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: rgba(224, 225, 221, 0.75);
  line-height: 1.5;
}

.footerIcon {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  stroke-width: 2.25;
}

.footerContactList li a.contact-link {
  color: rgba(224, 225, 221, 0.75);
  text-decoration: none;
  transition: var(--transition);
}

.footerContactList li a.contact-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* About Page Custom Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* About Page Hero Section Styling */
.about-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem 0;
  background-color: var(--navy);
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 15%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 206, 216, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
}

.about-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- Team Section Base Styles --- */
#meet-the-team {
  background: rgba(8, 15, 24, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6rem 0;
}

.team-container {
  max-width: 1100px;
  /* Slightly narrower for optimal reading line-length */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-subtitle {
  color: var(--teal);
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}

.team-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--white, #ffffff);
}

.team-lead-text {
  color: rgba(224, 225, 221, 0.7);
  font-family: var(--font-inter), sans-serif;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Row-Based Stack Layout --- */
.team-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  /* Generous spacing between rows */
}

/* --- Team Card --- */
.team-card {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(29, 206, 216, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

/* --- Content Body --- */
.team-card-body {
  width: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--white, #ffffff);
  font-weight: 600;
}

.team-member-role {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-inter), sans-serif;
}

.team-member-bio {
  color: rgba(224, 225, 221, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  font-family: var(--font-inter), sans-serif;
  margin-bottom: 1rem;
}

.team-member-bio:last-child {
  margin-bottom: 0;
}

/* --- Section 2: Grid & Compact Cards --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.team-compact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.team-compact-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 12px 35px rgba(29, 206, 216, 0.15);
}

.team-compact-card .team-card-body {
  padding: 2rem 1.5rem;
  align-items: center;
  text-align: center;
}

.team-compact-card .team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.team-compact-card .team-member-role {
  margin-bottom: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

/* --- Responsive Breakpoint (Tablet/Mobile) --- */
@media (max-width: 868px) {
  .team-card {
    flex-direction: column;
  }

  .team-card-body {
    padding: 2rem;
  }

  .team-compact-card .team-card-body {
    padding: 1.75rem 1.25rem;
  }
}

/* =====================================================
   OUR PARTNERS SECTION
   ===================================================== */

.partnersSection {
  padding: 5rem 2rem;
  background-color: var(--navy);
  position: relative;
}

.partnersSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(65, 90, 119, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 90, 119, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.partnersGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.partnerCard {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnerCard:hover {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(29, 206, 216, 0.15);
  transform: translateY(-3px);
}

.partnerLogoWrap {
  /* White tile handles both transparent-bg and white-bg logos uniformly */
  background: #ffffff;
  border-radius: 6px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partnerCard:hover .partnerLogoWrap {
  opacity: 0;
  transform: scale(0.96);
}

.partnerLogo {
  max-width: 100%;
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* No filter — logos render naturally on the white tile */
  transition: var(--transition);
}

.partnerName {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-montserrat), sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.partnerCard:hover .partnerName {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .partnersGrid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .sectionHeader {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sectionHeader h2 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
    overflow-wrap: break-word;
  }

  .sectionHeader p {
    width: 100%;
    overflow-wrap: break-word;
  }
}