:root {
  --navy: #093C5D;
  --steel: #3B7597;
  --cyan: #6FD1D7;
  --mint: #5DF8D8;
  --navy-dark: #061f30;
  --navy-mid: #0a4a72;
  --mint-glow: rgba(93, 248, 216, 0.15);
  --mint-glow-strong: rgba(93, 248, 216, 0.35);
  --glass: rgba(9, 60, 93, 0.45);
  --glass-light: rgba(111, 209, 215, 0.08);
  --text-light: #F4F3EF;
  /* #e8f4f8; */
  --text-muted:
    /*  #E2DFD2; */
    rgba(232, 244, 248, 0.6);
  --gold: #c9a84c;
  --font-montserrat: 'Montserrat';
  --font-playfair-display: 'Playfair Display';
  /* --font-cormorant-garamond:'Cormorant Garamond'; */
  --font-cormorant-garamond: 'Akt';
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-montserrat), sans-serif;
  background: var(--navy-dark);
  color: var(--text-light);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--mint);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--mint);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.4s, height 0.4s;
  opacity: 0.6;
}

/* Loading screen */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-playfair-display), serif;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--mint), var(--cyan), var(--steel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}

.loader-bar-wrap {
  width: 220px;
  height: 1px;
  background: rgba(93, 248, 216, 0.15);
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  animation: loadBar 2s ease-in-out forwards;
  box-shadow: 0 0 12px var(--mint);
}

.loader-text {
  margin-top: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--mint);
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s forwards;
  text-transform: uppercase;
}

@keyframes loadBar {
  0% {
    width: 0
  }

  100% {
    width: 100%
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(93, 248, 216, 0.1);
  padding: 1rem 4rem;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: var(--font-playfair-display), serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-logo span {
  font-weight: 300;
  font-style: italic;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mint);
  transition: width 0.3s ease;
  box-shadow: 0 0 6px var(--mint);
}

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

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

.nav-cta {
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--mint);
  border-radius: 2px;
  color: var(--mint) !important;
  transition: background 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  background: var(--mint-glow) !important;
  box-shadow: 0 0 20px var(--mint-glow-strong) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  /* transition: all 0.3s;*/
  /* Keeps the animation smooth */
  transition: all 0.3s ease-in-out;
  /* Ensures they rotate around their middle points */
  transform-origin: center;
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 31, 48, 0.85) 0%, rgba(9, 60, 93, 0.6) 50%, rgba(6, 31, 48, 0.9) 100%),
    url('../images/wide-hall.avif') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroParallax 1.5s ease-out forwards;
}

@keyframes heroParallax {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(93, 248, 216, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 117, 151, 0.12) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mint);
  border: 1px solid rgba(93, 248, 216, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInUp 0.8s 2.5s forwards;
}

.hero-title {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeInUp 0.9s 2.7s forwards;
}

.hero-title .line1 {
  display: block;
  color: var(--text-light);
}

.hero-title .line2 {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--mint) 0%, var(--cyan) 50%, var(--steel) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 0.9s 2.9s forwards;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s 3.1s forwards;
}

.btn-primary {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(93, 248, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(93, 248, 216, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 244, 248, 0.3);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--mint);
  color: var(--mint);
  background: var(--mint-glow);
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--mint-glow);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s 3.5s forwards;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--mint), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.7) translateY(10px);
  }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.12;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--mint);
  top: -100px;
  left: -100px;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--cyan);
  bottom: 0;
  right: -50px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(30px, -20px);
  }

  66% {
    transform: translate(-20px, 30px);
  }
}

/* SECTION COMMON */
section {
  position: relative;
  overflow: hidden;
}

.section-tag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent);
  margin: 1.5rem 0;
  box-shadow: 0 0 10px rgba(93, 248, 216, 0.3);
}

/* ABOUT */
#about {
  padding: 120px 4rem;
  background: linear-gradient(180deg, var(--navy-dark) 0%, #071e2f 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  background:
    linear-gradient(135deg, rgba(9, 60, 93, 0.3), rgba(6, 31, 48, 0.5)),
    url('../images/hall-glass-view.avif') center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(93, 248, 216, 0.25);
  border-radius: 4px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 0 30px rgba(93, 248, 216, 0.1), inset 0 0 30px rgba(93, 248, 216, 0.05);
}

.about-accent-box .big-num {
  font-family: var(--font-playfair-display), serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-accent-box p {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.about-corner-line {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  opacity: 0.5;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-playfair-display), serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  display: block;
}

/* SERVICES */
#services {
  padding: 120px 4rem;
  background: linear-gradient(180deg, #071e2f 0%, var(--navy) 50%, #071e2f 100%);
}

.services-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
}

.services-header .divider {
  margin: 1.5rem auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  padding: 2.5rem;
  border: 1px solid rgba(111, 209, 215, 0.12);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(9, 60, 93, 0.4), rgba(6, 31, 48, 0.6));
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 248, 216, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  box-shadow: 0 0 10px var(--mint);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 248, 216, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(93, 248, 216, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--mint);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-playfair-display), serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--mint);
}

