/* ===== Base ===== */
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

/* ===== Navbar ===== */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
}
.nav-link {
  position: relative;
  color: #fff;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: #B08D57;
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
#navbar.scrolled .nav-link { color: #1F2937; }
#navbar.scrolled .nav-link:hover { color: #0A1F44; }

.lang-btn.active { background: #0A1F44; color: #fff; }
.lang-btn { transition: all 0.25s; color: #1F2937; }

/* ===== Navbar / mobile logo ===== */
.navbar-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.25s, filter 0.35s;
  /* Strip white background by default — keeps original colours */
  filter: url(#logoNoWhite);
  flex-shrink: 0;
}
.navbar-logo:hover { opacity: 0.85; }
/* On dark hero: make the cleaned-up logo content white */
#navbar:not(.scrolled) .navbar-logo {
  filter: url(#logoNoWhiteToWhite);
}
/* On white navbar: keep original logo colours, just remove white bg */
#navbar.scrolled .navbar-logo {
  filter: url(#logoNoWhite);
}

/* Brand wordmark next to logo */
.navbar-brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  transition: color 0.3s;
}
.navbar-brand-role {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  line-height: 1;
  margin-top: 6px;
  color: #B08D57;          /* bronze stays bronze on both states */
  transition: color 0.3s;
}
/* Scrolled state — navy text on white navbar */
#navbar.scrolled .navbar-brand-name { color: #0A1F44; }
#navbar.scrolled .navbar-brand-role { color: #B08D57; }
/* subtle thin divider between logo & wordmark */
.navbar-brand {
  position: relative;
  padding-left: 14px;
}
.navbar-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.22);
  transition: background 0.3s;
}
#navbar.scrolled .navbar-brand::before {
  background: rgba(10,31,68,0.18);
}

/* Mobile menu panel (dark navy bg) — make logo white */
.mobile-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: url(#logoNoWhiteToWhite);
  flex-shrink: 0;
}
.mobile-brand {
  position: relative;
  padding-left: 13px;
}
.mobile-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.18);
}
.mobile-brand-name {
  font-size: 0.88rem;
  line-height: 1;
}
.mobile-brand-role {
  font-size: 0.55rem;
  line-height: 1;
  margin-top: 6px;
}

/* Mobile/tablet navbar: scale down so logo + brand + hamburger fit cleanly */
@media (max-width: 767px) {
  .navbar-logo { height: 46px; }
  .navbar-brand { padding-left: 11px; }
  .navbar-brand::before { height: 26px; }
  .navbar-brand-name { font-size: 0.78rem; letter-spacing: 0.03em; }
  .navbar-brand-role { font-size: 0.5rem; letter-spacing: 0.24em; margin-top: 5px; }
  .mobile-brand-name { font-size: 0.82rem; }
  .mobile-brand-role { font-size: 0.5rem; letter-spacing: 0.26em; }
}
/* Ultra-small screens: trim role line to keep name readable */
@media (max-width: 360px) {
  .navbar-logo { height: 42px; }
  .navbar-brand-name { font-size: 0.72rem; }
  .navbar-brand-role { display: none; }
}

/* ===== Hero video ===== */
#home { overflow-x: clip; }   /* prevent horizontal scroll without clipping descenders */
#heroBg { object-position: center; }

