/* ==== Dark Mode Base ==== */
:root {
  --gold: #d4af37;
  --gold-dark: #b8972e;
  --black: #0f0f0f;
  --dark-2: #1a1a1a;
  --cream: #222222;
  --gray: #bbbbbb;
  --light: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Georgia', serif;
  line-height: 1.7;
  color: #e0e0e0;
  background: var(--black);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }

/* ====================== NAVIGATION ====================== */
.navbar {
  background: rgba(15, 15, 15, 0.98);
  padding: 1.2rem 0;
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2rem; font-weight: 900; color: var(--gold); display: flex; align-items: center; gap: 0.6rem; letter-spacing: -1px; }
.logo i { color: var(--gold); font-size: 1.8rem; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a { font-weight: 600; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 1.2px; color: #ccc; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-book { background: var(--gold); color: #000; padding: 0.75rem 1.8rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 10px rgba(212,175,55,0.3); }
.btn-book:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212,175,55,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: #ccc; border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ====================== HERO ====================== */
.page-hero {
  position: relative; height: 60vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/services-hero.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.page-hero h1 { font-size: 4.5rem; margin-bottom: 1rem; animation: fadeInUp 1s ease; }
.page-hero p { font-size: 1.5rem; animation: fadeInUp 1s ease 0.3s both; }

/* ====================== SERVICES SECTION ====================== */
.services-section { padding: 5rem 0; background: var(--cream); }
.section-title { text-align: center; font-size: 2.8rem; color: var(--gold); margin-bottom: 3rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--dark-2); border-radius: 16px; padding: 2rem;
  text-align: center; transition: all 0.4s; border: 1px solid #333;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ... keep all previous styles ... */

/* ====================== SERVICE CARD IMAGE ====================== */
.service-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* Adjust card padding to accommodate image */
.service-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Icon now smaller under image */
.icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin: 0.8rem 0;
}

/* Responsive image height */
@media (max-width: 768px) {
  .service-image { height: 140px; }
}
.icon {
  font-size: 2.8rem; color: var(--gold); margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.6rem; margin-bottom: 0.8rem; color: #fff;
}
.service-card p {
  color: #ccc; margin-bottom: 1.2rem; font-size: 0.95rem;
}
.price {
  font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-bottom: 1.2rem;
}
.btn-service {
  display: inline-block; background: var(--gold); color: #000;
  padding: 0.75rem 2rem; border-radius: 50px; font-weight: 700;
  transition: all 0.3s; box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}
.btn-service:hover {
  background: var(--gold-dark); transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

/* ====================== FOOTER ====================== */
.footer { background: var(--dark-2); color: #ccc; padding: 4rem 0 2rem; border-top: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-bottom: 2rem; }
.footer-col h3, .footer-col h4 { color: var(--gold); margin-bottom: 1.2rem; font-size: 1.4rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-col ul a:hover, .social a:hover { color: var(--gold); }
.social a { transition: all 0.3s; }
.social a:hover { transform: translateY(-4px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #333; font-size: 0.9rem; color: #888; }

/* ====================== ANIMATIONS ====================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .navbar .container { flex-direction: column; gap: 1rem; }
  .nav-links { display: none; flex-direction: column; width: 100%; background: #111; padding: 1rem 0; text-align: center; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .page-hero h1 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: 1fr; }
}