:root {
  --navy: #060f2e;
  --gold: #d4a017;
  --gold-light: #f4c430;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-dark: rgba(0, 0, 0, 0.4);
  --navy-mid: #1a3270;
  --navy-light: #1e3d85;
  --gold-dark: #a07812;
  --cream: #fdf8ee;
}

/* ══════════════════ WHATSAPP FLOAT ══════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 5000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--gold-light);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 900px) {
  .whatsapp-float {
    bottom: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 25px;
  }
}

.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
  position: fixed !important;
  width: 100% !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

/* ═══════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: #060f2e;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.loader-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  position: relative;
  z-index: 5;
  animation: loaderPulse 3s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo-img {
  width: 250px;
  height: auto;
}

.zodiac-wheel {
  animation: slowRotate 40s linear infinite;
  transform-origin: 110px 105px;
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(201, 152, 26, 0.2));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(201, 152, 26, 0.4));
  }
}

.loader-rings-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 152, 26, 0.25);
  animation: expandRing 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.loader-ring:nth-child(2) {
  animation-delay: 1.3s;
}

.loader-ring:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes expandRing {
  0% {
    width: 100px;
    height: 100px;
    opacity: 0;
    transform: scale(0.8);
  }

  20% {
    opacity: 0.6;
  }

  100% {
    width: 450px;
    height: 450px;
    opacity: 0;
    transform: scale(1.2);
  }
}

.loader-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.loader-text {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: none;
  animation: fadeInUp 1s ease 0.2s both;
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(201, 152, 26, 0.15);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loadingBar 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes loadingBar {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(13, 33, 81, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-img {
  height: 65px;
  /* Perfect size for the flat professional banner */
  width: auto;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

/* Hide old text elements if image includes them */
.nav-logo-text {
  display: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  cursor: pointer;
  z-index: 10000;
  padding: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #060f2e;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #060f2e;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-menu-close:active {
  transform: scale(0.8) rotate(180deg);
  background: var(--white);
  color: var(--gold);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.mobile-nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.mobile-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold);
}

.mobile-nav-links a:active {
  color: var(--gold);
  transform: scale(1.2);
  letter-spacing: 5px;
}

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

.mobile-nav-links a.active {
  color: var(--gold);
}

.mobile-nav-links a.active::after {
  width: 80%;
}