/* ===== Typewriter ===== */
.typewriter-wrap {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}
.typewriter-wrap--hero {
  min-height: clamp(5rem, 10.5vw, 9rem);
  align-items: flex-start;
  overflow: visible;
}
.typewriter-text {
  background: linear-gradient(90deg, #ffffff, #C9A876);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Hero typewriter: clamp scales with viewport — never clips */
.typewriter-text--hero {
  font-size: clamp(3.15rem, 8vw, 6rem);
  background: linear-gradient(105deg, #ffffff 20%, #C9A876 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: inline-block;
  padding-bottom: 0.2em;   /* extends gradient box past baseline so g/ς/y/p descenders render fully */
  padding-top: 0.05em;
}
.typewriter-cursor {
  display: inline-block;
  color: #B08D57;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  margin-left: 2px;
  animation: blink 0.75s step-end infinite;
}
.typewriter-cursor--hero {
  font-size: clamp(3.15rem, 8vw, 6rem);
  font-weight: 100;
  line-height: 1;
  vertical-align: baseline;
  margin-left: 3px;
  opacity: 0.6;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== Hero reviews card ===== */
.hero-reviews-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.25rem;
  box-shadow: 0 12px 48px rgba(6,19,48,0.35), 0 1px 0 rgba(255,255,255,0.05) inset;
  padding: 2rem 2.25rem;
  flex-shrink: 0;
  width: 210px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hero-reviews-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(6,19,48,0.4);
}
.hero-reviews-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-reviews-brand i { font-size: 0.95rem; }
.hero-reviews-score {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.75rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.hero-reviews-stars {
  display: flex;
  gap: 3px;
  color: #B08D57;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}
.hero-reviews-divider {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 1rem;
}
.hero-reviews-quote {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.65;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 1023px) {
  .hero-reviews-card {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 1.25rem;
    row-gap: 0.5rem;
    padding: 1.1rem 1.5rem;
    border-radius: 0.875rem;
  }
  .hero-reviews-brand { margin-bottom: 0; width: 100%; justify-content: center; }
  .hero-reviews-score { font-size: 2rem; margin-bottom: 0; line-height: 1; }
  .hero-reviews-stars { margin-bottom: 0; font-size: 0.75rem; letter-spacing: 1px; }
  .hero-reviews-divider { display: none; }
  .hero-reviews-quote { display: none; }
}

/* ===== Hero stats glass card ===== */
.hero-stats-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px rgba(6,19,48,0.3), 0 1px 0 rgba(255,255,255,0.06) inset;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 3rem;
}
.hero-stat {
  padding: 1.75rem 2rem;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}
.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1.25rem 0;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-stats-card { align-self: stretch; width: 100%; margin-bottom: 1.5rem; }
  .hero-stat { padding: 1.25rem 1rem; min-width: auto; }
  .hero-stat-num { font-size: 1.75rem; }
}

/* ===== Smooth language transition ===== */
.lang-fade-out { opacity: 0; transition: opacity 0.2s ease; }
.lang-fade-in  { opacity: 1; transition: opacity 0.25s ease; }

/* ===== Service cards (quick) ===== */
.service-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(10, 31, 68, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A1F44, #061330);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,31,68,0.12); }
.service-card:hover::before { opacity: 1; }
.service-card:hover h3, .service-card:hover p { color: #fff !important; }
.service-card:hover .service-icon { background: #B08D57; color: #0A1F44; transform: rotate(-6deg); }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #F5EFE3;
  color: #B08D57;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.35s;
}

/* ===== About image (placeholder gradient) ===== */
.about-img {
  background-image:
    linear-gradient(180deg, rgba(6,19,48,0.15), rgba(6,19,48,0.75)),
    url('../photo.jpg');
  background-size: cover;
  background-position: center top;
}

/* ===== Big service cards ===== */
.big-service {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 1.25rem;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
}
.big-service:hover {
  background: rgba(176, 141, 87, 0.08);
  border-color: rgba(176, 141, 87, 0.4);
  transform: translateY(-4px);
}
.big-service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(176, 141, 87, 0.15);
  color: #B08D57;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s;
}
.big-service:hover .big-service-icon {
  background: #B08D57;
  color: #061330;
  transform: scale(1.05);
}

/* ===== Testimonials infinite marquee ===== */
.marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left  { left: 0;  background: linear-gradient(to right, #F5EFE3 10%, transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left,  #F5EFE3 10%, transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 55s linear infinite;
  gap: 0;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.testimonial-slide {
  width: 360px;
  flex-shrink: 0;
  padding: 4px 12px;
  box-sizing: border-box;
}
@media (max-width: 640px) { .testimonial-slide { width: 300px; } }

.testimonial-card {
  background: #fff;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 1.25rem;
  height: 100%;
  min-height: 240px;
  box-shadow: 0 6px 22px rgba(10, 31, 68, 0.06);
  border: 1px solid rgba(10, 31, 68, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  cursor: default;
}

/* Hover effect — lift, shadow, accent border */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(10, 31, 68, 0.16);
  border-color: rgba(176, 141, 87, 0.4);
}

/* HEAD: avatar + name + stars (left aligned) */
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A1F44, #B08D57);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10,31,68,0.1);
}
.testimonial-avatar::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z' fill='%234285F4'/><path d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z' fill='%2334A853'/><path d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l3.66-2.84z' fill='%23FBBC05'/><path d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z' fill='%23EA4335'/></svg>") center/contain no-repeat;
  background-color: #fff;
  border-radius: 50%;
  padding: 2px;
}
.testimonial-head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0A1F44;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-stars {
  color: #FBBC05;
  font-size: 0.8rem;
  letter-spacing: 2px;
  line-height: 1;
}

/* BODY: quote text */
.testimonial-text {
  color: rgba(31,41,55,0.78);
  line-height: 1.6;
  font-size: 0.92rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Google Maps CTA button ===== */
.gmaps-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #0A1F44;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(10,31,68,0.22);
  transition: all 0.3s;
}
.gmaps-btn:hover {
  background: #061330;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10,31,68,0.32);
}
.gmaps-btn .text-bronze { color: #B08D57; transition: color 0.3s; }
.gmaps-btn:hover .text-bronze { color: #C9A876; }
.gmaps-g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===== Portfolio ===== */
.portfolio-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--g, linear-gradient(135deg,#0A1F44,#1F2937));
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s;
}
.portfolio-card.lg\:row-span-2 { aspect-ratio: 4/6; }
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,19,48,0.85));
  transition: opacity 0.4s;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10,31,68,0.2); }
.portfolio-card:hover::after { background: linear-gradient(180deg, rgba(6,19,48,0.3) 20%, rgba(6,19,48,0.95)); }
.portfolio-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: #0A1F44;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
  transform: translateY(8px);
  transition: transform 0.4s;
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); }

