/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #121212;
  --bg-card: #1e1e1e;
  --bg-input: #171717;
  --border-color: #2e2e2e;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --color-red: #e63946;
  --color-red-hover: #c92a37;
  --color-gold: #f4a261;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Global Image Safety Rule */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Logo & Image Sizing (Strict Bounds)
   ========================================================================== */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-gold);
}

.hero-logo-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 180px;
  height: 180px;
  max-width: 180px;
  max-height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.4), 0 0 15px rgba(244, 162, 97, 0.3);
  border: 2px solid rgba(244, 162, 97, 0.6);
  transition: transform 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.03);
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.text-muted {
  color: var(--text-muted);
}

.text-red {
  color: var(--color-red);
}

.text-gold {
  color: var(--color-gold);
}

.text-center {
  text-align: center;
}

.bg-card-subtle {
  background-color: #161616;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.mb-4 {
  margin-bottom: 1.5rem;
}

/* Grids */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  height: 75px;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-gold);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 9999px;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 0.85rem;
}

.btn-red {
  background-color: var(--color-red);
  color: #fff;
}

.btn-red:hover {
  background-color: var(--color-red-hover);
}

.btn-outline {
  background-color: #262626;
  color: #fff;
  border-color: var(--border-color);
}

.btn-outline:hover {
  background-color: #333333;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background-color: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: var(--color-red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 9rem;
  padding-bottom: 6rem;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, #2b181b 0%, var(--bg-dark) 70%);
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.text-gradient {
  background: linear-gradient(90deg, var(--color-red), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 1rem;
}

.feature-card h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Photo Gallery Grid (2x2 Compact)
   ========================================================================== */
.gallery-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 550px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 160px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease-in-out;
}

.modal-content-wrapper {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-caption {
  margin-top: 1rem;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-red);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-featured {
  border: 2px solid var(--color-red);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0.25rem 0 0.5rem 0;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.card-list {
  list-style: none;
  font-size: 0.875rem;
  color: #d1d5db;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Steps / How It Works
   ========================================================================== */
.step-card {
  padding: 1.5rem;
}

.step-number {
  width: 3.25rem;
  height: 3.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 1.25rem auto;
}

.step-gold {
  color: var(--color-gold);
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Booking Form
   ========================================================================== */
.form-container {
  max-width: 750px;
}

.form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.form-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-red);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
  .form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ==========================================================================
   FAQ & Social CTA
   ========================================================================== */
.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
}

.faq-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.faq-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.instagram-cta-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-color);
}

.instagram-banner {
  background: linear-gradient(145deg, #18151c 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-badges-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.instagram-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
}

.facebook-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);
}

.instagram-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.instagram-subtext {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.social-button-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 540px) {
  .social-button-group {
    flex-direction: row;
  }
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-instagram:hover,
.btn-facebook:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 2.5rem 0;
  background-color: #0b0b0b;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-social-link {
  color: var(--text-muted);
  font-size: 1.35rem;
  transition: all 0.2s ease;
}

.footer-social-link.ig:hover {
  color: #e1306c;
}

.footer-social-link.fb:hover {
  color: #1877f2;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .hero-logo-img {
    width: 140px;
    height: 140px;
  }
  .brand-name {
    display: none;
  }
}

.deposit-notice {
  background-color: rgba(244, 162, 97, 0.08);
  border: 1px solid rgba(244, 162, 97, 0.25);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.deposit-notice i {
  font-size: 1.1rem;
  flex-shrink: 0;
}