/* ============================================================================
   1. IMPORTS & FONTS
   ============================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,600;1,400&display=swap");


/* ============================================================================
   2. CSS VARIABLES (Design Tokens)
   ============================================================================ */
:root {
  /* ── Brand Colors ── */
  --brand-primary:       #0098a1;
  --brand-primary-dark:  #007880;
  --brand-accent:        #feca57;

  /* ── Backgrounds ── */
  --color-bg:            #1e1e2e;
  --color-surface:       #ffffff;
  --dark-bg:             #0a0a0a;
  --dark-card:           #161616;

  /* ── Text Colors ── */
  --color-text:          #1a1a2e;
  --color-muted:         #6b7280;
  --color-white:         #ffffff;
  --text-bright:         rgba(255, 255, 255, 0.92);
  --text-dim:            rgba(255, 255, 255, 0.65);
  --text-muted:          rgba(255, 255, 255, 0.4);

  /* ── Gold Accents (Footer) ── */
  --gold:                #c9a96e;
  --gold-light:          #e8c992;
  --border:              rgba(255, 255, 255, 0.07);
  --border-gold:         rgba(201, 169, 110, 0.25);

  /* ── Header Layout ── */
  --header-width:        95%;
  --header-radius:       5rem;
  --header-top:          1rem;
  --header-padding:      0.8rem 2rem;

  /* ── Shadows ── */
  --shadow-md:           0 0.5rem 1rem rgba(0, 0, 0, 0.12);
  --shadow-lg:           0 0.5rem 1.5rem rgba(0, 0, 0, 0.22);
  --shadow-xl:           0 1rem 3rem rgba(0, 0, 0, 0.3);

  /* ── Typography ── */
  --font-display:        "Syne", sans-serif;
  --font-body:           "DM Sans", sans-serif;
  --font-serif:          "Playfair Display", serif;
  --font-luxury:         "Cormorant Garamond", serif;

  /* ── Transitions ── */
  --transition-fast:     0.2s ease;
  --transition-base:     0.3s ease;
  --transition-slow:     0.4s ease;

  /* ── Z-Index Scale ── */
  --z-fixed:             1000;
}


/* ============================================================================
   3. RESET & BASE STYLES
   ============================================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Selection ── */
::selection {
  background: var(--brand-primary);
  color: var(--color-white);
}

/* ── Links ── */
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--brand-primary);
}

/* ── Lists ── */
ul {
  list-style: none;
}

/* ── Images ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Interactive Elements ── */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================================================
   4. BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
}

/* ── Primary Button ── */
.btn-primary {
  background: var(--brand-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── Outline Button ── */
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

/* ── Search Button ── */
.btn-search {
  width: 100%;
  background: var(--brand-primary);
  color: var(--color-white);
  padding: 1.1rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-base);
}
.btn-search:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


/* ============================================================================
   5. HEADER & NAVIGATION
   ============================================================================ */
#header {
  width: var(--header-width);
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-padding);
  border-radius: var(--header-radius);
  position: fixed;
  top: var(--header-top);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
  z-index: var(--z-fixed);
  transition:
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}
#header.shadow {
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.98);
}

/* ── Logo ── */
#header .logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text);
}
#header .logo span {
  color: var(--brand-primary);
}

/* ── Desktop Navigation ── */
#header .navbar ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#header .navbar ul li {
  position: relative;
}
#header .navbar ul li::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background-color: var(--brand-primary);
  transition: transform var(--transition-base);
}
#header .navbar ul li:hover::after {
  transform: translateX(-50%) scaleX(1);
}
#header .navbar ul li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 0.5rem;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast);
}
#header .navbar ul li a:hover,
#header .navbar ul li a.active {
  color: var(--brand-primary);
  background-color: rgba(0, 152, 161, 0.08);
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: var(--z-fixed);
  padding: 0.5rem;
}
.hamburger i {
  font-size: 1.5rem;
  color: var(--color-text);
  transition:
    color var(--transition-fast),
    transform 0.2s ease;
}
.hamburger:hover i,
.hamburger.active i {
  color: var(--brand-primary);
}
#menu-bars.rotated {
  transform: rotate(90deg);
}

