:root {
  --primary-gradient: linear-gradient(135deg, #e91e63, #9c27b0);
  --primary-color: #e91e63; /* Fallback for solid color */
  --primary-hover: #d81b60;
  --secondary-color: #2a2a2a;
  --text-dark: #ffffff; /* It's a dark theme, so text is light */
  --text-light: #e0e0e0;
  --bg-color: #0f0f0f;
  --card-bg: #1a1a1a;
  --border-color: #333333;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: #ff4081;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo img {
  height: 40px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff !important;
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/hero.jpg') center/cover;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.hero p {
  font-size: 20px;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/* Sections */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.feature-card p {
  color: var(--text-light);
}

/* Content Area */
.content-area {
  background-color: var(--bg-color);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
}

/* Expanded content layout for landing/content pages */
.home-content-area,
.wide-page .content-area {
  max-width: 1320px;
  padding-left: 28px;
  padding-right: 28px;
}

.home-content-wrapper,
.wide-page .content-wrapper {
  max-width: 100%;
  padding: 52px;
}

.home-page .content-wrapper > h2,
.home-page .content-wrapper > h3,
.home-page .content-wrapper > p,
.home-page .content-wrapper > ul,
.wide-page .content-wrapper > h2,
.wide-page .content-wrapper > h3,
.wide-page .content-wrapper > p,
.wide-page .content-wrapper > ul {
  max-width: 980px;
}

.home-page .features-grid,
.wide-page .features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .cards-grid,
.wide-page .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .cta-banner,
.wide-page .cta-banner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper h2 {
  font-size: 32px;
  margin: 0 0 25px;
  color: #fff;
}

.content-wrapper h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #fff;
}

.content-wrapper p {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--text-light);
}

.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-light);
}

.content-wrapper li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Call to Action Banner */
.cta-banner {
  background: var(--card-bg);
  text-align: center;
  padding: 60px 40px;
  border-radius: 16px;
  margin: 40px 0;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-banner h2 {
  margin-top: 0;
  color: #fff;
  margin-bottom: 15px;
}

.cta-banner p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 18px;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.image-grid img {
  border-radius: 12px;
  object-fit: cover;
  height: 300px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Reviews / Cities Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

.card-content p {
  margin-bottom: 25px;
  color: var(--text-light);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--text-light);
}

/* Footer */
footer {
  background-color: #111111;
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gradient);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: #888;
}

/* Utility Classes */
.mt-30 { margin-top: 30px; }
.my-40 { margin: 40px 0; }
.my-60 { margin: 60px 0; }
.text-center { text-align: center; }

.btn-lg {
  font-size: 20px;
  padding: 15px 40px;
}

.btn-xl {
  font-size: 22px;
  padding: 18px 50px;
}

.grid-2-cols {
  grid-template-columns: 1fr 1fr;
}

/* Hero Backgrounds */
.bg-les12 { background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/les12.jpg') center/cover !important; }
.bg-les18 { background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/les18.jpg') center/cover !important; }
.bg-20123 { background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/20123.jpg') center/cover !important; }
.bg-les41 { background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/les41.jpg') center/cover !important; }
.bg-les21 { background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/les21.jpg') center/cover !important; }
.bg-829 { background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/829.jpg') center/cover !important; }

/* Mobile Responsive */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-gradient);
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 71px; /* Header height */
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    text-align: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  section {
    padding: 50px 0;
  }
  
  .content-wrapper {
    padding: 25px;
  }

  .home-content-area,
  .wide-page .content-area {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-content-wrapper,
  .wide-page .content-wrapper {
    padding: 25px;
  }

  .home-page .content-wrapper > h2,
  .home-page .content-wrapper > h3,
  .home-page .content-wrapper > p,
  .home-page .content-wrapper > ul,
  .home-page .cta-banner,
  .wide-page .content-wrapper > h2,
  .wide-page .content-wrapper > h3,
  .wide-page .content-wrapper > p,
  .wide-page .content-wrapper > ul,
  .wide-page .cta-banner {
    max-width: none;
  }

  .home-page .features-grid,
  .home-page .cards-grid,
  .wide-page .features-grid,
  .wide-page .cards-grid {
    grid-template-columns: 1fr;
  }
}