.mobile-menu-cta {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   PAGES
═══════════════════════════════════════════ */
.page {
  display: block;
}

/* ═══════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════ */

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0a1a45 0%, #0d2151 40%, #162860 70%, #0d2151 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  background: var(--gold-light);
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.4);
  }
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 152, 26, 0.08);
  animation: slowSpin var(--spd, 40s) linear infinite;
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge span {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-badge-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-badge-line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* CAROUSEL */
.hero-carousel {
  position: relative;
  height: 200px;
  overflow: visible;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.5s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
}

.carousel-slide.exit {
  opacity: 0;
  transform: translateY(-50%) translateY(-30px);
}

.carousel-slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6vw, 62px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  width: 100%;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.carousel-slide h1 em {
  display: inline-block;
}

.shine-gold {
  background: linear-gradient(to right,
      #c9981a 0%,
      #e8c14a 25%,
      #ffffff 50%,
      #e8c14a 75%,
      #c9981a 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  display: inline-block;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.1s both;
}

.btn-primary {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 152, 26, 0.3);
}

.btn-outline {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  padding: 15px 36px;
  border: 1px solid rgba(201, 152, 26, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(201, 152, 26, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
  animation: fadeInUp 1s ease 1.3s both;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 152, 26, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator span {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(201, 152, 26, 0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* Stats Section */
.stats-section {
  background: var(--navy);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(201, 152, 26, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-emoji {
  font-size: 44px;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(201, 152, 26, 0.5));
  animation: floatEmoji 3s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-emoji {
  animation-delay: 0.5s;
}

.stat-item:nth-child(3) .stat-emoji {
  animation-delay: 1s;
}

.stat-item:nth-child(4) .stat-emoji {
  animation-delay: 1.5s;
}

@keyframes floatEmoji {

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

  50% {
    transform: translateY(-6px);
  }
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* Services Preview */
.services-preview {
  padding: 100px 60px;
  background: var(--cream);
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em,
.page-hero h1 span,
.page-hero h1 em,
.carousel-slide h1 em,
.carousel-slide h1 span {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(to right,
      #c9981a 0%,
      #e8c14a 25%,
      #ffffff 50%,
      #e8c14a 75%,
      #c9981a 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  display: inline-block;
}

.section-desc {
  font-size: 18px;
  color: #555;
  font-weight: 300;
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 60px;
}

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

.service-card {
  background: var(--navy);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  text-decoration: none;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

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

.service-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #c9981a 0%, #e8c14a 40%, #ffffff 50%, #e8c14a 60%, #c9981a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(201, 152, 26, 0.5));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon,
.service-card:hover .service-icon-img,
.service-full-card:hover .service-icon-img {
  transform: translateY(-12px) scale(1.1) rotate(-2deg);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold-light);

  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.service-card .arrow {
  margin-top: 24px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Testimonial */
.testimonial-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1a45 100%);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 300px;
  color: rgba(201, 152, 26, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 152, 26, 0.15);
  padding: 36px 30px;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(201, 152, 26, 0.4);
}

.stars {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);

}

.author-name {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.author-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.page-hero {
  min-height: 55vh;
  background: linear-gradient(160deg, #0a1a45 0%, #0d2151 60%, #162860 100%);
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  font-weight: 400;

  line-height: 1.1;
  max-width: 100%;
  overflow-wrap: break-word;
}

.page-hero h1 span {
  display: inline-block;
  color: var(--gold-light);
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

.breadcrumb {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.breadcrumb span {
  color: var(--gold);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

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

.about-story {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-visual-bg {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 152, 26, 0.1), rgba(201, 152, 26, 0.03));
  border: 1px solid rgba(201, 152, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

.about-visual-bg::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 152, 26, 0.15);
  animation: slowSpin 30s linear infinite;
}

.about-visual-emoji {
  font-size: 100px;
  filter: drop-shadow(0 8px 30px rgba(201, 152, 26, 0.4));
  animation: floatEmoji 4s ease-in-out infinite;
}

.about-text .section-title {
  margin-bottom: 12px;
}

.about-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--navy);
  font-weight: 500;
}

.about-highlight {
  margin: 30px 0;
  padding: 24px 30px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 152, 26, 0.05);
}

.about-highlight blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);

  line-height: 1.6;
}

/* Values */
.values-section {
  background: var(--navy);
  padding: 100px 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  padding: 40px 28px;
  border: 1px solid rgba(201, 152, 26, 0.15);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 152, 26, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.value-card:hover {
  border-color: rgba(201, 152, 26, 0.5);
  transform: translateY(-4px);
}

.value-card:hover::after {
  opacity: 1;
}

.value-icon {
  font-size: 52px;
  display: block;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #c9981a 0%, #e8c14a 50%, #c9981a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 16px rgba(201, 152, 26, 0.5));
}

.value-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Journey / Timeline */
.journey-section {
  padding: 100px 60px;
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid rgba(201, 152, 26, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);

  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.timeline-dot {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin: 0 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(201, 152, 26, 0.1);
  overflow: hidden;
}

.timeline-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.85);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.services-full {
  padding: 100px 60px;
  background: var(--cream);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid rgba(201, 152, 26, 0.15);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.service-full-card:hover::before {
  height: 100%;
}

.service-full-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.service-full-emoji {
  font-size: 60px;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(201, 152, 26, 0.5));
  transition: transform 0.4s;
}

.service-full-card:hover .service-full-emoji {
  transform: scale(1.1) rotate(-8deg);
}

.service-full-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);

  margin-bottom: 12px;
}

.service-full-card .gold-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  background: rgba(201, 152, 26, 0.1);
  padding: 4px 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-full-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 14px;
  color: #555;
  padding-left: 16px;
  position: relative;
}

.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 3px;
}

/* Process */
.process-section {
  background: var(--navy);
  padding: 100px 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.process-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.process-icon-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: block;
  border: 2px solid rgba(201, 152, 26, 0.3);
  padding: 5px;
  background: radial-gradient(circle, rgba(201, 152, 26, 0.15) 0%, transparent 70%);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.process-step-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.process-step:hover .process-icon-img {
  transform: translateY(-12px) scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 152, 26, 0.2);
}



.process-step h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* Pricing */
.pricing-section {
  padding: 100px 60px;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  border: 1px solid rgba(201, 152, 26, 0.2);
  padding: 44px 32px;
  background: var(--white);
  position: relative;
  transition: transform 0.3s;
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--gold);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 16px;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.value-icon-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover .value-icon-img {
  transform: translateY(-10px) scale(1.1);
}

.pricing-emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(201, 152, 26, 0.4));
}

.pricing-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-name {
  color: var(--gold-light);
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--navy);

  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

.pricing-period {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 30px;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-list {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 152, 26, 0.08);
  font-size: 14px;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.pricing-card.featured .pricing-list li {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.06);
}

.pricing-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 11px;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-section {
  padding: 100px 60px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  padding-top: 10px;
}

.contact-info p {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(201, 152, 26, 0.15);
  transition: border-color 0.3s;
}

.contact-item:hover {
  border-color: rgba(201, 152, 26, 0.4);
}

.contact-item-icon {
  font-size: 32px;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(201, 152, 26, 0.4));
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

.contact-item-sub {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--navy);
  padding: 50px 44px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold-light);

  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 152, 26, 0.2);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--navy);
  color: var(--white);
}