/* ===== Contact ===== */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(10,31,68,0.05);
  transition: all 0.3s;
}
.contact-card:hover { transform: translateX(4px); box-shadow: 0 10px 25px rgba(10,31,68,0.08); border-color: rgba(176,141,87,0.3); }
.contact-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #F5EFE3;
  color: #B08D57;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(31,41,55,0.7);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #F7F8FA;
  border: 1.5px solid transparent;
  border-radius: 0.6rem;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1F2937;
  transition: all 0.25s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: #B08D57;
  box-shadow: 0 0 0 4px rgba(176,141,87,0.12);
}

/* ===== Social ===== */
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.social-link:hover { background: #B08D57; color: #061330; transform: translateY(-2px); }

/* ===== Custom glass select ===== */
.custom-select {
  position: relative;
  user-select: none;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #F7F8FA;
  border: 1.5px solid transparent;
  border-radius: 0.6rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1F2937;
  transition: all 0.25s;
}
.custom-select__trigger:focus,
.custom-select.is-open .custom-select__trigger {
  outline: none;
  background: #fff;
  border-color: #B08D57;
  box-shadow: 0 0 0 4px rgba(176,141,87,0.12);
}
.custom-select__value { flex: 1; }
.custom-select__value.placeholder-text { color: #9ca3af; }

.custom-select__arrow {
  font-size: 0.8rem;
  color: #9ca3af;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.custom-select.is-open .custom-select__arrow { transform: rotate(180deg); color: #B08D57; }

/* The glass dropdown panel */
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  z-index: 99;
  list-style: none;
  margin: 0; padding: 6px;

  /* Glassmorphism */
  background: rgba(10, 31, 68, 0.55);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(176, 141, 87, 0.25);
  border-radius: 1rem;
  box-shadow:
    0 20px 50px rgba(6,19,48,0.35),
    0 1px 0 rgba(255,255,255,0.06) inset;

  /* Animation */
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.4,0,0.2,1),
    transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.custom-select.is-open .custom-select__dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Each option */
.custom-select__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  position: relative;
}
.custom-select__option::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #B08D57;
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.custom-select__option:hover {
  background: rgba(176,141,87,0.18);
  color: #fff;
  padding-left: 18px;
}
.custom-select__option:hover::before { opacity: 1; }
.custom-select__option.is-selected {
  background: rgba(176,141,87,0.22);
  color: #B08D57;
  font-weight: 600;
}
.custom-select__option.is-selected::before { opacity: 1; }
.custom-select__option.placeholder { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.custom-select__option.placeholder:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); padding-left: 14px; }
.custom-select__option.placeholder:hover::before { opacity: 0; }