/* ── Mobile Navigation (≤992px) ── */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }
  #header {
    width: 96%;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
  }
  #header .logo {
    font-size: 1.5rem;
  }
  #header .navbar {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 5rem);
    background-color: var(--color-surface);
    overflow-y: auto;
    padding: 1.5rem 1rem 3rem;
    z-index: calc(var(--z-fixed) - 1);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform var(--transition-slow),
      opacity var(--transition-slow),
      visibility var(--transition-slow);
  }
  #header .navbar.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  #header .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
  #header .navbar ul li {
    width: 100%;
    border-radius: 1rem;
    transition: background-color var(--transition-fast);
  }
  #header .navbar ul li:hover {
    background-color: #f8f9fa;
  }
  #header .navbar ul li::after {
    display: none;
  }
  #header .navbar ul li a {
    font-size: 1.1rem;
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
  }
  #header .navbar ul li a.active {
    background-color: rgba(0, 152, 161, 0.12);
    color: var(--brand-primary);
  }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  #header .logo {
    font-size: 1.4rem;
  }
  #header .navbar ul li a {
    font-size: 1rem;
    padding: 12px 16px;
  }
}

/* ── Scroll Lock ── */
body.no-scroll {
  overflow: hidden;
}


/* ============================================================================
   6. HERO / HOME SECTION
   ============================================================================ */
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10rem 2rem 5rem;
  overflow: hidden;
  color: var(--color-white);
}

/* ── Background Video ── */
.video-container {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 46, 0.9) 0%,
    rgba(0, 152, 161, 0.35) 40%,
    rgba(30, 30, 46, 0.92) 100%
  );
  z-index: -1;
}

/* ── Hero Content ── */
.home .content {
  text-align: center;
  max-width: 900px;
  margin-bottom: 3rem;
  padding: 0 1rem;
  animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home .content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.home .content h1 span {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home .content p {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  max-width: 700px;
}

/* ── CTA Buttons ── */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Search Form ── */
.form-container {
  width: 100%;
  max-width: 950px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-xl);
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.search-form h3 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.search-form h3 i {
  color: var(--brand-primary);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-group label i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}
.form-group input,
.form-group select {
  padding: 0.95rem 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  background: #f9fafb;
  color: var(--color-text);
  transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(0, 152, 161, 0.1);
}
.form-group input::placeholder {
  color: var(--color-muted);
}

/* ── Hero Responsive ── */
@media (max-width: 992px) {
  .home {
    padding: 8rem 1.5rem 4rem;
  }
  .form-container {
    padding: 1.8rem 2rem;
    border-radius: 1.5rem;
  }
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .home .content h1 {
    font-size: 1.9rem;
  }
  .form-container {
    margin: 0 0.5rem;
    padding: 1.5rem;
  }
  .search-form h3 {
    font-size: 1.25rem;
  }
}


/* ============================================================================
   7. FEATURES SECTION
   ============================================================================ */
.feature {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #e1f5ee 0%, #eeedfe 50%, #fbeaf0 100%);
}

/* ── Section Heading ── */
.section-badge {
  display: inline-block;
  font-size: 1.2rem;
  padding: 5px 16px;
  border-radius: 99px;
  background: #fff;
  color: #888;
  border: 1px solid #e0e0e0;
  margin-bottom: 12px;
}
.feature-heading {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}
.feature-heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-text);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin: 0 0 8px;
  width: 100%;
  text-align: center;
}
.feature-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
}
.feature-heading p {
  font-size: 1.4rem;
  color: var(--color-muted);
  margin-top: 16px;
}

/* ── Feature Grid ── */
.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .box-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: auto;
  }
}

/* ── Feature Card Base ── */
.feat-box {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.feat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2rem 2rem 0 0;
}

