* {
  box-sizing: border-box;
}
:root {
  --black: #000000;
  --gold: #d4af37;
  --offwhite: #f5f5f5;
  --text: #111;
  --muted: #666;
  --radius: 10px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--offwhite);
  color: var(--text);
}
body {
  margin: 0;
  background: #f7f1d2;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

h2,
h3 {
  letter-spacing: 0.5px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* =========================
   PREMIUM STICKY NAVBAR
========================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: black;
  color: #fff;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 1000;
  align-items: center;
  transition: all 0.3s ease;
}

/* logo */
.navbar h1 {
  color: gold;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: center;
}

/* links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.navbar a:hover {
  color: gold;
}

/* SCROLL EFFECT CLASS (used by JS) */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
a {
  transition: var(--transition);
}

a:hover {
  opacity: 0.85;
}

/* TAGLINE - PREMIUM STYLE */
.tagline {
  font-style: italic;
  color: rgba(234, 227, 188, 0.8); /* soft gold */
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: -5px;
  text-align: center;
}
/* =========================
   HERO LEVEL 3 (LUXURY SaaS)
========================= */

.hero {
  position: relative;
  text-align: center;
  padding: 110px 20px;
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  overflow: hidden;
}

/* background decorative shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg-shapes::before,
.hero-bg-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.08);
  filter: blur(40px);
}

/* large floating gold blur */
.hero-bg-shapes::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}

/* second floating shape */
.hero-bg-shapes::after {
  width: 250px;
  height: 250px;
  bottom: -60px;
  right: -60px;
}

/* content */
.hero-content {
  position: relative;
  max-width: 750px;
  margin: auto;
  animation: fadeInUp 1s ease;
}

/* headline */
.hero h2 {
  font-size: 46px;
  margin-bottom: 15px;
  color: #111;
  letter-spacing: 1px;
}

/* gold line */
.accent-line {
  width: 90px;
  height: 3px;
  background: gold;
  margin: 15px auto;
  border-radius: 2px;
}

