/* Velora Villa — boutique resort / private villa hotel styling */
:root {
  --color-bg: #f5f1ea;
  --color-bg-alt: #ebe4d8;
  --color-surface: #fffcfa;
  --color-ink: #1a1917;
  --color-muted: #5c5852;
  --color-navy: #1a2330;
  --color-navy-mid: #252f3f;
  --color-gold: #b8956c;
  --color-gold-dark: #8f7149;
  --color-gold-light: #d4bc8e;
  --color-line: rgba(26, 35, 48, 0.08);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --space: clamp(1rem, 4vw, 2rem);
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 8px 32px rgba(26, 35, 48, 0.07);
  --shadow-card: 0 12px 40px rgba(26, 35, 48, 0.09);
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--color-ink);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(184, 149, 108, 0.09), transparent 55%),
    linear-gradient(180deg, var(--color-bg) 0%, #efe9df 100%);
  background-attachment: fixed;
}

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

a {
  color: var(--color-gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-navy);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-navy);
  color: #fff;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 92vw);
}

.container.narrow h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 1.75rem 0 0.65rem;
}

.container.narrow h3:first-child {
  margin-top: 0;
}

/* Header — hotel lobby bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 250, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 1px 0 rgba(184, 149, 108, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  padding-block: 0.4rem;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.12;
  max-width: min(16rem, 55vw);
}

.logo:hover {
  color: var(--color-navy);
}

.logo-text {
  display: block;
}

.logo-accent {
  display: block;
  font-size: 0.58em;
  font-weight: 500;
  color: var(--color-gold-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.logo-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--color-muted);
  border-left: 2px solid var(--color-gold);
  padding-left: 0.55rem;
  margin-top: 0.05rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.35rem;
}

.site-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-navy);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--color-gold);
  padding-bottom: 2px;
}

.btn-nav {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  background: var(--color-navy);
  color: #fff !important;
  border-radius: 2px;
  text-decoration: none !important;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-nav:hover {
  background: var(--color-gold-dark);
  color: #fff !important;
}

.wa-nav {
  color: #117a65 !important;
  font-weight: 600;
  text-decoration: none !important;
}

.wa-nav:hover {
  color: #0a5c4d !important;
  text-decoration: underline !important;
}

.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 250;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  background: #20bd5a;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.wa-float:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.35rem;
    max-width: 11rem;
  }

  .logo-tagline {
    font-size: 0.62rem;
    padding-left: 0.45rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
    padding: 1.25rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .site-nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .site-nav a[aria-current="page"] {
    box-shadow: none;
    border-left: 3px solid var(--color-gold);
    padding-left: 0.75rem;
  }
}

/* Hero — full-bleed resort welcome */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 12vw, 7rem) 0;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(195deg, rgba(26, 35, 48, 0.15) 0%, rgba(26, 35, 48, 0.55) 45%, rgba(26, 27, 25, 0.88) 100%),
    linear-gradient(90deg, rgba(26, 35, 48, 0.35) 0%, transparent 55%),
    url("../photo/velora-villa-udaipur-villa-exterior-wide.jpeg") center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(245, 241, 234, 0.15), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-gold-light);
  margin: 0 0 1rem;
  font-weight: 600;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.1rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.02em;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero .lead strong {
  color: #fff;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-navy);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 9vw, 5.5rem) 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 1px;
}

.section-intro {
  color: var(--color-muted);
  max-width: 52rem;
  margin: 0 0 2.25rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.95) 0%, var(--color-bg-alt) 100%);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

/* Cards — property listings */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 20px 50px rgba(26, 35, 48, 0.14);
  transform: translateY(-4px);
}

.card-image {
  aspect-ratio: 16 / 10;
  background: var(--color-navy-mid);
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -60px 50px -30px rgba(26, 35, 48, 0.35);
  pointer-events: none;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card-image-caption {
  margin: 0;
  padding: 0.45rem 1rem 0.55rem;
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--color-muted);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}