.form-textarea {
  resize: none;
  height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.2;
}

.submit-wrap .icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.submit-wrap span:not(.icon) {
  font-size: 14px;
  font-weight: 700;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 152, 26, 0.3);
}

/* Map-like block */
.map-section {
  background: var(--navy);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-visual {
  height: 280px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 152, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 152, 26, 0.08), transparent 70%);
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 152, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 152, 26, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: floatEmoji 3s ease-in-out infinite;
}

.map-pin span:first-child {
  font-size: 60px;
  filter: drop-shadow(0 4px 20px rgba(201, 152, 26, 0.6));
}

.map-pin span:last-child {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.map-info {
  color: var(--white);
}

.map-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold-light);

  margin-bottom: 20px;
}

.map-info p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 300;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.hour-item {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 152, 26, 0.1);
}

.hour-day {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hour-time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #060f2e;
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 152, 26, 0.1);
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 20px;
  max-width: 280px;
}

.footer-col {
  margin-top: 15px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-bottom p {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin: 0;
}

.crafted-link {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.crafted-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--gold);
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

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

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Divider ornament */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-gem {
  color: var(--gold);
  font-size: 10px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {

  #navbar,
  #navbar.scrolled {
    padding: 10px 15px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    gap: 8px;
  }

  .nav-logo-img {
    height: 40px;
  }



  .mobile-nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .hero,
  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .page-hero {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
    text-align: center;
  }

  .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    width: 100%;
  }

  .page-hero p {
    font-size: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .section-content,
  .about-story,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-section,
  .services-preview,
  .services-full,
  .pricing-section,
  .journey-section,
  .testimonial-section,
  .values-section,
  .process-section,
  .map-section {
    padding: 60px 24px;
  }

  footer {
    padding: 60px 24px 30px;
  }

  .stats-section {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 152, 26, 0.1);
  }

  .services-grid,
  .testimonial-grid,
  .values-grid,
  .process-steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .about-story,
  .contact-section,
  .map-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story,
  .values-section,
  .journey-section {
    padding: 60px 20px;
  }

  .about-visual-bg {
    width: 280px;
    height: 280px;
  }

  .about-text {
    text-align: center;
  }

  .about-highlight blockquote {
    font-size: 18px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 20px 0;
  }

  /* Timeline Mobile Fix */
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
    padding-left: 50px;
    text-align: left;
  }

  .timeline-dot {
    position: absolute;
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100% !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 20px auto 0;
  }


  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

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

  .contact-form-wrap {
    padding: 40px 24px;
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }

  .form-group {
    margin-bottom: 18px;
  }


  .form-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 15px;
    font-size: 15px;
  }

  .form-submit {
    padding: 18px 15px;
  }

  .submit-wrap {
    gap: 4px;
    letter-spacing: 3px;
  }

  .submit-wrap .icon {
    font-size: 18px;
  }

  .submit-wrap span:not(.icon) {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .nav-logo-text .sub {
    display: none;
  }

  .nav-logo {
    gap: 6px;
  }

  .nav-cta {
    padding: 6px 8px;
    font-size: 7.5px;
  }
}