/* paragraph */
.hero p {
  font-size: 17px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* CTA button upgrade */
.hero .btn {
  padding: 12px 26px;
  font-weight: bold;
  background: gold;
  color: #000;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* hover micro-interaction */
.hero .btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: gold;
  color: black;
  text-decoration: none;
  border-radius: 4px;
}

/* SECTIONS */
section {
  padding: 50px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000; /* black */
  color: #fff;
}

footer p {
  margin: 0;
}

/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  gap: 10px;
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
input,
textarea,
select {
  color: #111;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

select {
  color: #777;
}

select:valid {
  color: #111;
}

button {
  padding: 10px;
  background: gold;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  opacity: 0.9;
}

/* =========================
   GLOBAL LUXURY FORM STYLE
========================= */

.contact-form {
  max-width: 650px;
  margin: 40px auto;
  padding: 30px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* spacing groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

/* inputs + select + textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #222;
  background: #111;
  color: #f5f5f5;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #bbb;
  text-align: left;
}
.hint {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #777;
}

/* =========================
   INTL PHONE INPUT THEME
========================= */

/* main input */
.iti input {
  width: 100% !important;
  padding: 14px 16px;
  background: #111;
  color: #fff;
  border: 1px solid #222;
  border-radius: 8px;
}

/* dropdown container */
.iti {
  width: 100%;
}

/* flag dropdown styling */
.iti__flag-container {
  background: #000;
  border-right: 1px solid #222;
}

/* dropdown list */
.iti__country-list {
  background: #111;
  color: #000;
  border: 1px solid #222;
  border-radius: 8px;
}

/* hover state */
.iti__country:hover {
  background: gold;
  color: black;
}

/* placeholder styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

/* focus state (luxury gold glow) */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* dropdown default state */
.contact-form select {
  color: #888;
}

/* selected state */
.contact-form select:valid {
  color: #f5f5f5;
}

/* textarea height */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* button */
.contact-form button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: gold;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #e6c200;
  transform: translateY(-1px);
}

/* section spacing (for layout consistency) */
.contact-section {
  padding: 40px 20px;
  background: #f7f1d2;
}

/* =========================
   SECTION BASE STYLE
========================= */

.services,
.testimonials,
.catalog {
  padding: 70px 20px;
  text-align: center;
}

/* headings */
.services h2,
.testimonials h2,
.catalog h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

/* =========================
   SERVICE CARDS
========================= */

.service-grid,
.catalog-grid,
.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* testimonials */
.testimonial {
  background: #111;
  color: #fff;
  padding: 50px 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: gold;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* catalog simple cards */
.catalog .card {
  background: gold;
  color: black;
  font-weight: bold;
}

.testimonial-grid {
  display: none;
}

.review-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.testimonial span {
  font-size: 0.9rem;
  color: #777;
}

/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {
  .hero {
    height: 10vh;
  }

  .hero-cta {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .btn {
    padding: 10px 10px;
    font-size: 12px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .service-grid,
  .testimonial-grid,
  .catalog-grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}

/* =========================
   FLOATING CTA BUTTON
========================= */

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: gold;
  color: black;
  padding: 12px 18px;
  border-radius: 50px;

  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

  transition: 0.3s ease;
  z-index: 999;
}

.floating-cta:hover {
  transform: translateY(-3px);
  background: #e6c200;
}

.whatsapp-box {
  max-width: 500px;
  margin: 100px auto;
  text-align: center;
  padding: 30px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #fff;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  background: gold;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.skip-link {
  display: block;
  margin-top: 15px;
  color: #aaa;
  font-size: 13px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-box {
  animation: fadeInUp 0.6s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: gold;
  outline: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.phone-valid {
  border: 1px solid #00c853 !important;
  box-shadow: 0 0 8px rgba(0, 200, 83, 0.2);
}

.phone-invalid {
  border: 1px solid #ff3d00 !important;
  box-shadow: 0 0 8px rgba(255, 61, 0, 0.2);
}

.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);

  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  max-width: 420px;

  animation: fadeInUp 0.5s ease;
}

.checkmark {
  font-size: 40px;
  color: gold;
  margin-bottom: 10px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background: gold;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.home-link {
  display: block;
  margin-top: 15px;
  color: #aaa;
  font-size: 13px;
}
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #0a0a0a;
  color: #fff;
  border-left: 4px solid gold;
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease;
  z-index: 9999;
  font-size: 14px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* CONTACT INFO SECTION */
.contact-info {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 40px 20px;
  margin-top: 40px;
}

.contact-info-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.info-item {
  flex: 1;
  min-width: 250px;
}

.info-item h3 {
  color: gold;
  margin-bottom: 10px;
}

.info-item p {
  color: #ccc;
  font-size: 14px;
}

/* PHONE / CONTACT LINKS - DEFAULT */
.contact-info a {
  color: #f5f5f5; /* same as your text */
  text-decoration: none;
  transition: 0.3s ease;
}

/* HOVER (when cursor is on it) */
.contact-info a:hover {
  color: gold;
}

/* ACTIVE (when clicked / touched) */
.contact-info a:active {
  color: #e6c200;
}

/* FOOTER TEXT */
.footer-text {
  font-style: italic;
  color: #ccc;
  font-size: 14px;
}

/* GOLD HEART */
.gold-love {
  color: gold;
  margin: 0 4px;
}

.small-note {
  color: gold;
  font-style: italic;
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.3px;
}

// ABOUT PAGE CTA

.about-cta {
  background: #0f0f0f;
  color: #fff;
  text-align: justify;
  padding: 60px 20px;
  margin-top: 60px;
}

.about-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #0f0f0f;
  line-height: 1.6;
}

/* BUTTON CONTAINER */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* BASE BUTTON STYLE */
.cta-btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.cta-btn {
  background: gold;
  color: #000;
}

.cta-btn:hover {
  background: #d4af37;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.cta-btn.outline {
  background: gold;
  border: 1px solid #fff;
  color: #000;
}

.cta-btn.outline:hover {
  background: #fff;
  color: #000;
}

/* WHATSAPP BUTTON */
.cta-btn.whatsapp {
  background: #25d366;
  color: #000;
}

.cta-btn.whatsapp:hover {
  background: #1ebe5d;
}
.contact-info {
  padding: 60px 20px;
  background: #000;
}

.contact-info-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.info-item {
  flex: 1;
  min-width: 250px;
}

.info-item h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: gold;
}

/* LINKS (IMPORTANT: NOT BLUE DEFAULT) */
.info-item a {
  text-decoration: none;
  color: #fdfbfb; /* 👈 default black */
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: gold;
}

/* TEXT STYLE */
.info-item p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #f9f7f7;
}

//TEAM
.founder-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.founder-image img {
  width: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.founder-content {
  flex: 1;
  min-width: 250px;
}

.founder-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.founder-banner {
  width: 100%;
  margin: 30px 0;
}

.founder-banner img {
  width: 100%;
  height: 320px; /* rectangle size */
  object-fit: cover;
  display: block;
}
/* ===== FOUNDER SECTION ===== */
.founder-section {
  padding: 50px 20px;
}

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

.founder-image {
  float: left;
  width: 260px;
  margin-right: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.founder-content p {
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Clear float */
.founder-container::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 768px) {
  .founder-image {
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 300px;
  }
}

h2 {
  margin-bottom: 15px;
}

p {
  margin-bottom: 12px;
}
.team-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.team-section p {
  line-height: 1.7;
}

/* =========================
   WHAT WE OFFER - 5 CARD ROW
========================= */
.highlights .cards-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap; /* keeps all cards in one horizontal row */
  max-width: 100%;
  overflow-x: auto; /* allows scroll if the screen is smaller */
  padding: 0 40px;
  box-sizing: border-box;
}

.highlights .card {
  flex: 1;
  min-width: 18%; /* five cards side-by-side */
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
}

.highlights .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.highlights .card h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.highlights .card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

/* Accessories card variation */
.highlights .card.wide {
  min-width: 18%;
  flex: 1;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .highlights .cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlights .card,
  .highlights .card.wide {
    min-width: 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .highlights .card {
    min-width: 85%;
  }
}

/* HERO SLIDER BACKGROUND */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  animation: slideAnim 15s infinite;
}

.hero-slider .slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
  filter: brightness(0.55); /* darken for readable text */
}

/* Smooth sliding animation */
@keyframes slideAnim {
  0% {
    transform: translateX(0%);
  }
  33% {
    transform: translateX(0%);
  }
  40% {
    transform: translateX(-100%);
  }
  73% {
    transform: translateX(-100%);
  }
  80% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* Ensure hero text stays above images */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-cta {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.btn {
  background: linear-gradient(135deg, gold, #d4af37);
  color: #000;
  padding: 14px 32px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #000;
  color: gold;
}

.hero-cta {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.btn {
  background: linear-gradient(135deg, gold, #d4af37);
  color: #000;
  padding: 14px 32px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #000;
  color: gold;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* soft dark overlay */
  z-index: 1;
}

.hero-slider {
  z-index: 0;
}

.hero-cta {
  z-index: 2;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #000;
  color: gold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: gold;
  color: #000;
  transform: translateY(-4px);
}

/* =========================
   TESTIMONIAL SLIDER
========================= */

.testimonial-slider {
  position: relative;
  max-width: 1300px; /* controls overall width */
  margin: auto;
  overflow: hidden;
  padding: 0 40px;
}

/* horizontal track */
.testimonial-track {
  display: flex;
  gap: 15px;
  transition: transform 0.4s ease;
}

/* smaller cards */
.testimonial {
  min-width: 22%; /* 👈 smaller than before */
  max-width: 19%;
  padding: 25px 15px; /* reduced padding */
}

/* image slightly smaller */
.review-img {
  max-height: 180px;
  object-fit: cover;
}

/* arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: gold;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 5;
  transition: 0.3s;
}

.slider-btn:hover {
  background: gold;
  color: #000;
}

.prev {
  left: -10px;
}

.next {
  right: -10px;
}

.testimonial {
  transition: 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .testimonial {
    min-width: 30%;
    max-width: 80%;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .testimonial {
    min-width: 80%; /* 1 item mobile */
  }
}

html {
  scroll-behavior: smooth;
}

.navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
  position: relative;
  align-items: center;
}

/* parent container */
.dropdown {
  position: relative;
}

/* hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  flex-direction: column;
  background: white;
  min-width: 180px;

  padding: 10px 0;
  margin: 0;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 999;
}

/* show ONLY when JS adds class */
.dropdown-menu.show {
  display: flex;
}

/* dropdown items */
.dropdown-menu li {
  width: 100%;
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

/* Make the select match navbar style */
.navbar select {
  background-color: #000;
  color: rgb(247, 247, 245);
  border: none;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}

/* Remove default ugly browser styling */
.navbar select:focus {
  outline: none;
}

/* Make dropdown options readable */
.navbar select option {
  background-color: #000;
  color: #fff;
}

.navbar a[href="contact.html"] {
  background: gold;
  color: black;
  padding: 6px 12px;
  border-radius: 20px;
}

.review-cta {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}

.review-cta a {
  color: #c9a44c; /* your gold color */
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
}

.review-cta a:hover {
  text-decoration: underline;
}