/* ── Card Themes ── */
/* Adventure */
.box-adventure {
  background: linear-gradient(160deg, #ffffff 0%, #e1f5ee 100%);
}
.box-adventure::before {
  background: #1d9e75;
}
.box-adventure:hover {
  background: linear-gradient(160deg, #e1f5ee 0%, #9fe1cb 100%);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(29, 158, 117, 0.15);
}
/* Travel */
.box-travel {
  background: linear-gradient(160deg, #ffffff 0%, #eeedfe 100%);
}
.box-travel::before {
  background: #534ab7;
}
.box-travel:hover {
  background: linear-gradient(160deg, #eeedfe 0%, #cecbf6 100%);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(83, 74, 183, 0.15);
}
/* Comfort */
.box-comfort {
  background: linear-gradient(160deg, #ffffff 0%, #fbeaf0 100%);
}
.box-comfort::before {
  background: #d4537e;
}
.box-comfort:hover {
  background: linear-gradient(160deg, #fbeaf0 0%, #f4c0d1 100%);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212, 83, 126, 0.15);
}

/* ── Card Content ── */
.icon-wrap {
  width: 6rem;
  height: 6rem;
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  transition: transform 0.3s;
}
.feat-box:hover .icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.icon-adventure { background: #e1f5ee; color: #0f6e56; }
.icon-travel    { background: #eeedfe; color: #3c3489; }
.icon-comfort   { background: #fbeaf0; color: #72243e; }

.feat-box h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.8rem;
}
.feat-box p {
  font-size: 1.4rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

/* ── Stars & Badges ── */
.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: #ba7517;
}
.feat-badge {
  display: inline-block;
  font-size: 1.2rem;
  padding: 4px 14px;
  border-radius: 99px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: 70%;
}
.badge-adventure { background: #e1f5ee; color: #0f6e56; }
.badge-travel    { background: #eeedfe; color: #534ab7; }
.badge-comfort   { background: #fbeaf0; color: #72243e; }

/* ── Card Button ── */
.feat-box .btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.8rem 2.2rem;
  border-radius: 99px;
  font-size: 1.3rem;
  font-weight: 600;
  background: transparent;
  border: 2px solid;
  transition: background 0.3s, color 0.3s;
}
.box-adventure .btn { border-color: #1d9e75; color: #1d9e75; }
.box-travel    .btn { border-color: #534ab7; color: #534ab7; }
.box-comfort   .btn { border-color: #d4537e; color: #d4537e; }
.box-adventure .btn:hover { background: #1d9e75; color: #fff; }
.box-travel    .btn:hover { background: #534ab7; color: #fff; }
.box-comfort   .btn:hover { background: #d4537e; color: #fff; }


/* ============================================================================
   8. ABOUT SECTION
   ============================================================================ */
.about {
  padding: 5rem 6rem;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.56) 0%,
    rgba(30, 173, 78, 0.56) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* ── Decorative Blobs ── */
.about::before,
.about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about::before {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(83, 74, 183, 0.15) 0%, transparent 70%);
}
.about::after {
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.12) 0%, transparent 70%);
}

/* ── Section Heading ── */
.heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #e8e6f0;
  margin: 0 0 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  position: relative;
  padding-top: 20px;
}
.heading span {
  color: #7f77dd;
  font-style: italic;
}
.heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #7f77dd;
  margin: 1rem auto 0;
}

/* ── Layout ── */
.about .row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Image ── */
.about .image {
  position: relative;
  transition: box-shadow 0.4s;
}
.about .image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px 60px 2px 60px;
}
.about .image:hover {
  box-shadow: 0 4px 20px rgba(215, 36, 36, 0.15);
}
.about .image::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(127, 119, 221, 0.4);
  border-radius: 50%;
  z-index: 2;
}
.about .image::after {
  content: "Est. Since 2010";
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #7f77dd;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(83, 74, 183, 0.4);
}

/* ── Content ── */
.about .content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #e8e6f0;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.about .content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(232, 230, 240, 0.6);
  margin: 0 0 1rem;
  font-weight: 300;
}
.about .content p + p {
  color: rgba(232, 230, 240, 0.45);
  font-size: 14px;
}

/* ── Stats ── */
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(127, 119, 221, 0.2);
  border-bottom: 1px solid rgba(127, 119, 221, 0.2);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #7f77dd;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 230, 240, 0.4);
  font-weight: 500;
}

/* ── Buttons ── */
.btn-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.about .btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.about .btn-primary {
  background: #534ab7;
  color: #fff;
  border: none;
}
.about .btn-primary:hover {
  background: #7f77dd;
  transform: translateY(-2px);
}
.about .btn-outline {
  background: transparent;
  color: #afa9ec;
  border: 1px solid rgba(127, 119, 221, 0.45);
}
.about .btn-outline:hover {
  background: rgba(83, 74, 183, 0.15);
  color: #e8e6f0;
  transform: translateY(-2px);
}

/* ── About Responsive ── */
@media (max-width: 768px) {
  .about {
    padding: 3rem 1.5rem;
  }
  .about .row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about .image::after {
    bottom: -12px;
    right: -8px;
  }
}


/* ============================================================================
   9. GALLERY SECTION
   ============================================================================ */
.gallery {
  padding: 5rem 6rem;
  background: linear-gradient(135deg, #ec1a1a 0%, #46b95b 100%);
  position: relative;
  overflow: hidden;
}
.gallery .heading::after {
  background: #2313d0;
  width: 80px;
}

/* ── Grid Layout ── */
.gallery .box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.gallery .box {
  position: relative;
  border-radius: 2px 32px 2px 32px;
  overflow: hidden;
  cursor: pointer;
}
.gallery .box:nth-child(2) {
  margin-top: 2rem;
}

/* ── Image & Hover Effects ── */
.gallery .box img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: brightness(0.75);
  transition:
    filter 0.4s ease,
    transform 0.5s ease;
}
.gallery .box:hover img {
  filter: brightness(0.4);
  transform: scale(1.04);
}

/* ── Overlay Elements ── */
.gallery .box-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(127, 119, 221, 0.25);
  z-index: 2;
  pointer-events: none;
  transition: color 0.3s;
}
.gallery .box:hover .box-num {
  color: rgba(127, 119, 221, 0.5);
}

/* ── Action Icons ── */
.gallery .icons {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.3s ease;
}
.gallery .box:hover .icons {
  opacity: 1;
}
.gallery .icon {
  width: 34px;
  height: 34px;
  background: rgba(20, 16, 50, 0.75);
  border: 0.5px solid rgba(127, 119, 221, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #afa9ec;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.gallery .icon:hover {
  background: #534ab7;
  color: #fff;
}

/* ── Content Overlay ── */
.gallery .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(10, 8, 30, 0.95) 0%,
    rgba(10, 8, 30, 0.6) 60%,
    transparent 100%
  );
  z-index: 2;
}
.gallery .content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8e6f0;
  margin: 0 0 0.5rem;
}
.gallery .content p {
  font-size: 13px;
  color: rgba(232, 230, 240, 0.6);
  line-height: 1.65;
  margin: 0 0 1rem;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}
.gallery .box:hover .content p {
  max-height: 80px;
  opacity: 1;
}
.gallery .content .btn {
  display: inline-block;
  padding: 8px 20px;
  background: #534ab7;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.2s;
}
.gallery .box:hover .content .btn {
  opacity: 1;
  transform: translateY(0);
}
.gallery .content .btn:hover {
  background: #7f77dd;
}

/* ── Gallery Responsive ── */
@media (max-width: 900px) {
  .gallery {
    padding: 3.5rem 2rem;
  }
  .gallery .box-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery .box:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 560px) {
  .gallery {
    padding: 3rem 1.25rem;
  }
  .gallery .box-container {
    grid-template-columns: 1fr;
  }
}


/* ============================================================================
   10. REVIEWS SECTION
   ============================================================================ */
.review .box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 50px;
  padding: 10px;
}
.review .box-container .box {
  background-color: rgb(117 105 105 / 27%);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.5s,
    box-shadow 0.5s;
}
.review .box-container .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(215, 36, 36, 0.15);
}
.review .box-container .box .content img {
  border-radius: 15px;
  object-fit: cover;
  margin-right: 10px;
  transition: transform 0.5s;
}
.review .box-container .box .content img:hover {
  transform: scale(0.95);
}

@media (max-width: 698px) {
  .review .box-container {
    grid-template-columns: 1fr;
  }
}


/* ============================================================================
   11. CONTACT SECTION
   ============================================================================ */
.contact {
  padding: 5rem 6rem;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.56) 0%,
    rgba(30, 173, 78, 0.56) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* ── Layout ── */
.contact .row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .contact .row {
    grid-template-columns: 1fr;
  }
}

/* ── Image ── */
.contact .row .image {
  position: relative;
  z-index: 1;
  height: fit-content;
  overflow: hidden;
  transition: 0.4s;
}
.contact .row .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -19px;
  width: 50px;
  height: 64px;
  border-radius: 200%;
  background: #534ab7;
  z-index: 2;
}
.contact .row .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* ── Form ── */
.contact .row .form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}
.contact .row .form input {
  padding: 10px;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  background: #f9fafb;
  color: var(--color-text);
  transition: all var(--transition-fast);
}
.contact .row .form textarea {
  padding: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 2px;
}
.contact .row .form button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  background: #534ab7;
  color: #fff;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.contact .row .form button:hover {
  background: #7f77dd;
  transform: translateY(-2px);
}


