:root {
  --primary-black: #111111;
  --secondary-black: #1c1c1c;
  --gold: #D4AF37;
  --light-gold: #F4D03F;
  --white: #FFFFFF;
  --gray: #999999;
  --muted: #c9c4b5;
  --deep-red: #31151b;
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(212, 175, 55, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 34rem),
    linear-gradient(135deg, var(--primary-black), #17100f 48%, var(--secondary-black));
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
.brand-text {
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.section-padding {
  padding: 92px 0;
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(212, 175, 55, 0.045)),
    rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-sticky {
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(18px);
  border-color: rgba(212, 175, 55, 0.18);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.navbar {
  padding: 18px 0;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  font-size: 1.2rem;
}

.navbar-toggler {
  border-color: rgba(212, 175, 55, 0.5);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(212, 175, 55, 0.35);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--light-gold);
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.55rem;
  font-weight: 700;
  font-size: 0.94rem;
  border-width: 1px;
}

.btn-sm {
  padding: 0.62rem 1.1rem;
}

.btn-gold {
  color: #16110a;
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  border-color: rgba(244, 208, 63, 0.75);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.22);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.28);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--primary-black);
  background: var(--white);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.78)),
    url("../images/luxury-lifestyle-05.jpg") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, var(--primary-black), transparent);
}

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

.page-title {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.page-copy {
  max-width: 720px;
  font-size: 1.08rem;
}

.rounded-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: var(--shadow);
}

.hero-slider,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
  background: #0c0c0c;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-strip {
  display: grid;
  grid-template-columns: 24% 52% 24%;
  width: 100%;
  height: 100%;
}

.hero-panel {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #1c1c1c;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 4.5s ease;
}

.hero-slide.is-active .hero-panel img {
  transform: scale(1.08);
}

.hero-panel-main img {
  object-position: center;
}

.hero-panel-side img {
  object-position: center top;
}

.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 72% 40%, rgba(244, 208, 63, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.58) 38%, rgba(17, 17, 17, 0.2) 70%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.24) 42%, rgba(17, 17, 17, 0.12));
}

.hero-content {
  position: relative;
  z-index: 4;
  pointer-events: none;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.hero-title {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.94;
  margin-bottom: 24px;
}

.hero-copy {
  max-width: 610px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.glass-panel {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-portrait {
  position: relative;
  padding: 14px;
  border-radius: 8px;
  transform: translateY(34px);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.portrait-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(12px);
}

.portrait-caption span,
.portrait-caption strong {
  display: block;
}

.portrait-caption span {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.portrait-caption strong {
  margin-top: 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
}

.hero-arrow-prev {
  left: 34px;
}

.hero-arrow-next {
  right: 34px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold);
  border-color: var(--gold);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: cue 1.8s infinite;
}

@keyframes cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-heading p {
  margin-bottom: 0;
}

.profile-card,
.feature-card,
.city-card,
.testimonial-card,
.stat-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.profile-card {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.48);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-body {
  padding: 24px;
}

.profile-body h3,
.feature-card h3,
.city-card h3,
.testimonial-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.profile-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.profile-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
}

.btn-card {
  width: 100%;
  color: var(--white);
  border-color: rgba(212, 175, 55, 0.44);
  background: rgba(212, 175, 55, 0.08);
}

.btn-card:hover {
  color: #111;
  background: var(--gold);
}

.lead-text {
  font-size: 1.05rem;
}

.feature-card {
  height: 100%;
  padding: 26px;
  border-radius: 8px;
}

.feature-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--primary-black);
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  font-size: 1.3rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

.city-grid > article {
  min-width: 0;
}

.city-card {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  border-radius: 8px;
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.9)),
    var(--city-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 12rem);
  opacity: 0.35;
  transition: opacity 0.28s ease;
}

.city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.44);
}

.city-card:hover::before {
  opacity: 0.72;
}

.city-card span,
.city-card h3,
.city-card p {
  position: relative;
}

.city-card span {
  color: var(--gold);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 180px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-row: span 1;
}

