/* Custom CSS for static HTML version */
:root {
  --font-serif: "Playfair Display", serif;
  --font-sans: "Plus Jakarta Sans", "Inter", sans-serif;
  --color-luxury-gold: #D4AF37;
  --color-luxury-gold-dark: #996515;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.top-bar {
  background: var(--color-luxury-gold);
  color: #000;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.top-bar .info span {
  margin-right: 1rem;
}

.phone-link {
  font-weight: bold;
}

.main-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo .brand {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: bold;
  background: linear-gradient(135deg, #D4AF37, #F9E29C, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desktop-nav {
  display: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-luxury-gold);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #000;
  padding: 1rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-luxury-gold);
  color: var(--color-luxury-gold);
  font-size: 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.gold-text {
  background: linear-gradient(135deg, #D4AF37, #F9E29C, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: bold;
  transition: transform 0.2s;
}

.btn-primary {
  background: var(--color-luxury-gold);
  color: #000;
}

.btn-outline {
  border: 2px solid var(--color-luxury-gold);
  color: var(--color-luxury-gold);
}

.btn:hover {
  transform: scale(1.05);
}

.about {
  padding: 4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1 1 300px;
}

.about-image {
  position: relative;
  flex: 1 1 300px;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
}

.overlay-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border: 1px solid var(--color-luxury-gold);
  border-radius: 0.5rem;
}

.overlay-number {
  font-size: 2rem;
  font-family: var(--font-serif);
  background: linear-gradient(135deg, #D4AF37, #F9E29C, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services {
  padding: 4rem 0;
  background: #050505;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.service-card h4 {
  margin: 0.75rem 0;
  font-size: 1.25rem;
}

.service-card p {
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: #bbb;
  text-align: left;
  line-height: 1.6;
}

.service-content {
  padding-bottom: 1.5rem;
}

.service-benefits {
  list-style: none;
  padding: 1rem 1.5rem;
  text-align: left;
}

.service-benefits li {
  font-size: 0.875rem;
  color: #eee;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link {
  display: inline-block;
  margin: 1rem 0 0.5rem 0;
  color: var(--color-luxury-gold);
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s, color 0.3s;
}

.service-link:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.gallery {
  padding: 4rem 0;
}

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

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.location {
  padding: 4rem 0;
  background: #050505;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.location-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.location-text {
  flex: 1 1 300px;
}

.location-map {
  flex: 1 1 300px;
}

.contact {
  padding: 5rem 0;
  background: #050505;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: var(--font-serif);
}

.contact-subtitle {
  margin-bottom: 3rem;
  color: #ccc;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* New section headings */
.section-subtitle {
  color: var(--color-luxury-gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: var(--font-serif);
}

/* Why Choose Us Styling */
.why-choose-us {
  padding: 5rem 0;
  background: #000;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.05);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1.25rem;
  color: var(--color-luxury-gold);
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}

.why-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Areas We Serve Styling */
.areas-we-serve {
  padding: 5rem 0;
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.areas-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

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

.area-card {
  background: rgba(255, 255, 255, 0.01);
  border-left: 3px solid var(--color-luxury-gold);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  transition: background-color 0.3s;
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.area-card h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.area-card p {
  color: #aaa;
  font-size: 0.875rem;
  line-height: 1.5;
}

.areas-cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
  color: var(--color-luxury-gold);
  background: rgba(212, 175, 55, 0.05);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Reviews Section Styling */
.reviews {
  padding: 5rem 0;
  background: #000;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.03);
}

.review-rating {
  color: var(--color-luxury-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  color: #ddd;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.review-date {
  color: #777;
  font-size: 0.8rem;
}

/* FAQ Section Styling */
.faq {
  padding: 5rem 0;
  background: #050505;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  user-select: none;
}

.faq-item summary::after {
  content: "＋";
  color: var(--color-luxury-gold);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: "－";
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Contact Grid & Form Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-panel,
.contact-form-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.contact-info-panel h3,
.contact-form-panel h3 {
  font-size: 1.75rem;
  color: var(--color-luxury-gold);
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 0.75rem;
}

.contact-desc {
  color: #bbb;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  font-size: 1.75rem;
  background: rgba(212, 175, 55, 0.1);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text-box h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.contact-text-box p a {
  font-size: 1.15rem;
  color: var(--color-luxury-gold);
  font-weight: bold;
  transition: color 0.3s;
}

.contact-text-box p a:hover {
  color: #fff;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-buttons .btn {
  padding: 0.75rem 1.75rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20ba59;
}

/* Booking Form Elements */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 0.5rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
}

.form-group select option {
  background: #111;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-luxury-gold);
  background: rgba(255, 255, 255, 0.05);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.hero-cta-tagline {
  margin-bottom: 2rem;
  color: var(--color-luxury-gold);
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.footer {
  background: #000;
  color: #aaa;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  background: linear-gradient(135deg, #D4AF37, #F9E29C, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin: 0.5rem 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
  position: absolute;
  right: 110%;
  background: #000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 1.25rem;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}