﻿:root {
  --white: #ffffff;
  --text-primary: #f0f0f0;
  --text-secondary: #cccccc;
  --accent: #E6C99A;
  --accent-gold: #d4af37;
  --accent-sandal: #e6c99a;
  --primary-clr: #000000;
  --secondary-clr: #ffffff;
  --logo-transition: 0.4s;
}

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

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap");

body {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  background-color: #0d1117;
  overflow-x: hidden;
}

/* Headings & display text use Bebas Neue for strong, condensed display */
h1,
h2,
h3,
h4,
h5,
h6,
.display {
  font-family: 'Bebas Neue', cursive;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: normal;
}

/* ===== NAVBAR STYLES ===== */
header {
  position: fixed;
  top: 3%;
  width: 100%;
  z-index: 10;
  background: transparent;
}

header .navbar {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 11;
}

header .nav-logo {
  height: 80px;
}

header .nav-logo img {
  height: 100%;
  width: auto;
  transition: transform 0.3s ease;
}

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

header .social-icon {
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  color: var(--secondary-clr);
  transition: all 0.3s ease;
  text-decoration: none;
}

header .social-icon:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  header .navbar {
    top: 20px;
  }

  header .social-icon {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  }
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ===== LOGO HAMBURGER MENU ===== */
.logo-container {
  position: fixed;
  left: 5%;
  top: 90%;
  transform: translateY(-50%);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.logo-half {
  position: absolute;
  max-width: 30px;
  max-height: 30px;
  z-index: 3;
}

.logo-left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.logo-right {
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu.open~.logo-container .logo-right {
  transform: translateX(20px);
  opacity: 0;
}

.menu:not(.open)~.logo-container .logo-right {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 600px) {
  .logo-container {
    left: 10px;
    width: 56px;
    height: 56px;
  }

  .logo-half {
    max-width: 34px;
    max-height: 34px;
  }

  .logo-left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo-right {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo-menu-border {
    width: 56px;
    height: 56px;
  }
}

.logo-menu-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.logo-menu-glow {
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 25 138.36;
  stroke-dashoffset: 163.36;
  animation: logoMenuGlowAnim 2.5s linear infinite;
  stroke-linecap: round;
}

@keyframes logoMenuGlowAnim {
  0% {
    stroke-dashoffset: 163.36;
    opacity: 0.8;
  }

  50% {
    stroke-dashoffset: 80;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.8;
  }
}

/* ===== SLIDE-OUT MENU ===== */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 70vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 12;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
}

.menu.open {
  transform: translateX(0);
}

.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu li {
  margin: 1.5rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu.open li {
  opacity: 1;
  transform: translateY(0);
}

.menu a {
  position: relative;
  color: var(--secondary-clr);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.menu a:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.menu a:hover::after {
  width: 100%;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.menu-close img {
  width: 100%;
  height: 100%;
}

.menu-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.menu-close:active {
  transform: scale(0.95) rotate(90deg);
}

.contact-icons {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  margin-top: 0.5em;
}

.icon-gold {
  color: var(--accent-gold);
  font-size: 1.5rem;
  text-decoration: none;
}

/* ===== STACKED PANELS CONTAINER ===== */
.panels-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  will-change: height;
  overflow: hidden;
  /* border-bottom and box-shadow removed for smoother/cleaner look */
}

.panel-inner {
  position: absolute;
  /* Keep content fixed in viewport to prevent moving up with the panel shrink */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Ensure backgrounds and flex layouts work as before */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Stack order: panel-1 on top, panel-9 at bottom */
.panel-1 {
  z-index: 9;
}

.panel-2 {
  z-index: 8;
}

.panel-3 {
  z-index: 7;
}

.panel-4 {
  z-index: 6;
}

.panel-5 {
  z-index: 5;
}

.panel-6 {
  z-index: 4;
}

.panel-7 {
  z-index: 3;
}

.panel-8 {
  z-index: 2;
}

.panel-9 {
  z-index: 1;
}

.panel-10 {
  z-index: 0;
  /* Footer doesn't need to shrink, but having the border is fine */
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
    url('https://images.unsplash.com/photo-1617478755490-e21232a5eeaf?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYxNzU1NjM5NA&ixlib=rb-1.2.1&q=75&w=1920') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

/* ===== SECTION 2: DREAMS SECTION ===== */
.dreams-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)),
    url('https://images.unsplash.com/photo-1617128734662-66da6c1d3505?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYxNzc3NTM3MA&ixlib=rb-1.2.1&q=75&w=1920') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.dreams-content {
  max-width: 950px;
  animation: fadeIn 1.5s ease-out;
}

.dreams-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dreams-icon {
  font-style: normal;
  font-size: 1.5em;
}

.dreams-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ===== SECTION 3: TRAFFIC ISN'T THE CURE ===== */
.traffic-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  /* Harbor/dock background similar to reference image */
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYxNzU2MDgzMQ&ixlib=rb-1.2.1&q=75&w=1920') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.traffic-content {
  max-width: 950px;
  animation: fadeIn 1.5s ease-out;
}

.traffic-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.traffic-icon {
  font-style: normal;
  font-size: 1em;
}

.traffic-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto 2rem auto;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.pixi-insight {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.insight-label {
  color: var(--accent-gold);
  font-weight: 500;
  font-style: normal;
}

/* Responsive for Traffic Section */
@media (max-width: 768px) {
  .traffic-title {
    font-size: 1.8rem;
  }

  .traffic-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .pixi-insight {
    font-size: 0.85rem;
  }
}

/* ===== SECTION 4: UX/UI WAS... ===== */
.ux-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  /* Mountain background similar to the reference */
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1617438817509-70e91ad264a5?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYxNzU2MDk4Mg&ixlib=rb-1.2.1&q=75&w=1920') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.ux-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
  /* Push content slightly up to center visually */
  margin-top: 0;
}

.ux-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ux-icon {
  font-size: 0.9em;
  transform: rotate(-10deg);
}

/* Glassmorphism Cards Grid */
.ux-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.ux-card {
  background: rgba(255, 255, 255, 0.1);
  /* Reduced blur for crisper cards */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
  min-height: 250px;
}

.ux-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.ux-card .card-icon {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.ux-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ux-card p {
  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer Note */
.pixi-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .ux-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .ux-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }

  .ux-card {
    min-height: auto;
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }

  .ux-card .card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .ux-card h3 {
    font-size: 1rem;
    gap: 0.3rem;
  }

  .ux-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .ux-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .pixi-note {
    font-size: 0.75rem;
    margin-top: 1rem;
  }
}

/* ===== SECTION 4: QUESTIONS SECTION ===== */
.questions-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  /* Stone structure water background */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1617141636403-f511e2d5dc17?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYxODAzMjc4Mw&ixlib=rb-1.2.1&q=75&w=1920') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.questions-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
  margin-top: 0;
}

.questions-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.compass-icon {
  font-size: 0.8em;
  animation: float 6s ease-in-out infinite;
}

.questions-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-weight: 300;
  font-style: italic;
}

/* Flip Card Grid */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  perspective: 1000px;
  /* Essential for 3D flip */
}