/* ============================================================================
   12. FOOTER
   ============================================================================ */
/* ── Top Divider ── */
.pf-top-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* ── Main Layout ── */
.pf-main {
  display: grid;
  grid-template-columns: 1fr 1px 1.15fr;
  min-height: 460px;
}
@media (max-width: 768px) {
  .pf-main {
    grid-template-columns: 1fr;
  }
}
.pf-divider-v {
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
  margin: 40px 0;
}

/* ── Left Column ── */
.pf-left {
  padding: 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

/* Brand */
.pf-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pf-logo-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--dark-card);
}
.pf-logo-ring img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.pf-logo-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 60%, var(--gold) 80%, transparent 100%);
  animation: spin 6s linear infinite;
  opacity: 0.6;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.pf-brand-text {
  font-family: var(--font-luxury);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-bright);
  line-height: 1.2;
}
.pf-brand-sub {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Navigation */
.pf-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.pf-nav-col h4 {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}
.pf-nav-col li {
  margin-bottom: 10px;
}
.pf-nav-col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.3s, gap 0.3s;
}
.pf-nav-col a::before {
  content: "—";
  font-size: 10px;
  color: var(--gold);
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.3s, width 0.3s;
  margin-right: 0;
}
.pf-nav-col a:hover {
  color: var(--text-bright);
  gap: 8px;
}
.pf-nav-col a:hover::before {
  opacity: 1;
  width: 14px;
  margin-right: 6px;
}