/* ===== Form status ===== */
#formStatus.success { display: block; color: #0a7c3a; background: #e8f7ee; padding: 0.85rem 1rem; border-radius: 0.6rem; }
#formStatus.error { display: block; color: #b91c1c; background: #fee; padding: 0.85rem 1rem; border-radius: 0.6rem; }

/* ===== Hamburger icon ===== */
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger-icon span {
  display: block; width: 24px; height: 2px;
  background: #0A1F44;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
/* When navbar is on dark hero, make bars white */
#navbar:not(.scrolled) .hamburger-icon span { background: #fff; }

/* Open state */
.hamburger-open .hamburger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-open .hamburger-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-open .hamburger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile menu overlay ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  pointer-events: none;

  /* Backdrop */
  background: rgba(6, 19, 48, 0.5);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease;
}
.mobile-menu-overlay.is-open {
  pointer-events: all;
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Slide-down glass panel */
.mobile-menu-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(10, 31, 68, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.25);
  box-shadow: 0 24px 60px rgba(6,19,48,0.45);
  padding: 96px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.is-open .mobile-menu-panel {
  transform: translateY(0);
}

/* Nav items with stagger */
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.80);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition:
    color 0.25s,
    opacity 0.35s cubic-bezier(0.4,0,0.2,1) calc(0.12s + var(--i) * 0.06s),
    transform 0.4s cubic-bezier(0.4,0,0.2,1) calc(0.12s + var(--i) * 0.06s);
}
.mobile-nav-item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #B08D57;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.mobile-nav-item:hover { color: #B08D57; }
.mobile-nav-item:hover::before { opacity: 1; transform: scale(1); }
.mobile-nav-item:last-child { border-bottom: none; }

.mobile-menu-overlay.is-open .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

/* Panel header (logo + close) */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}
.mobile-menu-overlay.is-open .mobile-menu-header { opacity: 1; transform: translateY(0); }

.mobile-close-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.mobile-close-btn:hover { background: #B08D57; color: #061330; transform: rotate(90deg); }

/* Footer row */
.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.5s, transform 0.4s ease 0.5s;
}
.mobile-menu-overlay.is-open .mobile-menu-footer { opacity: 1; transform: translateY(0); }

.mobile-menu-contact { display: flex; align-items: center; }

/* Lang buttons inside overlay */
.lang-btn-m {
  padding: 6px 18px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s;
  cursor: pointer;
}
.lang-btn-m:hover { background: rgba(176,141,87,0.2); color: #B08D57; border-color: rgba(176,141,87,0.4); }
.lang-btn-m.active { background: #B08D57; color: #061330; border-color: #B08D57; }
.lang-btn-m.active { background: #0A1F44 !important; color: #fff !important; }