.stats-section {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(49, 21, 27, 0.7), rgba(17, 17, 17, 0.96)),
    var(--secondary-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-box {
  padding: 26px 12px;
  border-radius: 8px;
}

.stat-box strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.stat-box strong::after {
  content: "+";
}

.stat-box span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.testimonial-card {
  height: 100%;
  padding: 30px;
  border-radius: 8px;
}

.testimonial-card i {
  color: var(--gold);
  font-size: 2rem;
}

.testimonial-card h3 {
  margin-top: 0;
  margin-bottom: 2px;
}

.testimonial-card span {
  color: var(--gold);
  font-size: 0.9rem;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.review-person img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 2px solid rgba(212, 175, 55, 0.7);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.luxury-accordion .accordion-item {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.luxury-accordion .accordion-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  box-shadow: none;
}

.luxury-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.luxury-accordion .accordion-button::after {
  filter: invert(1);
}

.luxury-accordion .accordion-body {
  color: var(--muted);
}

.contact-panel {
  border-radius: 8px;
  padding: clamp(24px, 4vw, 46px);
}

.contact-copy {
  height: 100%;
  padding: 12px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-list i {
  color: var(--gold);
}

.form-label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.form-control {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.92rem 1rem;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-control:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.16);
}

.form-status {
  min-height: 28px;
  margin: 14px 0 0;
  color: var(--gold);
  font-weight: 600;
}

.site-footer {
  padding: 70px 0 24px;
  background: #090909;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-top-content {
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(212, 175, 55, 0.08), transparent 22rem),
    linear-gradient(135deg, #020b15, #061a31);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.touch-feature-section {
  padding: clamp(56px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08), transparent 22rem),
    linear-gradient(135deg, #020b15, #061a31);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.touch-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.touch-feature-media {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background: #111;
}

.touch-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.touch-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 18px;
  background: rgba(1, 14, 29, 0.78);
}

.touch-feature-card h2 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.touch-feature-card p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.touch-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.btn-pink {
  min-width: 140px;
  color: var(--light-gold);
  background: #d20b68;
  border-color: #d20b68;
}

.btn-pink:hover,
.btn-pink:focus {
  color: #111;
  background: var(--light-gold);
  border-color: var(--light-gold);
}

.btn-blue {
  min-width: 150px;
  color: var(--light-gold);
  background: #052b57;
  border-color: #052b57;
}

.btn-blue:hover,
.btn-blue:focus {
  color: var(--white);
  background: #07417f;
  border-color: #07417f;
}

.footer-benefits-content {
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background:
    radial-gradient(circle at 18% 22%, rgba(212, 175, 55, 0.08), transparent 22rem),
    linear-gradient(135deg, #020b15, #061a31);
}

.hindi-content-section {
  background:
    radial-gradient(circle at 80% 24%, rgba(212, 175, 55, 0.08), transparent 24rem),
    linear-gradient(135deg, #020b15, #061a31);
}

.russian-content-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.08), transparent 22rem),
    linear-gradient(135deg, #020b15, #061a31);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.pricing-table-section {
  background: #071526;
  padding: 60px 20px;
}

.pricing-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 38px;
}

.pricing-table {
  width: 100%;
  max-width: 1200px;
  min-width: 780px;
  margin: auto;
  border-collapse: collapse;
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pricing-table thead {
  background: #d4af37;
}

.pricing-table th {
  color: #111827;
  padding: 22px;
  font-weight: 800;
  text-align: left;
}

.pricing-table td {
  color: #e5e7eb;
  padding: 24px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table td:first-child {
  color: #d4af37;
  font-weight: 800;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  background: #d4af37;
  color: #111827;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.call-btn:hover,
.call-btn:focus {
  background: #f5c542;
  color: #111827;
}

.hindi-copy-panel h2 {
  max-width: 1120px;
}

.hindi-copy-panel p {
  max-width: 1160px;
}

.hindi-copy-panel strong {
  color: #f5c542;
}

.footer-seo-panel {
  max-width: 1180px;
}

.footer-seo-panel h2 {
  max-width: 1080px;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 800;
  line-height: 1.12;
}

.footer-seo-panel h3 {
  margin: 26px 0 16px;
  color: #f5c542;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-seo-panel p {
  max-width: 1120px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.footer-service-list {
  columns: 2;
  column-gap: clamp(28px, 6vw, 86px);
  max-width: 900px;
  padding-left: 1.2rem;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.6;
}

.footer-service-list li {
  break-inside: avoid;
  margin-bottom: 3px;
}

.site-footer h3,
.site-footer h4 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

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

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

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

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.social-links a:hover {
  color: var(--primary-black);
  background: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.44);
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-contact {
  position: fixed;
  right: 22px;
  top: 58%;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.floating-contact-btn {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.55rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-contact-btn:hover,
.floating-contact-btn:focus {
  color: var(--white);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

.floating-call {
  background: #04a943;
}

.floating-whatsapp {
  background: #25d366;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-link,
.btn,
.hero-arrow,
.hero-dot,
.floating-contact-btn,
.scroll-top {
  touch-action: manipulation;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 576px) {
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .touch-feature-grid {
    grid-template-columns: 0.95fr 1fr;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }

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

  .gallery-grid {
    grid-auto-rows: 210px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.96);
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 70% 28%, rgba(244, 208, 63, 0.16), transparent 20rem),
      linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.58)),
      linear-gradient(0deg, rgba(17, 17, 17, 0.98), transparent 26%);
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel-side {
    display: none;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow-prev {
    left: 16px;
  }

  .hero-arrow-next {
    right: 16px;
  }

  .hero-content .row {
    min-height: 760px !important;
  }

  .section-padding {
    padding: 74px 0;
  }
}

@media (max-width: 575.98px) {
  .brand-text {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-dots {
    bottom: 86px;
  }

  .floating-contact {
    right: 14px;
    top: auto;
    bottom: 82px;
    gap: 12px;
    transform: none;
  }

  .floating-contact-btn {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .touch-feature-actions .btn {
    width: 100%;
  }

  .touch-feature-media,
  .touch-feature-media img {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}



