:root {
  --primary: #6BB6D9;
  --primary-light: #A9D6E5;
  --primary-dark: #1488cf;
  --gold: #D4AF37;
  --gold-light: #F1D382;

  --white: #FFFFFF;
  --bg: #F5FAFD;
  --bg-alt: #FFFFFF;
  --surface: #FFFFFF;
  --surface2: #EEF7FB;
  --surface3: #E3F1F8;

  --text: #1F2D3D;
  --text-light: #5B6B7A;
  --text-muted: #7A8A96;

  --border: rgba(107, 182, 217, 0.18);
  --shadow-sm: 0 4px 12px rgba(31, 45, 61, 0.05);
  --shadow-md: 0 10px 30px rgba(31, 45, 61, 0.08);
  --shadow-lg: 0 18px 45px rgba(31, 45, 61, 0.12);

  --container: 1200px;
  --nav-height: 80px;
}

/* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.shimmer-text u {
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
  -webkit-text-fill-color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* =========================
   LAYOUT UTILITIES
========================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.bg-light {
  background: var(--surface2);
}

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

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 24px auto;
}

.hero-section .divider {
  background: linear-gradient(90deg, transparent, #fff, transparent);
  height: 3px;
  opacity: 0.8;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 10px 40px rgba(107, 182, 217, 0.08);
  height: 70px;
  border-bottom: 1px solid rgba(107, 182, 217, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.lotus-icon {
  width: 38px;
  height: 38px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .lotus-icon {
  transform: rotate(20deg) scale(1.15);
  filter: drop-shadow(0 0 8px rgba(107, 182, 217, 0.4));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--primary-dark);
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn-gold) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.btn-gold)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:not(.btn-gold):hover,
.nav-links a:not(.btn-gold).active {
  color: var(--primary-dark);
}

.nav-links a:not(.btn-gold):hover::after,
.nav-links a:not(.btn-gold).active::after {
  width: 100%;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--primary-dark);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

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

.mobile-menu a {
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: #000; /* Fallback color */
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(107, 182, 217, 0.1) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 1000px;
  width: 100%;
  padding: 40px 20px;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-desc {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .shimmer-text {
  color: #fff;
  background: linear-gradient(
    90deg, 
    #ffffff 0%, 
    #c0e8f7 25%, 
    #ffffff 50%, 
    #c0e8f7 75%, 
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
  /* Use filter instead of text-shadow for better text-clip compatibility */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  display: block;
  margin: 0 auto;
}

.hero-section .section-label {
  color: var(--primary-light);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  letter-spacing: 0.4em;
  margin-bottom: 20px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    padding: 0 10px;
  }
  
  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }
}

.trust-badges {
  margin-top: 50px;
  display: flex;
  gap: 20px 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo-text img {
    height: 38px; /* Slightly smaller logo on small mobiles */
  }

  .hero-section h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .badge-item {
    font-size: 0.85rem;
  }
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-light);
}

/* =========================
   SECTION HEADERS
========================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

/* =========================
   GRIDS
========================= */
.grid-services, .grid-why, .grid-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* =========================
   ABOUT SECTION
========================= */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--surface);
  padding: 30px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border);
  z-index: 5;
}

.exp-years {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 15px;
}

.feature-icon {
  font-size: 1.5rem;
  background: rgba(107, 182, 217, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img {
    height: 400px;
  }
  
  .about-experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CARDS
========================= */
.service-card, .why-card, .review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.service-card:hover, .why-card:hover, .review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 182, 217, 0.3);
}

.service-img-wrapper {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.service-price {
  background: rgba(107, 182, 217, 0.1);
  padding: 6px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

/* =========================
   GALLERY
========================= */
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 124, 165, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

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

/* =========================
   REVIEWS
========================= */
.review-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--surface3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-dark);
}

.stars {
  color: #FFD700;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* =========================
   LOCATION
========================= */
.location-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.map-wrapper {
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.info-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
  background: linear-gradient(135deg, var(--surface3) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 48px;
}

/* =========================
   FOOTER
========================= */
/* =========================
   FOOTER
========================= */
.footer {
  background: var(--white);
  padding: 100px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact p {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.hours-text {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.hours-time {
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a:hover {
  color: var(--primary);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* =========================
   BUTTONS
========================= */
.btn-gold {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(107, 182, 217, 0.3);
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(107, 182, 217, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 15px 32px;
  border-radius: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: white;
  color: var(--primary-dark);
  border-color: white;
  transform: translateY(-3px);
}

.card-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  width: 100%;
}

.card-btns .btn-gold, 
.card-btns .btn-wa {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.btn-wa {
  background: #25D366;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-call {
  background: var(--primary-dark);
}

@media (max-width: 480px) {
  .card-btns {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating-wa, .floating-call {
  position: fixed;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.floating-wa {
  bottom: 24px;
  background: #25D366;
}

.floating-call {
  bottom: 100px;
  background: var(--primary-dark);
}

.floating-wa:hover, .floating-call:hover {
  transform: scale(1.1) translateY(-5px);
}

.back-to-top {
  position: fixed;
  bottom: 176px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.back-to-top:hover svg {
  fill: white;
}

.back-to-top svg {
  fill: var(--primary-dark);
  transition: fill 0.3s ease;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 182, 217, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(107, 182, 217, 0); }
}

.fade-up {
  animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.shimmer-text {
  color: #fff;
  position: relative;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .shimmer-text {
    background: linear-gradient(90deg, #fff 0%, var(--primary-light) 50%, #fff 100%);
    background-size: 200% auto;
    animation: shimmer 5s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

/* Global shimmer consolidated elsewhere */

.shimmer-text u {
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =========================
   SCROLLBAR
========================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .location-container { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; }
  .hero-desc { font-size: 1rem; }
  .section-title { font-size: 2.5rem; }
}
}