/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #0A1628;
  --ink2: #142240;
  --ink3: #1C3158;
  --gold: #BF9540;
  --gold2: #D4AC5C;
  --goldf: rgba(191, 149, 64, 0.13);
  --cream: #F9F6F0;
  --cream2: #F2EDE3;
  --white: #FFFFFF;
  --muted: #5C6E82;
  --light: #8A9BAD;
  --bd: rgba(191, 149, 64, 0.2);
  --bdl: rgba(10, 22, 40, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 90px; /* Slightly taller for better logo display */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  background: rgba(255, 255, 255, 0.767); /* Changed to white background */
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bd);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.n-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

/* Logo image styling - now visible on white background */
.n-logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  background: transparent;
  filter: none; /* Remove shadow that might darken the logo */
}

/* Brand text - now using dark colors for white background */
.n-brand-text {
  display: flex;
  flex-direction: column;
}

.n-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink); /* Dark color for white background */
}

.n-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold); /* Gold accent */
}

/* Navigation links on the right - dark for white bg */
.n-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin-left: auto;
  margin-right: 2rem;
}

.n-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink); /* Dark color for white background */
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.8;
}

.n-links a:hover,
.n-links a.active {
  color: var(--gold);
  opacity: 1;
}

.n-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.n-links a:hover::after,
.n-links a.active::after {
  width: 100%;
}

.n-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(191, 149, 64, 0.3);
  white-space: nowrap;
  border: none;
}

.n-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 149, 64, 0.5);
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
  margin-top: 90px; /* Account for fixed navbar */
}

.orb1 {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191, 149, 64, 0.1) 0%, transparent 65%);
  animation: float 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.orb2 {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(28, 49, 88, 0.9) 0%, transparent 65%);
  pointer-events: none;
}

@keyframes float {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.14) translateY(-25px);
  }
}

.mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(191, 149, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 149, 64, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem 0 4rem; /* Adjusted padding for centering */
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  background: rgba(191, 149, 64, 0.1);
  border: 1px solid rgba(191, 149, 64, 0.28);
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1.8rem;
  animation: up 0.6s ease 0.1s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: ping 1.8s ease infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(191, 149, 64, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(191, 149, 64, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(191, 149, 64, 0);
  }
}

.badge-txt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  animation: up 0.65s ease 0.25s both;
  max-width: 800px;
}

.h1 em {
  display: block;
  font-style: italic;
  color: var(--gold2);
  font-weight: 400;
  font-size: 0.82em;
  margin-top: 3px;
}

.rule {
  width: 55px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem 0;
  animation: up 0.6s ease 0.38s both;
}

.hero-p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 2.4rem;
  animation: up 0.6s ease 0.5s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: up 0.6s ease 0.62s both;
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 22px rgba(191, 149, 64, 0.3);
  transition: all 0.25s;
}

.btn-g:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(191, 149, 64, 0.45);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.9rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.25s;
}

.btn-o:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(191, 149, 64, 0.05);
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  overflow: hidden;
}

.hp {
  position: relative;
  width: 90%;
  max-width: 500px;
  animation: up 0.9s ease 0.3s both;
}

.hp img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hp-vignette {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to top, var(--ink) 0%, rgba(10, 22, 40, 0.25) 38%, transparent 62%),
    linear-gradient(to right, var(--ink) 0%, transparent 18%);
  pointer-events: none;
  border-radius: 20px;
}

.hp-line {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: -4px;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hfc {
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(191, 149, 64, 0.28);
  backdrop-filter: blur(18px);
  border-radius: 10px;
  padding: 12px 18px;
  animation: up 0.7s ease 1s both;
}

.hfc-num {
  font-family: 'Cormorant', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hfc-lbl {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.gline {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}

/* ===== UTILITY CLASSES ===== */
.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.sh {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}

.sh.w {
  color: #fff;
}

.sp {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
}

/* Reveal Animation */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.12s;
}

.d2 {
  transition-delay: 0.24s;
}

.d3 {
  transition-delay: 0.36s;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--white);
  padding: 8rem 6%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.about-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink2);
  box-shadow: 0 28px 70px rgba(10, 22, 40, 0.2);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s;
}

.about-photo:hover img {
  transform: scale(1.03);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 100%);
}

.po-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.po-title {
  font-family: 'Cormorant', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-top: 3px;
}

/* Placeholder image style */
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(160deg, var(--ink2), var(--ink3));
}

.ph-ico {
  font-size: 3rem;
  opacity: 0.25;
}

.ph-txt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 0 1rem;
}

.about-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink2);
  line-height: 1.65;
  padding: 1.2rem 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
}

.about-p {
  font-size: 0.94rem;
  line-height: 1.92;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

/* ===== JOURNEY SECTION ===== */
.journey {
  background: var(--ink);
  padding: 7rem 6%;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.journey-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 6/3;
  background: var(--ink2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.journey-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.jp-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 5px;
  z-index: 2;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.tl-item {
  display: flex;
  gap: 1.4rem;
  padding: 1.3rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.tl-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.tl-year {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  min-width: 56px;
  flex-shrink: 0;
  white-space: nowrap;
}

.tl-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.tl-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--cream2);
  padding: 8rem 6%;
}

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--bdl);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.28s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.11);
  border-color: rgba(191, 149, 64, 0.3);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-n {
  font-family: 'Cormorant', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(145, 114, 52, 0.774);
  line-height: 1;
  margin-bottom: 0.8rem;
  user-select: none;
}