/* Bottom Area */
.pf-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pf-charity {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.pf-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.pf-meta span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.pf-meta a {
  color: var(--gold);
  transition: color 0.3s;
}
.pf-meta a:hover {
  color: var(--gold-light);
}
.pf-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 4px;
  vertical-align: middle;
}

/* ── Right Column (Video) ── */
.pf-right {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.pf-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.pf-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 2;
}
.pf-video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 56px 56px;
}

/* Newsletter */
.pf-newsletter-header h3 {
  font-family: var(--font-luxury);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.pf-newsletter-header h3 em {
  font-style: italic;
  color: var(--gold);
}
.pf-newsletter-header p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.pf-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pf-input-row {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.pf-input-row:focus-within {
  border-color: var(--border-gold);
}
.pf-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.03em;
}
.pf-input-row input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.pf-submit-btn {
  background: var(--gold);
  border: none;
  padding: 16px 24px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dark-bg);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s, padding 0.3s;
}
.pf-submit-btn:hover {
  background: var(--gold-light);
  padding-right: 30px;
}
.pf-privacy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}
.pf-success-msg {
  display: none;
  padding: 14px 20px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-align: center;
}

/* Social Links */
.pf-social {
  display: flex;
  align-items: center;
}
.pf-social-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  margin-right: 20px;
}
.pf-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
  border-radius: 2px;
  transition:
    color 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.pf-social-link:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

/* ── Bottom Bar ── */
.pf-bottom-bar {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pf-copyright {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.pf-copyright strong {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.pf-legal-links {
  display: flex;
  gap: 24px;
}
.pf-legal-links a {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.pf-legal-links a:hover {
  color: var(--gold);
}