@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  /* Colors */
  --primary-green: #0A251C;
  --primary-green-rgb: 10, 37, 28;
  --card-bg-green: #11231D;
  --accent-gold: #C5A85A;
  --accent-gold-hover: #B3964C;
  --bg-cream: #F5F4F0;
  --bg-nav-beige: #C4C1B9;
  --text-dark: #1A2E26;
  --text-light: #4A5450;
  --white: #FFFFFF;
  --blue-theme: #2E4157;

  /* Fonts */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", Helvetica, Arial, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--white);
  border: 1px solid var(--accent-gold);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--blue-theme);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--blue-theme);
  color: var(--white);
  border: 1px solid var(--blue-theme);
}

.btn-dark:hover {
  background-color: #2E415700;
  border-color: #2E4157;
  transform: translateY(-2px);
  color: #2E4157;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--blue-theme);
  border: 1px solid var(--blue-theme);
}

.btn-outline-dark:hover {
  background-color: var(--blue-theme);
  color: var(--white);
  transform: translateY(-2px);
}

/* Badge */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(to bottom right, #DCB43C, #C88C28);
  padding: 0.35rem 1.25rem;
  margin-bottom: 1.25rem;
  border-radius: 50px;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 690px;
  margin: 0 auto 4.5rem auto;
}

.section-header h2 {
  font-size: 2.85rem;
  color: var(--blue-theme);
  margin-top: 0.5rem;
}

/* Body loading state */
body.loading {
  overflow: hidden;
  height: 100vh;
}

/* Top brand Header / Sliding Loader */
.top-brand-header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9999;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.top-brand-header.slide-up {
  transform: translateY(-100%);
}

.top-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: introFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

.top-logo-svg,
.top-logo-img {
  width: 215px;
  height: 250px;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

.top-logo-text {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  line-height: 1;
}

.top-logo-subtext {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-top: 0.5rem;
}

.top-heading {
  font-size: 3rem;
  color: var(--blue-theme);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: introFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.5s;
}

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

/* Main Navigation Header */
.main-header {
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  transform: translateY(0);
}

.main-header.scroll-down {
  transform: translateY(-100%);
}

.main-header.scroll-up {
  transform: translateY(0);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 1rem;
  max-width: 1240px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-svg,
.nav-logo-img {
  width: 203px;
  height: 70px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--blue-theme);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  display: inline-block;
  border-radius: 100px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background-color: var(--blue-theme);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  /* Align elements to the bottom as in mockup */
  color: var(--white);
  background-color: var(--blue-theme);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 51%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  padding: 0 4rem 5rem 4rem;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

.hero-heading {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 950px;
}

.hero-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
}

/* About Section */
.about {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
}

.about-images {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: -8rem;
}

.about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 32%;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 420px;
  left: 70px;
}

.about-img-sub {
  position: relative;
  width: 75%;
  margin-left: auto;
  margin-top: 45px;
  z-index: 1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-width: 820px;
}

.about-img-sub::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

.about-images img {
  width: 100%;
  height: auto;
}

.about-content {
  max-width: 90%;
  margin: 0;
}

.about-content h2 {
  font-size: 3.25rem;
  color: var(--blue-theme);
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9625rem;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 1.5rem;
}

/* Values Section (Four Pillars) */
.values {
  padding: 8rem 4rem 12rem 4rem;
  background-color: var(--bg-cream);
}

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

.value-card {
  background-color: var(--blue-theme);
  ;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 470px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.25rem 1rem 1.2rem 1rem;
  transition: var(--transition-smooth);
}

.value-card:nth-child(even) {
  margin-top: 120px;
}

.value-card:hover {
  box-shadow: 0 20px 40px rgba(10, 37, 28, 0.15);
  transform: translateY(-10px);
}

.value-info {
  padding: 0;
  margin-bottom: 1.5rem;
}

.value-info h3 {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.value-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.6;
}

.value-img-wrapper {
  height: 230px;
  width: 100%;
  overflow: hidden;
}