/* Update the service icon styles for SVG */
.svc-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), var(--ink3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
}

.svc-ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold2);
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.svc-card:hover {
  stroke: var(--ink);
}

.svc-title {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.svc-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--muted);
}

.svc-list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bdl);
  list-style: none;
}

.svc-list li {
  font-size: 0.76rem;
  color: var(--light);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.5;
}

.svc-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--ink2);
  padding: 8rem 6%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.c-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}

.c-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bd);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.22s;
}

.c-row:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold2);
  transform: translateX(4px);
}

.c-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(191, 149, 64, 0.08);
  border: 1px solid rgba(191, 149, 64, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
}

.c-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold2);
  fill: none;
  stroke-width: 2;
}

.c-ico.fb svg {
  fill: none;
  stroke: var(--gold2);
}

.c-lbl {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.c-val {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

.form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.form-title {
  font-family: 'Cormorant', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--light);
  margin-bottom: 1.8rem;
}

.fg {
  margin-bottom: 1.1rem;
}

.fg label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--bdl);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--light);
}

.fg select {
  appearance: none;
  cursor: pointer;
}

.fg textarea {
  resize: vertical;
  min-height: 95px;
}

.fg-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-sub {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(191, 149, 64, 0.28);
  transition: all 0.25s;
}

.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(191, 149, 64, 0.4);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.68rem;
  color: var(--light);
  margin-top: 10px;
}

/* ===== FOOTER - PROFESSIONAL, CLEAN, MODERN ===== */
footer {
  background: #ffffff;
  border-top: 1px solid #eaeef2;
  padding: 3.5rem 0 1.5rem;
  color: #1e2b3c;
  font-family: 'Outfit', sans-serif;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Main Footer Grid */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Brand Column */
.footer-brand-col {
  gap: 1.2rem;
}

.footer-logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-name {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e2b3c;
  line-height: 1.3;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #bf9540;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Availability Status */
.availability {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #5a6b7c;
  background: #f8fafc;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  border: 1px solid #eef2f6;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
}

/* Column Headers */
.footer-col h5 {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e2b3c;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.02em;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: #bf9540;
  opacity: 0.5;
}

/* Quick Links Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.9rem;
}

.footer-menu a {
  color: #5a6b7c;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #bf9540;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #5a6b7c;
}

.contact-list li svg {
  stroke: #bf9540;
  flex-shrink: 0;
  opacity: 0.8;
}

.contact-list li span {
  color: #1e2b3c;
}

/* Social Icon */
.social-wrapper {
  margin-top: 0.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e0e7ed;
  border-radius: 50%;
  color: #5a6b7c;
  transition: all 0.2s ease;
  background: #ffffff;
}

.social-icon:hover {
  border-color: #bf9540;
  color: #bf9540;
  background: #fdfaf5;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #eef2f6;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

.copyright {
  color: #8a9bad;
}

.legal-note {
  color: #8a9bad;
  font-style: italic;
  font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  footer {
    padding: 2.5rem 0 1rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-col {
    align-items: center;
    text-align: center;
  }
  
  .footer-col h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-list li {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 6%;
  }

  .hero-left {
    padding: 8rem 0 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-right {
    justify-content: center;
    padding: 0 0 3rem;
  }

  .hp {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }

  .hfc {
    left: 0;
  }

  .about-grid,
  .journey-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo {
    aspect-ratio: 4/3;
    max-width: 100%;
  }

  .n-links {
    display: none;
  }

  nav {
    padding: 0 4%;
  }

  .n-cta {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 700px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .n-links {
    display: none;
  }

  .hero-left {
    padding: 6rem 0 2rem;
  }

  .h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .ft-brand {
    justify-content: center;
  }

  .ft-link a {
    justify-content: center;
  }
}

/* ===== HAMBURGER MENU STYLES ===== */

/* Hide desktop CTA on mobile/tablet */
.desktop-cta {
  display: flex;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 600;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger Animation (when active) */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  padding: 2rem;
  transition: right 0.3s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bdl);
}

.mobile-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover {
  color: var(--gold);
}

/* Mobile Navigation Links */
.mobile-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.mobile-links li {
  margin-bottom: 1.2rem;
}

.mobile-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.mobile-links a:hover,
.mobile-links a:active {
  color: var(--gold);
}

/* Mobile CTA Button */
.mobile-cta-wrapper {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bdl);
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  width: 100%;
  justify-content: center;
}

/* Mobile Social Section */
.mobile-social {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bdl);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bdl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}

.mobile-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-availability {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(191, 149, 64, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mobile-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
  .desktop-cta {
    display: none; /* Hide desktop CTA on tablet/mobile */
  }
  
  .hamburger {
    display: flex; /* Show hamburger on tablet/mobile */
  }
  
  .n-links {
    display: none; /* Hide desktop nav links */
  }
  
  nav {
    padding: 0 5%;
    height: 80px; /* Slightly shorter on mobile */
  }
  
  .n-logo-img {
    width: 55px;
    height: 55px;
  }
  
  .n-name {
    font-size: 0.9rem;
  }
  
  .n-sub {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100%; /* Full width on small phones */
    max-width: 100%;
  }
  
  .mobile-links a {
    font-size: 1rem;
  }
  
  .mobile-social {
    flex-direction: column;
    align-items: flex-start;
  }
}