:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #f8f9fa;
  --dark: #212529;
  --text: #333;
  --footer: #1a252f;
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn:hover {
  background: #2980b9;
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--accent);
}

.btn-accent:hover {
  background: #c0392b;
}

header {
  background-color: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin-right: 20px;
}

.nav-item {
  margin-left: 25px;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-color: #0b0b0b;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 20px;
}

.hero-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 25px;
}

.section {
  padding: 70px 0;
  background-color: white;
}

.section.alt {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 24px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(52, 152, 219, 0.12);
  color: var(--secondary);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

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

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cta {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #2c3e50, #1a252f);
  color: white;
}

.cta h2 {
  color: white;
  margin-bottom: 12px;
}

footer {
  background-color: var(--footer);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-heading {
  color: white;
  margin-bottom: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo-text {
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #aaa;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }
  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 0;
    gap: 10px;
  }
  .nav-item {
    margin-left: 0;
  }
  .nav-cta {
    padding: 8px 16px;
  }
  .hero {
    height: 60vh;
  }
}