.value-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.value-card:hover .value-img-wrapper img {
  transform: scale(1.05);
}

/* Currently Building Section */
.launch {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.launch-grid {
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.launch-image {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.launch-image img {
  width: 100%;
  /*height: 500px;*/
  object-fit: cover;
}

.launch-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-left: 0;
}

.launch-content h2 {
  font-size: 3.25rem;
  color: var(--blue-theme);
  margin-bottom: 2rem;
  font-weight: 400;
}

.launch-content p {
  color: var(--text-light);
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Legacy Stats Section (Thirty Years, In Five Numbers) */
.stats {
  position: relative;
  padding: 8rem 4rem;
  color: var(--white);
  background-color: var(--blue-theme);
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.stats-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31);
  z-index: 2;
}

.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-container {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  margin: 0 auto;
}

.stats-container .section-header {
  text-align: left;
  margin-left: 0;
  margin-bottom: 0;
}

.stats-layout-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: .5rem;
  height: 930px;
  position: relative;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 1 / 1;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.stat-unit {
  font-size: 3.5rem;
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  margin-top: -0.25rem;
}

.stat-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 300;
}

/* Placements based on mockup */
.stat-pos-1 {
  grid-column: 10 / 13;
  grid-row: 2 / 6;
}

.stat-pos-2 {
  grid-column: 6 / 9;
  grid-row: 5 / 9;
}

.stat-pos-3 {
  grid-column: 2 / 5;
  grid-row: 8 / 12;
}

.stat-pos-4 {
  grid-column: 10 / 13;
  grid-row: 8 / 12;
}

/* Call To Action (Tea is on Us) */
.cta {
  padding: 6rem 4rem;
  background-color: var(--white);
}

.cta-box {
  background-color: var(--bg-cream);
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.cta-box h2 {
  font-size: 3rem;
  color: var(--blue-theme);
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: var(--font-serif);
}

.cta-text-side {
  flex: 1.2;
}

.cta-text-side p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
}

.cta-btns-side {
  flex: 1.3;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Footer Section */
footer {
  background-color: var(--blue-theme);
  color: var(--white);
  padding: 6rem 4rem 2rem 4rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 22% 78%;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  padding-right: 3rem;
}

.footer-logo-img {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.footer-content-wrap {
  display: flex;
  flex-direction: column;
}

.footer-info-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  margin-bottom: 1rem;
}

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

.footer-links-col {
  padding-right: 4rem;
}

.footer-contact-col {
  padding-left: 4rem;
}

.footer-column h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.02em;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

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

.footer-contact-col li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.6;
}

.contact-label {
  font-weight: 700;
  color: var(--white);
  min-width: 85px;
  flex-shrink: 0;
  font-family: var(--font-sans);
}

.contact-sep {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.contact-value {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
}

.footer-contact-col li a.contact-value:hover {
  color: var(--white);
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.copyright-text {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.footer-social {
  margin-top: 2rem;
}

.social-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon-link:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* Animations Trigger Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Media Queries */



@media (max-width: 1240px) {
  .stat-card {
    padding: 1.25rem;
  }

  .stat-num,
  .stat-unit {
    font-size: 3.25rem;
  }
}

@media (max-width: 1078px) {
  .stat-card {
    padding: 1rem;
  }

  .stat-num,
  .stat-unit {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card {
    height: 480px;
  }

  .stats-layout-grid {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 250px;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 992px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .hero-content {
    padding: 0 2rem 4rem 2rem;
  }

  .hero-heading {
    font-size: 2.75rem;
  }

  .about-grid,
  .launch-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-images {
    justify-content: center;
  }

  .cta-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .cta-btns-side {
    justify-content: flex-start;
    width: 100%;
  }

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

  .footer-content-wrap {
    width: 100%;
  }

  .footer-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .top-brand-header {
    padding: 3rem 15px;
  }

  .top-heading {
    font-size: 2.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-nav-beige);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

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

  .hero {
    height: 100vh;
  }

  .hero-content {
    padding: 0 15px 3rem 15px;
  }

  .hero-heading {
    font-size: 2.25rem;
  }

  .about,
  .values,
  .launch,
  .stats,
  .cta,
  footer {
    padding: 5rem 15px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    height: auto;
  }

  .value-img-wrapper {
    height: 200px;
  }

  .stats-layout-grid {
    flex-direction: column;
  }

  .stat-card {
    flex: 1 1 100%;
  }

  .cta-box {
    padding: 3rem 15px;
  }

  .cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .cta-btns-side {
    flex-direction: column;
    white-space: normal;
  }

  .cta-btns-side .btn {
    width: 100%;
  }

  .footer-info-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .footer-links-col,
  .footer-contact-col {
    padding: 0;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding-right: 0;
  }

  .footer-social {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-column h3 {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
  }

  .footer-column ul {
    align-items: center;
    gap: 0.85rem;
  }

  .footer-contact-col li {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .contact-label {
    min-width: auto;
  }

  .contact-value {
    text-align: center;
  }

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

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ==========================================================================
   Our Legacy Page Styles
   ========================================================================== */

/* Phase 1 Styles */
.legacy-phase-1 {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.phase-1-container {
  display: grid;
  grid-template-columns: 3fr 3.2fr 3.8fr;
  /* approx 30%, 32%, 38% split */
  gap: 3.5rem;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  align-items: start;
}

.phase-1-col-1 {
  min-height: 1px;
}

.phase-1-image {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.phase-1-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

.phase-1-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.phase-1-text {
  padding-top: 1.5rem;
}

.phase-1-text p {
  color: var(--text-light);
  font-size: 0.9625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.phase-1-text p:last-child {
  margin-bottom: 0;
}

.phase-1-header {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 58%;
  z-index: 10;
  text-align: left;
}

.phase-1-header h2 {
  font-size: 3.25rem;
  color: var(--blue-theme);
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.15;
}

/* Quote Section */
.legacy-quote {
  padding: 1rem 4rem 7rem;
  background-color: var(--white);
  text-align: center;
}

.quote-container {
  max-width: 1100px;
  margin: 0 auto;
}

.quote-container p {
  font-family: var(--font-serif);
  font-size: 60px;
  line-height: 1.4;
  color: #E2E1DA;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legacy-quote .word {
  display: inline-block;
  white-space: nowrap;
}

.legacy-quote .char {
  display: inline-block;
  background: linear-gradient(to right, #152621 var(--gradient-offset, 0%), #E2E1DA var(--gradient-offset, 0%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Phase 2 Styles */
.legacy-phase-2 {
  position: relative;
  padding: 10rem 4rem;
  color: var(--white);
  overflow: hidden;
  background-color: var(--blue-theme);
  height: 700px;
  display: flex;
  align-items: center;
}

.phase-2-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.phase-2-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(10, 37, 28, 0.1) 0%, rgba(10, 37, 28, 0.2) 100%);
  z-index: 2;
}

.phase-2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-2-container {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.phase-2-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3.5rem 3.2rem;
  max-width: 580px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.phase-2-card h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin: 0.5rem 0 1.5rem 0;
  font-weight: 500;
  line-height: 1.25;
}

.phase-2-card p {
  color: var(--white);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.phase-2-card p:last-child {
  margin-bottom: 0;
}

/* Phase 3 Styles */
.legacy-phase-3 {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.phase-3-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.phase-3-image {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.phase-3-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.phase-3-content {
  padding-left: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.phase-3-header {
  margin-left: -8.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}

.phase-3-header h2 {
  font-size: 3.25rem;
  color: var(--blue-theme);
  margin-top: 0.5rem;
  line-height: 1.15;
}

.phase-3-text {
  display: flex;
  flex-direction: column;
}

.phase-3-text p {
  color: var(--text-light);
  font-size: 0.9625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.phase-3-text p:last-child {
  margin-bottom: 0;
}

/* Phase 4 Styles */
.legacy-phase-4 {
  padding: 8rem 4rem;
  background-color: var(--bg-cream);
  text-align: center;
}

.phase-4-container {
  max-width: 950px;
  margin: 0 auto;
}

.phase-4-header h2 {
  font-size: 2.75rem;
  color: var(--blue-theme);
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
  font-weight: 500;
}

.phase-4-image {
  margin-bottom: 3.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.phase-4-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.phase-4-text p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Why The Aspen Styles */
.legacy-why-aspen {
  position: relative;
  padding: 10rem 4rem;
  color: var(--white);
  overflow: hidden;
  background-color: var(--blue-theme);
  height: 650px;
  display: flex;
  align-items: center;
}

.why-aspen-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.why-aspen-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 37, 28, 0.1) 0%, rgba(10, 37, 28, 0.2) 100%);
  z-index: 2;
}

.why-aspen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-aspen-container {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.why-aspen-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3.5rem 3rem;
  max-width: 580px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.why-aspen-card h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin: 0.5rem 0 1.5rem 0;
  font-weight: 500;
  line-height: 1.25;
}

.why-aspen-card p {
  color: var(--white);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.why-aspen-card p:last-child {
  margin-bottom: 0;
}

/* Responsive Legacy Page */
@media (max-width: 992px) {
  .phase-1-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .phase-1-col-1 {
    display: none;
  }

  .phase-1-image {
    width: 100%;
  }

  .phase-1-image img {
    height: 400px;
  }

  .phase-1-text {
    padding-top: 0;
  }

  .phase-1-header {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .legacy-quote .quote-container p {
    font-size: 1.75rem;
  }

  .phase-2-card,
  .why-aspen-card {
    max-width: 100%;
    padding: 2.5rem 2rem;
  }

  .legacy-phase-2,
  .legacy-why-aspen {
    height: auto;
    padding: 6rem 1.5rem;
  }

  .phase-3-content {
    padding-left: 0;
  }

  .phase-3-header {
    margin-left: 0;
    margin-bottom: 2rem;
  }

  .phase-3-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
  }

  .phase-4-image img {
    height: 350px;
  }

  .phase-4-header h2,
  .phase-3-header h2,
  .phase-1-header h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .legacy-phase-1,
  .legacy-phase-2,
  .legacy-phase-3,
  .legacy-phase-4,
  .legacy-why-aspen {
    padding-left: 15px;
    padding-right: 15px;
  }

  .legacy-quote {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ==========================================================================
   Our Projects Page Styles
   ========================================================================== */

/* Projects Quote */
.projects-quote {
  padding: 1rem 4rem 7rem;
  background-color: var(--white);
  text-align: center;
}

.projects-quote p {
  font-family: var(--font-serif);
  font-size: 60px;
  color: #E2E1DA;
  font-weight: 600;
  line-height: 1.4;
}

.projects-quote .word {
  display: inline-block;
  white-space: nowrap;
}

.projects-quote .char {
  display: inline-block;
  background: linear-gradient(to right, #152621 var(--gradient-offset, 0%), #E2E1DA var(--gradient-offset, 0%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bangalore Launch specific override for Projects Page */
.projects-bangalore-launch {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.projects-bangalore-launch .launch-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 5rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.projects-bangalore-launch .launch-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
  padding-right: 2rem;
}

/* Two More Section */
.projects-two-more {
  position: relative;
  padding: 10rem 4rem;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--blue-theme);
}

.two-more-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.two-more-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 28, 0.2);
  z-index: 2;
}

.two-more-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-more-container {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.two-more-card {
  background: rgba(17, 35, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 4rem;
  max-width: 620px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two-more-card h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0.5rem 0 1.25rem 0;
  font-weight: 500;
}

.two-more-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9625rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Projects Showcase Section */
.projects-showcase {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.projects-showcase .showcase-header {
  text-align: left;
  max-width: 1140px;
  margin: 0 auto 4rem auto;
}

.projects-showcase .showcase-header h2 {
  font-size: 2.85rem;
  color: var(--blue-theme);
  margin-top: 0.5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 3rem;
  max-width: 1140px;
  margin: 0 auto;
}

.showcase-card {
  display: flex;
  flex-direction: column;
}

.showcase-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  user-select: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Slider Navigation (Bottom Center) */
.slider-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.slider-arrow:active {
  transform: scale(0.95);
}

/* Slider Indicators (Top Center) */
.slider-indicators {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-indicator {
  width: 48px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-indicator.active {
  background: var(--white);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.showcase-info h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.showcase-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Testimonials Section */
.projects-testimonials {
  padding: 8rem 4rem;
  background-color: var(--bg-cream);
}

.testimonials-container {
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 2.85rem;
  color: var(--blue-theme);
  margin-top: 0.5rem;
}

.video-testimonial-block {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.video-testimonial-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Projects Page */
@media (max-width: 992px) {
  .projects-quote p {
    font-size: 2.25rem;
  }

  .projects-bangalore-launch {
    padding: 6rem 1.5rem;
  }

  .projects-bangalore-launch .launch-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .projects-bangalore-launch .launch-content {
    padding-right: 0;
  }

  .two-more-card {
    padding: 2.5rem 2rem;
    max-width: 100%;
  }

  .projects-two-more {
    height: auto;
    padding: 6rem 1.5rem;
  }

  .projects-showcase {
    padding: 6rem 1.5rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }



  .projects-testimonials {
    padding: 6rem 1.5rem;
  }

  .video-testimonial-block {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .projects-quote,
  .projects-bangalore-launch,
  .projects-two-more,
  .projects-showcase,
  .projects-testimonials {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* White Header for Contact Page */
.contact-header {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-page-sec {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.contact-page-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-page-header h2 {
  font-size: 3.5rem;
  color: var(--blue-theme);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.contact-page-desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* 2-Column Contact Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background-color: var(--bg-cream);
  padding: 3.5rem 3rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border: 1px solid rgba(10, 37, 28, 0.04);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-green);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 37, 28, 0.12);
  transition: var(--transition-fast);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.info-item:hover .info-icon {
  background-color: var(--accent-gold);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.info-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.info-value {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  transition: var(--transition-fast);
}

a.info-value:hover {
  color: var(--accent-gold-hover);
}

.address-value {
  font-weight: 500;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
}

.contact-form-vertical {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.contact-page-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.contact-page-form label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-page-form input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
  outline: none;
  transition: var(--transition-fast);
}

.contact-page-form input::placeholder {
  color: rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
}

.contact-page-form input:focus {
  border-bottom-color: var(--blue-theme);
}

.form-btn-wrapper {
  display: flex;
  justify-content: flex-start;
}

.form-btn-wrapper .btn {
  padding: 1rem 3.5rem;
  font-size: 0.875rem;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-page-sec {
    padding: 6rem 15px;
  }

  .contact-page-header h2 {
    font-size: 2.35rem;
    line-height: 1.3;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-info-card {
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .contact-form-vertical {
    gap: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .form-btn-wrapper {
    justify-content: center;
  }

  .form-btn-wrapper .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Policy Pages Styles (Terms of Use, Privacy, Cookies)
   ========================================================================== */

.policy-page-sec {
  padding: 8rem 4rem;
  background-color: var(--white);
}

.policy-page-container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-page-header {
  text-align: center;
  margin-bottom: 5rem;
}

.policy-page-header h1 {
  font-size: 3.5rem;
  color: var(--blue-theme);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.policy-last-updated {
  font-size: 0.8125rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 1rem;
}

.policy-content {
  font-family: var(--font-sans);
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--blue-theme);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.policy-content p {
  margin-bottom: 1.5rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: square;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--accent-gold);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.policy-content a:hover {
  color: var(--accent-gold-hover);
  border-bottom-color: var(--accent-gold-hover);
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
  .policy-page-sec {
    padding: 6rem 15px;
  }

  .policy-page-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .value-card:nth-child(even) {
    margin-top: 0px;
}
}