.card-image-caption strong {
  color: var(--color-ink);
  font-weight: 600;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

.card-body {
  padding: 1.65rem 1.75rem 1.75rem;
  border-top: 3px solid var(--color-gold);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.65rem;
  color: var(--color-navy);
  font-weight: 700;
}

.card p {
  margin: 0 0 1.15rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.link-arrow {
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-arrow::after {
  content: " →";
  color: var(--color-gold-dark);
}

.link-arrow:hover {
  color: var(--color-gold-dark);
}

/* Galleries & video */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-grid li {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.gallery-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-grid img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.gallery-caption {
  margin: 0;
  padding: 0.5rem 0.6rem 0.6rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
  flex: 1 1 auto;
}

.gallery-caption strong {
  color: var(--color-ink);
  font-weight: 600;
}

.gallery-grid li:hover img {
  transform: scale(1.04);
}

.gallery-lead {
  color: var(--color-muted);
  max-width: 48rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.gallery-note {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.video-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-figure {
  margin: 0;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.video-figure video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
}

.video-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
}

.video-gallery-page .video-gallery-single {
  max-width: 56rem;
  margin-inline: auto;
}

.video-gallery-single .video-figure video {
  aspect-ratio: 16 / 9;
}

.gallery-crosslink {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.media-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.feature-photo {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.feature-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-photo figcaption {
  margin: 0;
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
}

.feature-photo figcaption strong {
  color: var(--color-ink);
  font-weight: 600;
}

/* Feature grid */
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-grid li {
  padding: 1.75rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-gold);
}

.feature-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin-bottom: 0.55rem;
  color: var(--color-navy);
  font-weight: 700;
}

.feature-grid strong::before {
  content: "✦";
  display: inline-block;
  margin-right: 0.4rem;
  color: var(--color-gold-dark);
  font-size: 0.75em;
  vertical-align: middle;
}

.feature-grid span {
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.seo-block p {
  color: var(--color-muted);
  line-height: 1.75;
}

.seo-block p + p {
  margin-top: 1rem;
}

/* CTA */
.cta-band {
  background: linear-gradient(145deg, var(--color-navy) 0%, #121820 50%, var(--color-navy-mid) 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(184, 149, 108, 0.12), transparent 50%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.cta-band h2::after {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  width: 80px;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.88;
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-band .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}

.cta-band .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-navy);
}

/* Inner pages */
.page-hero {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-line);
}

.page-hero-maple {
  background:
    linear-gradient(135deg, rgba(255, 252, 250, 0.94) 0%, rgba(245, 241, 234, 0.92) 100%),
    url("../photo/velora-villa-udaipur-wedding-guest-accommodation.jpeg") center/cover no-repeat;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.page-hero .lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.0625rem;
  max-width: 44rem;
  line-height: 1.7;
}

.page-hero .eyebrow {
  color: var(--color-gold-dark);
}

.detail-list {
  margin: 0;
}

.detail-list > div {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-line);
}

.detail-list > div:last-child {
  border-bottom: none;
}

.detail-list dt {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}

.detail-list dd {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.bullet-columns {
  columns: 1;
  padding-left: 1.25rem;
  color: var(--color-muted);
  line-height: 1.7;
}

@media (min-width: 600px) {
  .bullet-columns {
    columns: 2;
    gap: 2rem;
  }
}

.bullet-columns li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.mt {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2.5rem;
}

.center {
  text-align: center;
}

/* Amenities */
.amenity-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenity-grid article {
  padding: 1.65rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}

.amenity-grid article:hover {
  border-color: rgba(184, 149, 108, 0.45);
}

.amenity-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  color: var(--color-navy);
}

.amenity-grid h2::after {
  display: none;
}

.amenity-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-card {
  padding: 2rem 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.contact-card h2 {
  font-size: 1.35rem;
  margin-top: 0;
  font-family: var(--font-display);
  color: var(--color-navy);
  padding-bottom: 0;
}

.contact-card h2::after {
  display: none;
}

/* Footer — hotel night palette */
.site-footer {
  padding: 3.25rem 0 1.75rem;
  background: linear-gradient(180deg, #121820 0%, #0d1118 100%);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0;
  border-top: 3px solid var(--color-gold-dark);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #fff;
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin: 0 0 0.75rem;
  line-height: 1.45;
  padding-left: 0.65rem;
  border-left: 2px solid var(--color-gold-dark);
  opacity: 0.95;
}

.footer-tag {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.82;
  line-height: 1.5;
}

.footer-heading {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-gold-light);
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-address,
.contact-address {
  font-style: normal;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.88;
}

.footer-phone {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.footer-phone a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

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

.footer-wa {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-wa a {
  color: var(--color-gold-light);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.footer-wa a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-social {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
}

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

.contact-address {
  color: var(--color-muted);
  opacity: 1;
}

.contact-card .contact-address {
  margin-bottom: 0;
}

.contact-muted {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  opacity: 0.65;
}

.footer-bottom p {
  margin: 0;
}