/* The Flip Card Container */
.flip-card {
  background-color: transparent;
  min-height: 300px;
  /* Fixed height ensures consistent flipping */
  cursor: pointer;
}

/* The Inner Wrapper (this flips) */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

/* Common Styles for Front and Back */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Front Face */
.flip-card-front h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.4;
}

.flip-card-front .card-icon {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* Back Face */
.flip-card-back {
  background: rgba(255, 255, 255, 0.06);
  transform: rotateY(180deg);
  border-color: rgba(212, 175, 55, 0.3);
}

.flip-card-back p {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Grid for Questions */
@media (max-width: 1024px) {
  .questions-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin: 0 auto;
    gap: 1rem;
  }

  /* Reduce card size and padding for tablet to improve fit */
  .flip-card {
    min-height: 220px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.25rem 1rem;
    gap: 0.6rem;
  }

  .flip-card-front .card-icon {
    font-size: 1.8rem;
  }

  .flip-card-front h3 {
    font-size: 1.1rem;
  }

  .flip-card-back p {
    font-size: 0.95rem;
  }

  .questions-title {
    font-size: 1.9rem;
  }

  .questions-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .questions-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 0.75rem;
  }

  .flip-card {
    min-height: 180px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }

  .flip-card-front .card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .flip-card-front h3 {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .flip-card-back p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .questions-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .questions-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
}

@keyframes float {

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

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

/* ===== SECTION 5: PIXI SECTION ===== */
.pixi-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  /* Dark abstract background */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1749680287741-243118ed6b2c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.pixi-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.pixi-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.diamond-icon {
  font-size: 0.9em;
  animation: float 3s ease-in-out infinite;
}

/* Cards Container */
.pixi-cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.pixi-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  min-width: 280px;
  max-width: 320px;
  flex: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pixi-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.pixi-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.pixi-card .card-icon {
  font-size: 1.8rem;
}

.pixi-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}

.pixi-card p {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Messy Before Card */
.before-card {
  transform: rotate(-3deg);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  /* Dimmer */
}

.before-card .card-header h3,
.before-card p {
  opacity: 0.7;
  filter: blur(0.4px);
}

/* Clear After Card */
.after-card {
  transform: rotate(2deg) scale(1.05);
  border: 1px solid rgba(255, 215, 0, 0.5);
  /* Gold clean border */
  background: rgba(255, 255, 255, 0.15);
  /* Brighter */
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.after-card .card-header .card-icon {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
}

/* Pixi Character */
.pixi-character {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pixi-character img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  animation: float 4s ease-in-out infinite;
}

/* Footer Text */
.pixi-footer {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .pixi-cards-container {
    gap: 2rem;
  }

  .pixi-character img {
    width: 150px;
  }
}

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

  .pixi-card {
    max-width: 100%;
    width: 100%;
    min-width: auto;
    padding: 1.25rem 1rem;
  }

  .pixi-card .card-icon {
    font-size: 1.4rem;
  }

  .pixi-card h3 {
    font-size: 1.2rem;
  }

  .pixi-card p {
    font-size: 0.85rem;
  }

  /* Reorder for mobile: Before Card → Pixi → After Card */
  .before-card {
    order: 1;
    transform: none;
  }

  .pixi-character {
    order: 2;
  }

  .after-card {
    order: 3;
    transform: none;
  }

  .pixi-character img {
    width: 100px;
  }

  .pixi-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .pixi-footer {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}

/* ===== SECTION 6: BLUEPRINT EXPERIENCE ===== */
.blueprint-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1617412327653-c29093585207?crop=entropy&cs=srgb&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYxNzU2MDgzMQ&ixlib=rb-1.2.1&q=75&w=1920') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.blueprint-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.blueprint-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.sparkle-icon {
  font-size: 0.9em;
  color: gold;
  animation: shine 2s infinite alternate;
}

.blueprint-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Container for Grid + Character */
.blueprint-container {
  display: flex;
  align-items: flex-end;
  /* Align bottom */
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Grid Layout for Cards */
.blueprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  flex: 1;
}

/* Top Card spanning full width */
.card-large {
  grid-column: 1 / -1;
  min-height: 150px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.card-small {
  min-height: 150px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.blueprint-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blueprint-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.blueprint-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.blueprint-card p {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Pixi Character Position */
.blueprint-pixi {
  flex-shrink: 0;
  width: 200px;
  z-index: 2;
  margin-left: -30px;
}

/* Slight overlap for depth */
/* ===== SECTION 7: SURPRISE GIFT FORM ===== */
.gift-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url('https://images.unsplash.com/photo-1519608487953-e999c86e7455?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

.gift-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  max-width: 1100px;
}

/* Left Side - Pixi */
.gift-left {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.pixi-gift-wrapper {
  position: relative;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pixi-gift-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
  animation: float 4s ease-in-out infinite;
}

.pixi-speech-bubble {
  background: rgba(30, 30, 40, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  margin-top: -20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
  backdrop-filter: blur(5px);
}

.pixi-speech-bubble::before {
  content: '';
  position: absolute;
  bottom: 100%;
  /* Arrow pointing up towards Pixi if positioned below, or adjust */
  left: 20px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent rgba(30, 30, 40, 0.9) transparent;
  display: none;
  /* Hidden simplified bubble style */
}

/* Right Side - Form */
.gift-right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.gift-form-card {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.gift-title {
  font-family: 'Playfair Display', serif;
  color: gold;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.gift-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 2rem;
}

.gift-subtitle .arrow {
  margin: 0 0.3rem;
  color: gold;
}

.pixi-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1rem 1rem 2.8rem;
  /* Space for icon */
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(0, 0, 0, 0.6);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  color: gold;
  opacity: 0.7;
  font-size: 1rem;
}

.gift-btn {
  background: linear-gradient(135deg, #e6c99a, #d4af37);
  border: none;
  border-radius: 30px;
  padding: 1rem;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gift-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f0d5a8, #e5c14d);
}

.gift-footer-note {
  text-align: center;
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
  .gift-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .gift-left,
  .gift-right {
    justify-content: center;
    flex: none;
    width: 100%;
  }

  .pixi-gift-wrapper {
    width: 180px;
    flex-direction: row;
    gap: 0.75rem;
  }

  .pixi-speech-bubble {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    margin-top: 0;
    margin-left: -15px;
  }

  .gift-form-card {
    padding: 1.5rem;
    max-width: 400px;
  }

  .gift-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .gift-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .input-group input,
  .input-group textarea {
    font-size: 0.85rem;
    padding: 0.85rem 0.85rem 0.85rem 2.5rem;
  }

  .input-icon {
    font-size: 0.9rem;
    left: 0.85rem;
    top: 0.95rem;
  }

  .gift-btn {
    font-size: 0.9rem;
    padding: 0.85rem;
  }

  .gift-footer-note {
    font-size: 0.7rem;
    margin-top: 1rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .gift-section {
    padding: 0 1rem;
  }

  .gift-container {
    gap: 1rem;
  }

  .pixi-gift-wrapper {
    width: 140px;
    gap: 0.5rem;
  }

  .pixi-speech-bubble {
    font-size: 0.75rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
  }

  .gift-form-card {
    padding: 1.25rem;
    border-radius: 15px;
  }

  .gift-title {
    font-size: 1.2rem;
  }

  .gift-subtitle {
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
  }

  .input-group input,
  .input-group textarea {
    font-size: 0.8rem;
    padding: 0.75rem 0.75rem 0.75rem 2.2rem;
    border-radius: 8px;
  }

  .input-icon {
    font-size: 0.85rem;
    left: 0.75rem;
    top: 0.85rem;
  }

  .gift-btn {
    font-size: 0.85rem;
    padding: 0.75rem;
    border-radius: 25px;
  }

  .gift-footer-note {
    font-size: 0.65rem;
  }
}

.blueprint-pixi img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.6));
  animation: float 5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    text-shadow: 0 0 5px gold;
  }

  100% {
    text-shadow: 0 0 20px gold, 0 0 30px orange;
  }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .blueprint-container {
    flex-direction: column;
    align-items: center;
  }

  .blueprint-pixi {
    margin-left: 0;
    margin-top: -1rem;
    width: 150px;
    order: 2;
    /* Move below grid */
  }

  .blueprint-grid {
    width: 100%;
    order: 1;
    gap: 0.75rem;
  }

  .blueprint-card {
    padding: 1rem;
  }

  .card-large,
  .card-small {
    min-height: 120px;
  }

  .card-icon-circle {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .blueprint-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .blueprint-card p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .blueprint-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .blueprint-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
}

/* Responsive - Mobile: Keep 2x1 bento grid */
@media (max-width: 600px) {
  .blueprint-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .card-large {
    grid-column: 1 / -1;
    min-height: 90px;
  }

  .card-small {
    min-height: 100px;
  }

  .blueprint-card {
    padding: 0.75rem;
    border-radius: 10px;
  }

  .card-icon-circle {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .blueprint-card h3 {
    font-size: 0.8rem;
  }

  .blueprint-card p {
    font-size: 0.65rem;
  }

  .blueprint-title {
    font-size: 1.4rem;
  }

  .blueprint-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .blueprint-pixi {
    width: 100px;
    margin-top: -0.5rem;
  }
}

.hero-content {
  max-width: 900px;
  margin-top: -5vh;
  /* Visual adjustment to center vertically with bottom spacing */
  animation: fadeIn 1.5s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Bottom Controls */
.hero-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bottom-left,
.bottom-right {
  flex: 1;
}

.circle-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(5px);
}

.circle-btn:hover {
  transform: scale(1.05);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pill {
  width: 30px;
  height: 50px;
  border: 2px solid #8e806a;
  /* Muted gold/brown similar to image */
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pill::before {
  content: '';
  position: absolute;
  top: 8px;
  /* Start position */
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: #8e806a;
  border-radius: 2px;
  animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
}

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

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

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
    height: 8px;
  }

  50% {
    top: 25px;
    opacity: 0;
    height: 4px;
  }

  100% {
    top: 8px;
    opacity: 0;
    height: 8px;
  }

  /* Reset invisible */
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 1.5rem;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .hero-bottom {
    padding: 1.5rem;
  }

  .bottom-left,
  .bottom-right {
    display: none;
  }

  .scroll-indicator {
    margin-bottom: 2rem;
  }
}

/* ===== SECTION 8: TESTIMONIALS 3D RING ===== */
.testimonials {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.testimonials-bg {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 6rem 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-image: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0.45) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 2.8rem);
  margin: 0 0 1rem;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonial-hint {
  position: absolute;
  left: 50%;
  bottom: 2.5vh;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: 10;
}

.gallery_box {
  transform: rotateX(-8deg);
  transform-style: preserve-3d;
  margin-top: 2.5rem;
}

.gallery_box_outer {
  width: 350px;
  height: 220px;
  position: relative;
  transform: perspective(1000px);
  transform-style: preserve-3d;
}

.gallery_box_in {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  text-align: center;
  color: var(--white);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* Keyboard focus for accessibility */
.gallery_box_outer:focus {
  outline: 3px solid rgba(212, 175, 55, 0.18);
}

/* Testimonials Responsive */
@media (max-width: 600px) {
  .gallery_box_outer {
    width: 60vw;
    height: 48vw;
    max-width: 98vw;
    max-height: 60vw;
  }

  .testimonial-img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .section-heading {
    font-size: 2.2rem;
    margin-top: 6vh;
  }
}

/* ===== SECTION 10: FOOTER ===== */
.footer-section {
  height: 100vh;
  width: 100%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
    url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?crop=entropy&cs=srgb&fm=jpg&q=75&w=1920') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.footer-content {
  max-width: 600px;
  animation: fadeIn 1.5s ease-out;
}

.footer-nav {
  margin-bottom: 2rem;
}

.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
}

.footer-nav a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.nav-divider {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.footer-copyright {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-top: 1.5rem;
}

/* Footer Responsive - Tablet */
@media (max-width: 768px) {
  .footer-nav a {
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.9rem;
  }
}

/* Footer Responsive - Mobile */
@media (max-width: 600px) {
  .footer-section {
    padding: 0 1rem;
  }

  .footer-nav-row {
    gap: 0.3rem;
    margin-bottom: 0.5rem;
  }

  .footer-nav a {
    font-size: 0.8rem;
    padding: 0.2rem 0.3rem;
  }

  .nav-divider {
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
}