.service-card p {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 4rem;
  font-family: var(--font-playfair-display), serif;
  font-weight: 900;
  color: rgba(93, 248, 216, 0.04);
  line-height: 1;
  transition: color 0.4s;
}

.service-card:hover .service-num {
  color: rgba(93, 248, 216, 0.08);
}

/* PORTFOLIO */
#portfolio {
  padding: 120px 4rem;
  background: #071e2f;
}

.portfolio-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.portfolio-header .divider {
  margin: 1.5rem auto;
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(111, 209, 215, 0.2);
  color: var(--text-muted);
  font-family: var(--font-montserrat), sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--mint-glow);
  border-color: var(--mint);
  color: var(--mint);
  box-shadow: 0 0 15px rgba(93, 248, 216, 0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-bg {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-bg {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 31, 48, 0.95) 0%, rgba(9, 60, 93, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  font-family: var(--font-playfair-display), serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  transform: translateY(10px);
  transition: transform 0.4s 0.1s;
}

.portfolio-overlay span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  transform: translateY(10px);
  transition: transform 0.4s 0.15s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay span {
  transform: translateY(0);
}

.portfolio-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--mint-glow);
  border: 1px solid rgba(93, 248, 216, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s 0.1s;
}

.portfolio-item:hover .portfolio-zoom {
  opacity: 1;
  transform: scale(1);
}

/* WHY CHOOSE US */
#why {
  padding: 120px 4rem;
  background: linear-gradient(180deg, #071e2f, var(--navy-dark));
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border: 1px solid rgba(111, 209, 215, 0.1);
  border-radius: 4px;
  background: var(--glass-light);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.why-card:hover {
  border-color: rgba(93, 248, 216, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(93, 248, 216, 0.06);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(93, 248, 216, 0.15), rgba(111, 209, 215, 0.05));
  border: 1px solid rgba(93, 248, 216, 0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--mint);
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(93, 248, 216, 0.25), rgba(111, 209, 215, 0.1));
  box-shadow: 0 0 20px rgba(93, 248, 216, 0.2);
}

.why-card h4 {
  font-family: var(--font-playfair-display), serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-light);
}

.why-card p {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-visual {
  position: relative;
  height: 600px;
}

.why-img-main {
  width: 75%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(9, 60, 93, 0.2), rgba(6, 31, 48, 0.4)),
    url('../images/hall-bg.avif') center/cover no-repeat;
  border-radius: 4px;
  position: absolute;
  left: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.why-img-accent {
  width: 55%;
  height: 280px;
  background:
    linear-gradient(180deg, rgba(9, 60, 93, 0.2), rgba(6, 31, 48, 0.4)),
    url('../images/hall-white.avif') center/cover no-repeat;
  border-radius: 4px;
  position: absolute;
  right: 0;
  bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(93, 248, 216, 0.1);
}

/* TESTIMONIALS */
#testimonials {
  padding: 120px 4rem;
  background: linear-gradient(180deg, var(--navy-dark), #071e2f);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.testimonials-header .divider {
  margin: 1.5rem auto;
}

.testimonial-carousel {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

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

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(111, 209, 215, 0.12);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(9, 60, 93, 0.5), rgba(6, 31, 48, 0.7));
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-playfair-display), serif;
  font-size: 8rem;
  color: rgba(93, 248, 216, 0.06);
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(93, 248, 216, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(93, 248, 216, 0.06);
  transform: translateY(-5px);
}

.stars {
  color: var(--mint);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

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

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover !important;
  background-position: center !important;
  border: 2px solid rgba(93, 248, 216, 0.3);
  flex-shrink: 0;

  /* ⚡ THE FIX: Centers the Font Awesome icon perfectly */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Icon Sizing & Color */
  font-size: 1.2rem;
  /* Adjust this to make the user icon bigger or smaller */
  color: var(--text-light);
  /* Tint the icon to match your layout colors */
}

.t-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.t-info span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mint);
  text-transform: uppercase;
}

/* PROCESS */
#process {
  padding: 120px 4rem;
  background: linear-gradient(180deg, #071e2f, var(--navy));
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 6rem;
}

.process-header .divider {
  margin: 1.5rem auto;
}

.process-timeline {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--mint), var(--cyan), transparent);
  opacity: 0.3;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(93, 248, 216, 0.3);
  background: linear-gradient(135deg, rgba(9, 60, 93, 0.8), rgba(6, 31, 48, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  color: var(--mint);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(93, 248, 216, 0.1);
}

.step-circle:hover {
  border-color: var(--mint);
  box-shadow: 0 0 40px rgba(93, 248, 216, 0.25), 0 0 80px rgba(93, 248, 216, 0.1);
  transform: scale(1.1);
}

.step-num {
  position: absolute;
  top: -8px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: var(--mint);
  color: var(--navy-dark);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  font-family: var(--font-playfair-display), serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-light);
}

.process-step p {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CONTACT */
#contact {
  padding: 120px 4rem;
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
}

.contact-banner {
  max-width: 1100px;
  margin: 0 auto 6rem;
  text-align: center;
  padding: 5rem;
  border: 1px solid rgba(93, 248, 216, 0.15);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(9, 60, 93, 0.5), rgba(6, 31, 48, 0.7));
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(93, 248, 216, 0.05) 0%, transparent 70%);
}

.contact-banner h2 {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-banner p {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-playfair-display), serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info .section-body {
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(93, 248, 216, 0.2);
  border-radius: 3px;
  background: var(--glass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-text span {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 1rem;
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 209, 215, 0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--mint);
  color: var(--mint);
  box-shadow: 0 0 20px rgba(93, 248, 216, 0.2);
  background: var(--mint-glow);
  transform: translateY(-3px);
}

.contact-form {
  padding: 3rem;
  border: 1px solid rgba(111, 209, 215, 0.12);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(9, 60, 93, 0.4), rgba(6, 31, 48, 0.6));
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(6, 31, 48, 0.6);
  border: 1px solid rgba(111, 209, 215, 0.15);
  border-radius: 3px;
  color: var(--text-light);
  font-family: var(--font-montserrat), sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(93, 248, 216, 0.4);
  box-shadow: 0 0 20px rgba(93, 248, 216, 0.08);
  background: rgba(9, 60, 93, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 244, 248, 0.3);
}

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

.form-group select option {
  background: var(--navy-dark);
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  border: none;
  border-radius: 3px;
  color: var(--navy-dark);
  font-family: var(--font-montserrat), sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(93, 248, 216, 0.2);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(93, 248, 216, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(93, 248, 216, 0.08);
  padding: 5rem 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
}

.footer-brand p {
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  text-decoration: none;
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--mint);
}

.footer-col address {
  font-style: normal;
  font-family: var(--font-cormorant-garamond), serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 2;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(111, 209, 215, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(232, 244, 248, 0.3);
}

.footer-bottom a {
  color: var(--mint);
  text-decoration: none;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(9, 60, 93, 0.8), rgba(6, 31, 48, 0.9));
  border: 1px solid rgba(93, 248, 216, 0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(93, 248, 216, 0.03) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(93, 248, 216, 0.03) 1px, transparent 1px) 0 0 / 40px 40px;
}

.map-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px var(--mint), 0 0 40px rgba(93, 248, 216, 0.3);
  animation: mapPulse 2s infinite;
  position: relative;
  z-index: 1;
}

@keyframes mapPulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--mint), 0 0 40px rgba(93, 248, 216, 0.3);
  }

  50% {
    box-shadow: 0 0 40px var(--mint), 0 0 80px rgba(93, 248, 216, 0.5);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 31, 48, 0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  object-fit: contain;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  /* max-width: 900px;
  max-height: 80vh; */
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(93, 248, 216, 0.2);
  box-shadow: 0 0 100px rgba(93, 248, 216, 0.15);
}

.lightbox-inner img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  /* max-width: 90%;
  max-height: 80vh; */
}

.lightbox-close {
position: absolute;
  top: 20px;
  right: 30px;
  
  /* Dimensions for a perfect circle */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  
  background-color: var(--navy);
  color: #ffffff;
  font-size: 28px;
  border: none;
  cursor: pointer;
  
  /* Centering the "×" symbol inside the circle */
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* Smooth transition for hover effects */
  transition: background-color 0.2s ease, transform 0.2s ease;
  
  /* Reset padding/line-height to avoid alignment quirks */
  padding: 0;
  line-height: 1; 
}

/* Hover effects */
.lightbox-close:hover {
  background-color: var(--steel);
  transform: scale(1.05); /* Slight pop effect */
}

/* Gradient section dividers */
.wave-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(93, 248, 216, 0.3), rgba(111, 209, 215, 0.5), rgba(93, 248, 216, 0.3), transparent);
}

/* Mobile */
@media (max-width: 1024px) {
  nav {
    padding: 1.2rem 2rem;
  }

  nav.scrolled {
    padding: 0.8rem 2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  #about,
  #services,
  #portfolio,
  #why,
  #testimonials,
  #process,
  #contact {
    padding: 80px 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    /* display: none; */
    position: absolute;
    top: 70px;
    /* Adjust based on your header height */
    right: -100%;
    /* Keeps it hidden off-screen to the right */
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--navy-mid);
    /* Uses your light/dark system vars */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: right 0.3s ease-in-out;
    /* Smooth slide-in animation */
    display: flex;
    /* Ensures flex rules apply when sliding into view */
  }

  /* Bring the menu into view when the active class is added by JS */
  .nav-links.active {
    right: 0;
  }

  /* Ensure the hamburger pointer cursor is set */
  .hamburger {
    display: block;
    cursor: pointer;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .hamburger {
    display: flex;
  }

  /* 1. Rotate the top line 45 degrees downward */
  .hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  /* 2. Fade out the middle line completely */
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  /* 3. Rotate the bottom line 45 degrees upward */
  .hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

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

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item.tall,
  .portfolio-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-item {
    height: 250px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  footer {
    padding: 3rem 1.5rem 2rem;
  }

  .contact-banner {
    padding: 3rem 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}