/*=========================================================
    NIDHI MEHNDI ARTIST
    PREMIUM DESIGN SYSTEM
=========================================================*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  /*=========================================================
    COLORS
=========================================================*/

  --primary: #d4af37;
  --primary-light: #f1d36b;
  --primary-dark: #b78a09;

  --secondary: #8b1e3f;

  --accent: #f8e7b0;

  --white: #ffffff;

  --black: #000000;

  /*=========================================================
    BACKGROUND
=========================================================*/

  --bg: #0b0b0d;

  --bg-secondary: #121214;

  --bg-card: #18181c;

  --bg-light: #232329;

  --glass: rgba(255, 255, 255, 0.06);

  /*=========================================================
    TEXT
=========================================================*/

  --text: #f5f5f5;

  --text-light: #d2d2d2;

  --text-muted: #999999;

  /*=========================================================
    BORDER
=========================================================*/

  --border: rgba(255, 255, 255, 0.08);

  --gold-border: rgba(212, 175, 55, 0.35);

  --border-hover: rgba(212, 175, 55, 0.6);

  /*=========================================================
    GRADIENTS
=========================================================*/

  --gold-gradient: linear-gradient(
    135deg,
    #f7e59a 0%,
    #d4af37 40%,
    #b78a09 100%
  );

  --gold-gradient-hover: linear-gradient(135deg, #ffeaa0, #e0b840, #b8860b);

  --dark-gradient: linear-gradient(145deg, #1d1d22, #101012);

  --hero-overlay: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.78)
  );

  --glass-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  --premium-card: linear-gradient(145deg, #222228, #151519);

  --footer-gradient: linear-gradient(180deg, #090909, #121212);

  /*=========================================================
    SHADOWS
=========================================================*/

  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.15);

  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.25);

  --shadow-md: 0 20px 45px rgba(0, 0, 0, 0.35);

  --shadow-lg: 0 35px 80px rgba(0, 0, 0, 0.5);

  --gold-shadow: 0 0 40px rgba(212, 175, 55, 0.25);

  --hover-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);

  /*=========================================================
    BLUR
=========================================================*/

  --blur-xs: 6px;

  --blur-sm: 10px;

  --blur-md: 18px;

  --blur-lg: 30px;

  /*=========================================================
    BORDER RADIUS
=========================================================*/

  --radius-xs: 6px;

  --radius-sm: 12px;

  --radius-md: 20px;

  --radius-lg: 30px;

  --radius-xl: 50px;

  --radius-round: 50%;

  /*=========================================================
    TYPOGRAPHY
=========================================================*/

  --heading-font: "Cormorant Garamond", serif;

  --body-font: "Poppins", sans-serif;

  /*=========================================================
    FONT SIZE
=========================================================*/

  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-60: 3.75rem;
  --fs-72: 4.5rem;

  /*=========================================================
    FONT WEIGHT
=========================================================*/

  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi: 600;
  --bold: 700;
  --extra: 800;

  /*=========================================================
    SPACING
=========================================================*/

  --space-5: 5px;
  --space-10: 10px;
  --space-15: 15px;
  --space-20: 20px;
  --space-30: 30px;
  --space-40: 40px;
  --space-50: 50px;
  --space-60: 60px;
  --space-80: 80px;
  --space-100: 100px;
  --space-120: 120px;

  /*=========================================================
    CONTAINER
=========================================================*/

  --container: 1320px;

  --container-lg: 1440px;

  /*=========================================================
    TRANSITIONS
=========================================================*/

  --transition-fast: 0.2s ease;

  --transition: 0.35s ease;

  --transition-slow: 0.6s ease;

  --transition-extra: 1s ease;

  /*=========================================================
    Z INDEX
=========================================================*/

  --loader: 999999;

  --popup: 99999;

  --header: 9999;

  --overlay: 999;

  --widget: 500;

  --scrolltop: 400;
}

/*=========================================================
    LIGHT MODE
=========================================================*/

/*=========================================================
    2. RESET & BASE STYLES
=========================================================*/

/*=================================
    RESET
=================================*/

*,
*::before,
*::after {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;

  font-size: 16px;

  overflow-x: hidden;

  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);

  font-size: var(--fs-16);

  line-height: 1.7;

  color: var(--text);

  background: var(--bg);

  overflow-x: hidden;

  position: relative;

  text-rendering: optimizeLegibility;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  transition:
    background 0.4s ease,
    color 0.4s ease;
}

/*=================================
    SELECTION
=================================*/

::selection {
  background: var(--primary);

  color: var(--black);
}

::-moz-selection {
  background: var(--primary);

  color: var(--black);
}

/*=================================
    SCROLLBAR
=================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-gradient);

  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/*=================================
    TYPOGRAPHY
=================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);

  color: var(--white);

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: 0.4px;
}

.small-heading,
.about-founder {
  font-size: 2em;
}


p {
  color: var(--text-light);

  margin-bottom: 18px;
}

strong {
  color: var(--primary);

  font-weight: 600;
}

/*=================================
    LINKS
=================================*/

a {
  text-decoration: none;

  color: inherit;

  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

/*=================================
    LISTS
=================================*/

ul,
ol {
  list-style: none;
}

/*=================================
    IMAGES
=================================*/

img {
  display: block;

  width: 100%;

  max-width: 100%;

  height: auto;

  object-fit: cover;

  user-select: none;
}

/*=================================
    BUTTONS
=================================*/

button {
  font: inherit;

  border: none;

  background: none;

  cursor: pointer;

  outline: none;
}

input,
textarea,
select {
  font: inherit;

  color: inherit;

  background: none;

  border: none;

  outline: none;
}

textarea {
  resize: none;
}

/*=================================
    TABLES
=================================*/

table {
  border-collapse: collapse;

  width: 100%;
}

/*=================================
    IFRAME
=================================*/

iframe {
  width: 100%;

  border: none;

  display: block;
}

/*=================================
    CONTAINER
=================================*/

.container {
  width: min(92%, var(--container));

  margin-inline: auto;
}

/*=================================
    SECTION
=================================*/

.section {
  position: relative;

  padding: var(--space-120) 0;
}

@media (max-width: 992px) {
  .section {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

/*=================================
    SECTION HEADER
=================================*/

.section-header {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}

.section-tag {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 10px 24px;

  border-radius: 50px;

  color: var(--primary);

  background: rgba(212, 175, 55, 0.08);

  border: 1px solid var(--gold-border);

  font-size: var(--fs-14);

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);

  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary);
}

.section-description {
  font-size: var(--fs-18);

  color: var(--text-light);

  max-width: 700px;

  margin: auto;
}

/*=================================
    UTILITIES
=================================*/

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none !important;
}

.shadow {
  box-shadow: var(--shadow-lg);
}

.rounded {
  border-radius: var(--radius-lg);
}

/*=================================
    ACCESSIBILITY
=================================*/

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus-visible {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: var(--bg);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 999px;
  clip: auto;
  z-index: 100000;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--primary);

  outline-offset: 4px;
}

html:focus-within {
  scroll-behavior: smooth;
}
/*=========================================================
    3. GLOBAL COMPONENTS
=========================================================*/

/*=========================================================
    BUTTONS
=========================================================*/

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 16px 36px;

  border-radius: 50px;

  cursor: pointer;

  position: relative;

  overflow: hidden;

  font-size: var(--fs-16);

  font-weight: 600;

  transition: all 0.4s ease;

  user-select: none;

  white-space: nowrap;
}

.btn i {
  font-size: 18px;
}

/*=========================
Primary Button
=========================*/

.btn-primary {
  background: var(--gold-gradient);

  color: #111;

  box-shadow: var(--gold-shadow);

  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-6px);

  background: var(--gold-gradient-hover);

  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.45);
}

/*=========================
Outline Button
=========================*/

.btn-outline {
  background: transparent;

  color: var(--white);

  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--gold-gradient);

  color: #111;

  transform: translateY(-6px);
}

/*=========================
Ghost Button
=========================*/

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--primary);

  color: var(--primary);
}

/*=========================================================
CARD
=========================================================*/

.card {
  background: var(--premium-card);

  border-radius: var(--radius-lg);

  border: 1px solid var(--border);

  padding: 40px;

  transition: 0.4s;

  position: relative;

  overflow: hidden;
}

.card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    130deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    transparent
  );

  opacity: 0;

  transition: 0.5s;
}

.card:hover {
  transform: translateY(-12px);

  border-color: var(--gold-border);

  box-shadow: var(--hover-shadow);
}

.card:hover::before {
  opacity: 1;
}

/*=========================================================
GLASS CARD
=========================================================*/

.glass {
  background: var(--glass-gradient);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: var(--radius-lg);
}

/*=========================================================
BADGE
=========================================================*/

.badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(212, 175, 55, 0.08);

  border: 1px solid var(--gold-border);

  color: var(--primary);

  font-size: 14px;

  font-weight: 600;
}

/*=========================================================
ICON BOX
=========================================================*/

.icon-box {
  width: 75px;

  height: 75px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gold-gradient);

  color: #111;

  font-size: 28px;

  box-shadow: var(--gold-shadow);

  transition: 0.4s;
}

.icon-box:hover {
  transform: rotate(8deg) scale(1.08);
}

/*=========================================================
RIBBON
=========================================================*/

.ribbon {
  position: absolute;

  top: 22px;

  right: -42px;

  width: 180px;

  text-align: center;

  padding: 8px 0;

  background: var(--gold-gradient);

  color: #111;

  font-size: 13px;

  font-weight: 700;

  transform: rotate(45deg);
}

/*=========================================================
SECTION DIVIDER
=========================================================*/

.section-divider {
  width: 120px;

  height: 3px;

  margin: 25px auto;

  border-radius: 20px;

  background: var(--gold-gradient);
}

/*=========================================================
IMAGE FRAME
=========================================================*/

.image-frame {
  position: relative;

  overflow: hidden;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);
}

.image-frame img {
  transition: 0.8s;
}

.image-frame:hover img {
  transform: scale(1.08);
}

/*=========================================================
FLOATING LABEL
=========================================================*/

.floating-label {
  position: absolute;

  top: 18px;

  left: 22px;

  pointer-events: none;

  transition: 0.3s;
}

/*=========================================================
RIPPLE EFFECT
=========================================================*/

.btn::after {
  content: "";

  position: absolute;

  width: 10px;

  height: 10px;

  background: white;

  border-radius: 50%;

  transform: scale(0);

  opacity: 0.4;

  transition: 0.6s;
}

.btn:active::after {
  transform: scale(30);

  opacity: 0;
}

/*=========================================================
HOVER UNDERLINE
=========================================================*/

.link {
  position: relative;
}

.link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -4px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.4s;
}

.link:hover::after {
  width: 100%;
}
/*=========================================================
    4. HEADER + NAVIGATION + HERO
=========================================================*/

/*=================================
    HEADER
=================================*/

#header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: var(--header);

  transition: 0.45s;
}

#header.scrolled {
  background: rgba(10, 10, 10, 0.82);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(212, 175, 55, 0.15);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/*=================================
    NAVBAR
=================================*/

.navbar {
  height: 90px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/*=================================
    LOGO
=================================*/

.logo {
  font-family: var(--heading-font);

  font-size: 32px;

  font-weight: 700;

  color: var(--white);

  letter-spacing: 1px;

  transition: 0.35s;
}

.logo span {
  color: var(--primary);
}

.logo:hover {
  transform: scale(1.04);
}

/*=================================
    NAV LINKS
=================================*/

.nav-links {
  display: flex;

  align-items: center;

  gap: 34px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;

  color: var(--white);

  font-weight: 500;

  font-size: 15px;

  transition: 0.35s;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--gold-gradient);

  transition: 0.35s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/*=================================
    BOOK BUTTON
=================================*/

.nav-btn {
  padding: 14px 28px;

  border-radius: 50px;

  background: var(--gold-gradient);

  color: #111;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 10px;

  transition: 0.35s;

  box-shadow: var(--gold-shadow);
}

.nav-btn:hover {
  transform: translateY(-4px);
}

/*=================================
    MOBILE MENU
=================================*/

.menu-toggle {
  width: 45px;

  height: 45px;

  display: none;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 6px;

  cursor: pointer;
}

.menu-toggle span {
  width: 28px;

  height: 3px;

  border-radius: 10px;

  background: var(--white);

  transition: 0.35s;
}

/*=================================
    HERO
=================================*/

.hero {
  position: relative;

  min-height: 100vh;

  padding: 140px 0 180px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

/*=================================
    HERO SLIDER
=================================*/

.hero-slider {
  position: absolute;

  inset: 0;

  z-index: -3;
}

.slide {
  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  opacity: 0;

  transition: opacity 1.2s ease;

  transform: scale(1);
}

.slide.active {
  opacity: 1;

  animation: kenburns 16s linear infinite;
}

/*=================================
    HERO OVERLAY
=================================*/

.hero-overlay {
  position: absolute;

  inset: 0;

  background: var(--hero-overlay);

  z-index: -2;
}

/*=================================
    DECORATION
=================================*/

.hero-decoration {
  position: absolute;

  inset: 0;

  pointer-events: none;
}

.circle {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.15);
}

.circle-1 {
  width: 340px;

  height: 340px;

  top: -120px;

  left: -120px;
}

.circle-2 {
  width: 220px;

  height: 220px;

  bottom: 90px;

  right: 120px;
}

.circle-3 {
  width: 120px;

  height: 120px;

  top: 35%;

  right: 15%;
}
/*=========================================================
    HERO CONTENT
=========================================================*/

.hero .container {
  position: relative;

  z-index: 20;
}

.hero-content {
  max-width: 760px;

  position: relative;
}

.hero-tag {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 28px;

  border-radius: 50px;

  background: rgba(212, 175, 55, 0.1);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(212, 175, 55, 0.25);

  color: var(--primary);

  margin-bottom: 25px;

  letter-spacing: 1px;

  text-transform: uppercase;

  font-size: 14px;

  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(4rem, 8vw, 7rem);

  line-height: 1;

  margin-bottom: 30px;

  color: #fff;
}

.hero-content h1 span {
  display: block;

  color: var(--primary);

  position: relative;
}

.hero-content h1 span::after {
  content: "";

  display: block;

  width: 160px;

  height: 4px;

  margin-top: 18px;

  border-radius: 50px;

  background: var(--gold-gradient);
}

.hero-content p {
  font-size: 20px;

  max-width: 650px;

  color: #eaeaea;

  margin-bottom: 45px;

  line-height: 1.9;
}

.hero-buttons {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

/*=========================================================
    HERO BUTTON SHIMMER
=========================================================*/

.btn-primary {
  position: relative;

  overflow: hidden;
}

.btn-primary::before {
  content: "";

  position: absolute;

  top: 0;

  left: -130%;

  width: 80px;

  height: 100%;

  transform: skewX(-25deg);

  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );

  transition: 1s;
}

.btn-primary:hover::before {
  left: 160%;
}

/*=========================================================
    FLOATING CARDS
=========================================================*/

.hero-card {
  position: absolute;

  width: 220px;

  padding: 25px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: var(--shadow-lg);

  animation: floatCard 5s ease-in-out infinite;
}

.hero-card i {
  color: var(--primary);

  font-size: 30px;

  margin-bottom: 15px;
}

.hero-card h4 {
  margin-bottom: 10px;
}

.hero-card p {
  margin: 0;

  color: #ddd;
}

.card-one {
  top: 22%;

  right: 8%;
}

.card-two {
  top: 48%;

  right: 3%;

  animation-delay: 1.5s;
}

.card-three {
  bottom: 12%;

  right: 10%;

  animation-delay: 3s;
}

/*=========================================================
    HERO STATISTICS
=========================================================*/

.hero-stats {
  position: absolute;

  left: 50%;

  bottom: 35px;

  transform: translateX(-50%);

  width: min(1200px, 92%);

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  padding: 22px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: center;
}

.stat h2 {
  font-size: 42px;

  color: var(--primary);

  margin-bottom: 10px;
}

.stat p {
  margin: 0;

  color: #ddd;
}

/*=========================================================
    SCROLL INDICATOR
=========================================================*/

.scroll-down {
  position: absolute;

  left: 50%;

  bottom: 170px;

  transform: translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 6px;
}

.scroll-down span {
  width: 14px;

  height: 14px;

  border-right: 2px solid var(--primary);

  border-bottom: 2px solid var(--primary);

  transform: rotate(45deg);

  animation: scrollArrow 2s infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.25s;
}

.scroll-down span:nth-child(3) {
  animation-delay: 0.5s;
}

/*=========================================================
    GOLD PARTICLES
=========================================================*/

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image: radial-gradient(circle, #d4af37 1px, transparent 1px);

  background-size: 80px 80px;

  opacity: 0.08;

  animation: particleMove 40s linear infinite;
}

/*=========================================================
    HERO LIGHT EFFECT
=========================================================*/

.hero::after {
  content: "";

  position: absolute;

  width: 900px;

  height: 900px;

  left: -300px;

  top: -300px;

  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12),
    transparent 70%
  );

  pointer-events: none;
}

/*=========================================================
    KEYFRAMES
=========================================================*/

@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.18);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes scrollArrow {
  0% {
    opacity: 0;

    transform: rotate(45deg) translate(-6px, -6px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    transform: rotate(45deg) translate(6px, 6px);
  }
}

@keyframes particleMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 800px;
  }
}
/*=========================================================
    HERO MICRO INTERACTIONS
=========================================================*/

/* Floating cards */
.hero-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

/* Hover lift */
.hero-card:hover {
  transform: translateY(-14px) rotateX(4deg) rotateY(-4deg);

  border-color: rgba(212, 175, 55, 0.45);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(212, 175, 55, 0.18);

  background: rgba(255, 255, 255, 0.1);
}

/* Gold glow */
.hero-card::before {
  content: "";

  position: absolute;

  inset: -2px;

  border-radius: inherit;

  background: linear-gradient(
    135deg,
    transparent,
    rgba(212, 175, 55, 0.22),
    transparent
  );

  opacity: 0;

  transition: 0.45s;

  pointer-events: none;
}

.hero-card:hover::before {
  opacity: 1;
}

/* Icon animation */

.hero-card i {
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.hero-card:hover i {
  transform: rotate(10deg) scale(1.15);

  color: #ffe27a;
}

/* Heading */

.hero-card h4 {
  transition: 0.35s;
}

.hero-card:hover h4 {
  color: var(--primary);
}

/* Hero buttons */

.hero-buttons .btn {
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

.hero-buttons .btn:hover {
  transform: translateY(-6px);
}

/* Statistics */

.stat {
  transition:
    transform 0.35s,
    color 0.35s;
}

.stat:hover {
  transform: translateY(-8px);
}

.stat:hover h2 {
  color: #ffe27a;
}

/* Gold divider animation */

.hero-content h1 span::after {
  animation: goldBar 4s linear infinite;
}

/* Logo */

.logo {
  transition:
    transform 0.35s,
    text-shadow 0.35s;
}

.logo:hover {
  transform: scale(1.05);

  text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

/* Navigation links */

.nav-links a {
  transition:
    color 0.35s,
    transform 0.35s;
}

.nav-links a:hover {
  transform: translateY(-3px);
}

/* Scroll indicator */

.scroll-down {
  transition: 0.35s;
}

.scroll-down:hover {
  transform: translateX(-50%) translateY(8px);
}

/*=============================
Animations
=============================*/

@keyframes goldBar {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

/*=============================
Accessibility
=============================*/

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}
/*=========================================================
    PREMIUM UI ENGINE
=========================================================*/

/*=========================================================
    REVEAL ENGINE
=========================================================*/

.reveal {
  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal-up {
  transform: translateY(80px);
}

.reveal-down {
  transform: translateY(-80px);
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-scale {
  transform: scale(0.85);
}

.reveal.active {
  opacity: 1;

  visibility: visible;

  transform: none;
}

/*=========================================================
    STAGGER
=========================================================*/

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}

.delay-5 {
  transition-delay: 0.75s;
}

/*=========================================================
    FLOATING
=========================================================*/

.float {
  animation: float 6s ease-in-out infinite;
}

.float-slow {
  animation: floatSlow 10s ease-in-out infinite;
}

.float-fast {
  animation: floatFast 3s ease infinite;
}

/*=========================================================
    ROTATE
=========================================================*/

.rotate {
  animation: rotate 18s linear infinite;
}

.rotate-reverse {
  animation: rotateReverse 22s linear infinite;
}

/*=========================================================
    PULSE
=========================================================*/

.pulse {
  animation: pulse 2.5s infinite;
}

.gold-pulse {
  animation: goldPulse 3s infinite;
}

/*=========================================================
    GLOW
=========================================================*/

.glow {
  animation: glow 4s ease infinite;
}

.text-glow {
  animation: textGlow 5s infinite;
}

/*=========================================================
    BOUNCE
=========================================================*/

.bounce {
  animation: bounce 2.5s infinite;
}

/*=========================================================
    SHAKE
=========================================================*/

.shake:hover {
  animation: shake 0.45s;
}

/*=========================================================
    HOVER LIFT
=========================================================*/

.lift {
  transition: 0.35s;
}

.lift:hover {
  transform: translateY(-12px);
}

/*=========================================================
    SCALE
=========================================================*/

.scale {
  transition: 0.35s;
}

.scale:hover {
  transform: scale(1.05);
}

/*=========================================================
    TILT
=========================================================*/

.tilt {
  transition: 0.4s;

  transform-style: preserve-3d;
}

.tilt:hover {
  transform: rotateX(5deg) rotateY(-5deg) translateY(-10px);
}

/*=========================================================
    GLASS
=========================================================*/

.glass {
  backdrop-filter: blur(20px);

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/*=========================================================
    SHIMMER
=========================================================*/

.shimmer {
  position: relative;

  overflow: hidden;
}

.shimmer::before {
  content: "";

  position: absolute;

  left: -120%;

  top: 0;

  width: 90px;

  height: 100%;

  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );

  transform: skewX(-25deg);
}

.shimmer:hover::before {
  animation: shimmer 1.1s;
}

/*=========================================================
    BLUR HOVER
=========================================================*/

.blur-hover {
  transition: 0.35s;
}

.blur-hover:hover {
  backdrop-filter: blur(25px);
}

/*=========================================================
    IMAGE ZOOM
=========================================================*/

.zoom {
  overflow: hidden;
}

.zoom img {
  transition: 0.7s;
}

.zoom:hover img {
  transform: scale(1.1);
}

/*=========================================================
    GOLD BORDER
=========================================================*/

.gold-border {
  position: relative;
}

.gold-border::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  padding: 1px;

  background: var(--gold-gradient);

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  mask-composite: exclude;

  -webkit-mask-composite: xor;

  opacity: 0;

  transition: 0.4s;
}

.gold-border:hover::after {
  opacity: 1;
}

/*=========================================================
    PARTICLES
=========================================================*/

.particles {
  position: absolute;

  inset: 0;

  pointer-events: none;

  overflow: hidden;
}

/*=========================================================
    KEYFRAMES
=========================================================*/

@keyframes float {
  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatSlow {
  50% {
    transform: translateY(-30px);
  }
}

@keyframes floatFast {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.05);
  }
}

@keyframes goldPulse {
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.45);
  }
}

@keyframes glow {
  50% {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
  }
}

@keyframes textGlow {
  50% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
  }
}

@keyframes bounce {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shake {
  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(3px);
  }
}

@keyframes shimmer {
  100% {
    left: 170%;
  }
}

/*=========================================================
    REDUCED MOTION
=========================================================*/

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}
/*=========================================================
                ABOUT SECTION
=========================================================*/

.about-wrapper {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.experience-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: #151515;
  padding: 22px 30px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.experience-card h3 {
  color: var(--primary);
  font-size: 42px;
  margin-bottom: 5px;
}

.experience-card p {
  margin: 0;
}

.about-content {
  max-width: 700px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 45px 0;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-item i {
  color: var(--primary);
  font-size: 22px;
  margin-top: 5px;
}

.about-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*=========================================================
                ABOUT LAYOUT
=========================================================*/

.about-wrapper {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

.experience-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: #121212;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.experience-card h3 {
  color: var(--primary);
  font-size: 42px;
  margin-bottom: 5px;
}

.experience-card p {
  margin: 0;
  color: #fff;
}

/*=========================================================
                ABOUT CONTENT
=========================================================*/

.about-content {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 40px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item i {
  color: var(--primary);
  font-size: 22px;
  margin-top: 4px;
}

.about-founder {
  margin-top: 35px;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content {
    max-width: 100%;
    margin-left: 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/*=========================================================
                SERVICES
=========================================================*/

.service-btn::after {
  content: "→";

  transition: 0.35s;
}

.service-btn:hover::after {
  transform: translateX(8px);
}

.service-badge {
  position: absolute;

  top: 25px;

  right: -45px;

  width: 170px;

  text-align: center;

  background: var(--gold-gradient);

  color: #111;

  font-size: 13px;

  font-weight: 700;

  padding: 8px;

  transform: rotate(45deg);
}
/*=========================================================
                GALLERY SECTION
=========================================================*/

/*=========================================================
                    PREMIUM GALLERY
=========================================================*/

.gallery-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/*========================
FILTER BUTTONS
========================*/

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}

.filter-btn {
  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #181818;
  color: #fff;
  cursor: pointer;
  transition: 0.35s;
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

/*========================
GRID
========================*/

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;
}

/*========================
ITEM
========================*/

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 22px;

  background: #111;

  cursor: pointer;

  transition: 0.45s;

  opacity: 1;

  transform: scale(1);
}

.gallery-item:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/*========================
IMAGE
========================*/

.gallery-item img {
  width: 100%;

  height: 380px;

  object-fit: cover;

  display: block;

  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/*========================
OVERLAY
========================*/

.gallery-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #d4af37;

  color: #111;

  font-size: 26px;

  transform: scale(0.5);

  transition: 0.35s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/*========================
HIDDEN ITEMS
========================*/

.gallery-item.hide {
  display: none;
}

/*========================
SHOW ANIMATION
========================*/

.gallery-item.show {
  animation: galleryFade 0.5s ease;
}

@keyframes galleryFade {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*========================
TABLET
========================*/

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 300px;
  }
}

/*========================
MOBILE
========================*/

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 320px;
  }

  .gallery-filter {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 18px;

    font-size: 14px;
  }
}

/*========================
SMALL MOBILE
========================*/

@media (max-width: 480px) {
  .gallery-item img {
    height: 280px;
  }
}
/*=========================================================
                PRICING SECTION
=========================================================*/

.pricing {
  position: relative;

  overflow: hidden;

  background: linear-gradient(180deg, var(--bg), var(--bg-secondary));
}

.pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;

  align-items: stretch;
}

.pricing-card {
  position: relative;

  padding: 45px 35px;

  border-radius: 30px;

  background: var(--premium-card);

  border: 1px solid var(--border);

  transition: 0.45s;

  overflow: hidden;

  display: flex;

  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-14px);

  border-color: var(--gold-border);

  box-shadow: var(--hover-shadow);
}

.pricing-card.featured {
  transform: scale(1.06);

  border: 2px solid var(--primary);

  background: linear-gradient(145deg, #2a2315, #171717);

  box-shadow: 0 20px 70px rgba(212, 175, 55, 0.25);
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-10px);
}

.pricing-ribbon {
  position: absolute;

  top: 25px;

  right: -45px;

  width: 180px;

  text-align: center;

  background: var(--gold-gradient);

  color: #111;

  padding: 8px;

  font-size: 13px;

  font-weight: 700;

  transform: rotate(45deg);
}

.pricing-icon {
  width: 82px;

  height: 82px;

  margin: 0 auto 25px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gold-gradient);

  color: #111;

  font-size: 32px;

  box-shadow: var(--gold-shadow);
}

.pricing-card h3 {
  text-align: center;

  margin-bottom: 20px;

  font-size: 30px;
}

.price {
  text-align: center;

  margin-bottom: 35px;

  font-size: 56px;

  font-weight: 700;

  color: var(--primary);
}

.price span {
  font-size: 18px;

  color: var(--text-light);
}

.pricing-card ul {
  display: flex;

  flex-direction: column;

  gap: 16px;

  margin-bottom: 35px;

  flex: 1;
}

.pricing-card ul li {
  display: flex;

  align-items: center;

  gap: 12px;
}

.pricing-card ul li i {
  color: var(--primary);
}

.pricing-btn {
  width: 100%;

  text-align: center;
}

/*=========================================================
                WHY CHOOSE US
=========================================================*/

.why-section {
  position: relative;

  overflow: hidden;
}

.why-wrapper {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 60px;

  align-items: center;
}

.why-content {
  display: grid;

  gap: 24px;
}

.why-card {
  display: flex;

  align-items: flex-start;

  gap: 20px;

  padding: 28px;

  background: var(--premium-card);

  border-radius: 24px;

  border: 1px solid var(--border);

  transition: 0.4s;
}

.why-card:hover {
  transform: translateX(10px);

  border-color: var(--gold-border);

  box-shadow: var(--hover-shadow);
}

.why-card i {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gold-gradient);

  color: #111;

  font-size: 24px;

  flex-shrink: 0;
}

.stats-panel {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.stat-box {
  padding: 35px 25px;

  text-align: center;

  border-radius: 26px;

  background: var(--premium-card);

  border: 1px solid var(--border);

  transition: 0.4s;
}

.stat-box:hover {
  transform: translateY(-10px);

  border-color: var(--gold-border);

  box-shadow: var(--gold-shadow);
}

.stat-box i {
  font-size: 30px;

  color: var(--primary);

  margin-bottom: 18px;
}

.stat-box h2 {
  font-size: 48px;

  color: var(--primary);

  margin-bottom: 10px;
}

.stat-box p {
  margin: 0;

  color: var(--text-light);
}

.why-cta {
  margin-top: 80px;

  text-align: center;

  padding: 50px;

  border-radius: 30px;

  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid var(--gold-border);
}
/*=========================================================
                TESTIMONIALS
=========================================================*/

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg));
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.testimonial-track {
  width: 100%;
  overflow: hidden;
}

.testimonial-card {
  position: relative;
  padding: 45px;
  border-radius: 30px;
  background: var(--premium-card);
  border: 1px solid var(--border);
  transition: 0.45s;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold-border);
  box-shadow: var(--hover-shadow);
}

.quote-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #111;
  font-size: 28px;
  margin-bottom: 25px;
}

.stars {
  display: flex;
  gap: 6px;
  color: var(--primary);
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.9;
}

.client {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.client img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.client h4 {
  margin-bottom: 4px;
}

.client span {
  color: var(--text-light);
  font-size: 14px;
}

.testimonial-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--premium-card);
  border: 1px solid var(--border);
  transition: 0.35s;
}

.testimonial-arrow:hover {
  background: var(--gold-gradient);
  color: #111;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.35s;
}

.dot.active {
  width: 36px;
  border-radius: 20px;
  background: var(--primary);
}

.review-summary {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.summary-card {
  padding: 30px;
  text-align: center;
  border-radius: 24px;
  background: var(--premium-card);
  border: 1px solid var(--border);
}

.summary-card i {
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 15px;
}

/*=========================================================
                    FAQ
=========================================================*/

.faq-section {
  position: relative;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--premium-card);
  border: 1px solid var(--border);
  transition: 0.35s;
}

.faq-item:hover {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.faq-question i {
  color: var(--primary);
  transition: 0.35s;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 30px 30px;
}

.faq-contact {
  margin-top: 60px;
  text-align: center;
  padding: 45px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--gold-border);
}
/*=========================================================
                SECTION 10
        QUICK BOOKING + CONTACT + MAP
=========================================================*/

/*=============================
Quick Booking Banner
=============================*/

.quick-booking {
  position: relative;
  padding: 90px 0;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 60px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--gold-border);
  overflow: hidden;
}

.booking-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(212, 175, 55, 0.12),
    transparent 55%
  );
  pointer-events: none;
}

.booking-content h2 {
  font-size: 52px;
  margin-bottom: 20px;
}

.booking-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 40px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary);
  margin-bottom: 20px;
}

.booking-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.booking-feature i {
  color: var(--primary);
}

/*=============================
Booking Card
=============================*/

.booking-card {
  padding: 40px;
  border-radius: 28px;
  background: var(--premium-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.35s;
}

.booking-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--hover-shadow);
}

.booking-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #111;
  font-size: 36px;
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.booking-contact {
  display: grid;
  gap: 16px;
}

.booking-contact div {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

/*=============================
Contact Section
=============================*/

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  margin-top: 60px;
}

.booking-form-card,
.contact-card {
  background: var(--premium-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 45px;
}

.booking-form-card {
  box-shadow: var(--shadow-md);
}

/*=============================
Form
=============================*/

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #ffffff;
  transition: 0.3s;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Dropdown list */
.form-group select option {
  background: #1d1d22;
  color: #ffffff;
}

textarea {
  min-height: 160px;
}

/*=============================
Contact Card
=============================*/

.contact-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #111;
  font-size: 34px;
}

.contact-info {
  margin: 35px 0;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  color: var(--primary);
  font-size: 22px;
  margin-top: 3px;
}

.contact-buttons {
  display: grid;
  gap: 16px;
}

/*=============================
Service Areas
=============================*/

.service-areas {
  margin-top: 90px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.area-card {
  padding: 22px;
  border-radius: 20px;
  text-align: center;
  background: var(--premium-card);
  border: 1px solid var(--border);
  transition: 0.35s;
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
}

.area-card i {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 12px;
}

/*=============================
Google Map
=============================*/

.map-wrapper {
  margin-top: 80px;
  overflow: hidden;
  border-radius: 32px;
  border: 2px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
  width: 100%;
  height: 520px;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}
/*=========================================================
                SECTION 11
        FOOTER + FLOATING WIDGETS
=========================================================*/

/*=========================================================
FOOTER
=========================================================*/

.footer {
  position: relative;

  overflow: hidden;

  background: var(--footer-gradient);

  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-divider {
  width: 100%;

  height: 2px;

  background: var(--gold-gradient);
}

/*==========================
Footer CTA
==========================*/

.footer-cta {
  padding: 90px 0 70px;

  text-align: center;
}

.footer-cta h2 {
  font-size: 56px;

  margin-bottom: 20px;
}

.footer-cta p {
  max-width: 650px;

  margin: auto auto 35px;
}

/*==========================
Grid
==========================*/

.footer-grid {
  display: grid;

  grid-template-columns:
    1.3fr
    1fr
    1fr
    1fr;

  gap: 50px;

  padding: 70px 0;
}

/*==========================
Logo
==========================*/

.footer-logo {
  font-size: 42px;

  font-family: var(--heading-font);

  font-weight: 700;

  color: white;
}

.footer-logo span {
  color: var(--primary);
}

.footer-column p {
  margin: 25px 0;
}

/*==========================
Headings
==========================*/

.footer-column h3 {
  margin-bottom: 28px;

  font-size: 28px;
}

/*==========================
Links
==========================*/

.footer-column ul {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.footer-column li {
  transition: 0.35s;
}

.footer-column li:hover {
  transform: translateX(8px);
}

.footer-column a:hover {
  color: var(--primary);
}

/*==========================
Social
==========================*/

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border);

  transition: 0.35s;
}

.footer-social a:hover {
  background: var(--gold-gradient);

  color: #111;

  transform: translateY(-6px);
}

/*==========================
Contact
==========================*/

.footer-contact {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.footer-contact p {
  display: flex;

  align-items: center;

  gap: 14px;
}

.footer-contact i {
  color: var(--primary);
}

/*==========================
Bottom
==========================*/

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);

  padding: 28px 0;
}

.footer-bottom .container {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

/*=========================================================
FLOATING BOOKING WIDGET
=========================================================*/

.booking-widget {
  position: fixed;

  right: 30px;

  bottom: 110px;

  width: 260px;

  border-radius: 24px;

  overflow: hidden;

  background: var(--premium-card);

  border: 1px solid var(--gold-border);

  box-shadow: var(--shadow-lg);

  z-index: var(--widget);

  animation: widgetFloat 5s ease infinite;
}

.widget-header {
  padding: 18px;

  text-align: center;

  background: var(--gold-gradient);

  color: #111;

  font-weight: 700;
}

.widget-body {
  padding: 18px;

  display: grid;

  gap: 14px;
}

.widget-call,
.widget-whatsapp {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 10px;

  padding: 14px;

  border-radius: 14px;

  transition: 0.35s;
}

.widget-call {
  background: rgba(255, 255, 255, 0.05);
}

.widget-whatsapp {
  background: #25d366;

  color: white;
}

.widget-call:hover,
.widget-whatsapp:hover {
  transform: translateY(-4px);
}

/*=========================================================
SCROLL TOP
=========================================================*/

#scrollTop {
  position: fixed;

  right: 35px;

  bottom: 35px;

  width: 58px;

  height: 58px;

  border-radius: 50%;

  border: none;

  background: var(--gold-gradient);

  color: #111;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 600;
}

#scrollTop.show {
  opacity: 1;

  visibility: visible;
}

#scrollTop:hover {
  transform: translateY(-8px);
}

/*=========================================================
PAGE LOADER
=========================================================*/

.loader {
  position: fixed;

  inset: 0;

  background: #090909;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  gap: 30px;

  z-index: 999999;
}

.loader-circle {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  border: 4px solid rgba(212, 175, 55, 0.15);

  border-top: 4px solid var(--primary);

  animation: loaderSpin 1s linear infinite;
}

.loader h3 {
  color: var(--primary);

  letter-spacing: 2px;
}

/*=========================================================
KEYFRAMES
=========================================================*/

@keyframes loaderSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes widgetFloat {
  50% {
    transform: translateY(-12px);
  }
}
/*=========================================================
    SECTION 12A
    RESPONSIVE - DESKTOP & LAPTOP
=========================================================*/

/*=========================================================
    <= 1400px
=========================================================*/

@media (max-width: 1400px) {
  :root {
    --container: 1200px;
  }

  .hero-content h1 {
    font-size: clamp(3.8rem, 6vw, 6rem);
  }

  .hero-card {
    width: 200px;

    padding: 22px;
  }

  .hero-stats {
    width: 95%;
  }

  .footer-grid {
    gap: 40px;
  }
}

/*=========================================================
    <= 1200px
=========================================================*/

@media (max-width: 1200px) {
  :root {
    --container: 1100px;

    --space-120: 100px;
  }

  .section {
    padding: 100px 0;
  }

  /*-------------------------
Navigation
-------------------------*/

  .nav-links {
    gap: 22px;
  }

  .logo {
    font-size: 30px;
  }

  .nav-btn {
    padding: 12px 24px;
  }

  /*-------------------------
Hero
-------------------------*/

  .hero {
    min-height: 900px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-content h1 {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
  }

  .hero-content p {
    font-size: 18px;

    max-width: 560px;
  }

  .hero-card {
    width: 185px;

    padding: 20px;
  }

  .card-one {
    right: 4%;
  }

  .card-two {
    right: 0;
  }

  .card-three {
    right: 5%;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    padding: 18px;
  }

  .stat h2 {
    font-size: 36px;
  }

  /*-------------------------
About
-------------------------*/

  .about-wrapper {
    gap: 60px;
  }

  .about-images {
    min-height: 620px;
  }

  .about-content h2 {
    font-size: 48px;
  }

  .about-features {
    gap: 18px;
  }

  .feature-card {
    padding: 22px;
  }

  /*-------------------------
Services
-------------------------*/

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card.featured {
    grid-column: span 3;
  }

  /*-------------------------
Gallery
-------------------------*/

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }

  /*-------------------------
Pricing
-------------------------*/

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    order: -1;

    grid-column: span 2;
  }

  /*-------------------------
Why
-------------------------*/

  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    margin-top: 40px;
  }

  /*-------------------------
Testimonials
-------------------------*/

  .review-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  /*-------------------------
Booking
-------------------------*/

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-card {
    margin-top: 35px;
  }

  /*-------------------------
Service Areas
-------------------------*/

  .area-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /*-------------------------
Footer
-------------------------*/

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 50px;
  }

  .booking-widget {
    width: 240px;
  }
}

/*=========================================================
    <= 992px
=========================================================*/

@media (max-width: 992px) {
  :root {
    --space-120: 90px;
  }

  /*-------------------------
Navigation
-------------------------*/

  .navbar {
    height: 80px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;

    top: 80px;

    right: -100%;

    width: 320px;

    height: calc(100vh - 80px);

    background: rgba(10, 10, 10, 0.96);

    backdrop-filter: blur(18px);

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    padding: 40px;

    gap: 28px;

    transition: 0.45s;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-btn {
    display: none;
  }

  /*-------------------------
Hero
-------------------------*/

  .hero {
    min-height: 850px;

    padding-top: 120px;
  }

  .hero-content {
    max-width: 100%;

    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content h1 span::after {
    margin-inline: auto;
  }

  .hero-card {
    display: none;
  }

  .hero-stats {
    position: relative;

    bottom: auto;

    left: auto;

    transform: none;

    margin-top: 60px;

    grid-template-columns: repeat(2, 1fr);
  }

  /*-------------------------
About
-------------------------*/

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 650px;

    margin: auto;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /*-------------------------
Services
-------------------------*/

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
  }

  /*-------------------------
Gallery
-------------------------*/

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }

  /*-------------------------
Pricing
-------------------------*/

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    grid-column: auto;

    transform: none;
  }

  /*-------------------------
Review
-------------------------*/

  .review-summary {
    grid-template-columns: 1fr;
  }

  /*-------------------------
FAQ
-------------------------*/

  .faq-wrapper {
    max-width: 100%;
  }

  /*-------------------------
Areas
-------------------------*/

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /*-------------------------
Footer
-------------------------*/

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-widget {
    right: 20px;

    bottom: 95px;

    width: 220px;
  }

  #scrollTop {
    right: 20px;

    bottom: 25px;
  }
}
/*=========================================================
    SECTION 12B
    RESPONSIVE - TABLET (768px–991px)
=========================================================*/

@media (max-width: 991px) and (min-width: 768px) {
  :root {
    --container: 90%;
    --space-120: 80px;
  }

  /*=========================
      Typography
    =========================*/

  .section-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
  }

  .section-description {
    font-size: 16px;
  }

  /*=========================
      Hero
    =========================*/

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
    max-width: 700px;
  }

  .hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 17px;
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
    gap: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  /*=========================
      About
    =========================*/

  .about-images {
    max-width: 600px;
    margin: auto;
    min-height: 600px;
  }

  .experience-badge {
    width: 140px;
    height: 140px;
  }

  .experience-badge h2 {
    font-size: 38px;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /*=========================
      Services
    =========================*/

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    padding: 30px;
  }

  .service-card.featured {
    grid-column: 1 / -1;
  }

  /*=========================
      Gallery
    =========================*/

  .gallery-filter {
    gap: 12px;
  }

  .filter-btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /*=========================
      Pricing
    =========================*/

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-card {
    max-width: 650px;
    margin: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  /*=========================
      Why Choose Us
    =========================*/

  .why-content {
    gap: 20px;
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /*=========================
      Testimonials
    =========================*/

  .testimonial-card {
    padding: 35px;
  }

  .review-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /*=========================
      FAQ
    =========================*/

  .faq-question {
    padding: 22px 24px;
    font-size: 17px;
  }

  /*=========================
      Booking
    =========================*/

  .booking-wrapper {
    padding: 45px;
  }

  .booking-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    gap: 30px;
  }

  /*=========================
      Service Areas
    =========================*/

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /*=========================
      Map
    =========================*/

  .map-wrapper iframe {
    height: 420px;
  }

  /*=========================
      Footer
    =========================*/

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /*=========================
      Floating Widget
    =========================*/

  .booking-widget {
    width: 210px;
    right: 16px;
  }
}
/*=========================================================
    SECTION 12C
    RESPONSIVE - MOBILE (<=767px)
=========================================================*/

@media (max-width: 767px) {
  :root {
    --container: 92%;

    --space-120: 70px;
  }

  /*=========================
      Global
    =========================*/

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);

    line-height: 1.2;
  }

  .section-description {
    font-size: 15px;
  }

  /*=========================
      Navigation
    =========================*/

  .navbar {
    height: 72px;
  }

  .logo {
    font-size: 26px;
  }

  .nav-links {
    width: 100%;

    right: -100%;

    top: 72px;

    height: calc(100vh - 72px);

    padding: 30px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .menu-toggle {
    width: 42px;

    height: 42px;
  }

  /*=========================
      Hero
    =========================*/

  .hero {
    min-height: auto;

    padding: 110px 0 60px;

    text-align: center;
  }

  .hero video {
    display: none;
  }

  .hero-slider {
    display: block;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tag {
    font-size: 12px;

    padding: 10px 18px;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 3.8rem);

    margin-bottom: 20px;
  }

  .hero-content h1 span::after {
    width: 100px;

    margin: 14px auto 0;
  }

  .hero-content p {
    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;

    gap: 14px;

    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;

    gap: 15px;

    padding: 16px;

    margin-top: 40px;
  }

  .stat h2 {
    font-size: 30px;
  }

  .scroll-down {
    display: none;
  }

  /*=========================
      About
    =========================*/

  .about-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-images {
    min-height: 420px;
  }

  .about-main-image {
    width: 85%;
  }

  .about-small-image {
    width: 42%;

    bottom: 35px;
  }

  .experience-badge {
    width: 120px;

    height: 120px;

    left: 15px;
  }

  .experience-badge h2 {
    font-size: 30px;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 38px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /*=========================
      Services
    =========================*/

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured {
    grid-column: auto;
  }

  .service-card {
    padding: 28px;
  }

  /*=========================
      Gallery
    =========================*/

  .gallery-filter {
    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 10px;

    scrollbar-width: none;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) {
    grid-row: auto;

    grid-column: auto;
  }

  /*=========================
      Pricing
    =========================*/

  .pricing-card {
    padding: 35px 25px;
  }

  .price {
    font-size: 46px;
  }

  /*=========================
      Why Choose Us
    =========================*/

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .why-card {
    flex-direction: column;

    text-align: center;

    align-items: center;
  }

  /*=========================
      Testimonials
    =========================*/

  .testimonial-slider {
    gap: 15px;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonial-card {
    padding: 30px;
  }

  .client {
    flex-direction: column;

    text-align: center;
  }

  .review-summary {
    grid-template-columns: 1fr;
  }

  /*=========================
      FAQ
    =========================*/

  .faq-question {
    font-size: 16px;

    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

  /*=========================
      Booking & Contact
    =========================*/

  .booking-wrapper {
    padding: 30px;
  }

  .booking-content h2 {
    font-size: 36px;
  }

  .booking-features {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-form-card,
  .contact-card {
    padding: 30px;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-wrapper iframe {
    height: 320px;
  }

  /*=========================
      Footer
    =========================*/

  .footer-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;

    text-align: center;

    gap: 12px;
  }

  /*=========================
      Floating Widgets
    =========================*/

  .booking-widget {
    width: 180px;

    right: 12px;

    bottom: 85px;
  }

  #scrollTop {
    width: 50px;

    height: 50px;

    right: 12px;

    bottom: 20px;
  }
}
/*=========================================================
    SECTION 12D
    RESPONSIVE - SMALL MOBILE (<=576px & <=360px)
=========================================================*/

/*=========================================================
    <=576px
=========================================================*/

@media (max-width: 576px) {
  :root {
    --container: 94%;

    --space-120: 60px;
  }

  /*=========================
Global
=========================*/

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-tag {
    font-size: 12px;

    padding: 8px 16px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 14px;

    line-height: 1.7;
  }

  /*=========================
Buttons
=========================*/

  .btn {
    width: 100%;

    padding: 15px 20px;

    font-size: 15px;

    justify-content: center;
  }

  /*=========================
Hero
=========================*/

  .hero {
    padding: 95px 0 50px;
  }

  .hero-tag {
    font-size: 11px;

    padding: 8px 16px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-stats {
    grid-template-columns: 1fr;

    gap: 12px;

    padding: 15px;
  }

  .stat {
    padding: 15px 10px;
  }

  .stat h2 {
    font-size: 28px;
  }

  /*=========================
About
=========================*/

  .about-images {
    min-height: 360px;
  }

  .about-main-image {
    width: 100%;

    position: relative;
  }

  .about-small-image {
    display: none;
  }

  .experience-badge {
    width: 100px;

    height: 100px;

    right: 15px;

    left: auto;

    bottom: -15px;
  }

  .experience-badge h2 {
    font-size: 26px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .feature-card {
    padding: 22px;
  }

  /*=========================
Services
=========================*/

  .service-card {
    padding: 24px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-icon {
    width: 65px;

    height: 65px;

    font-size: 24px;
  }

  /*=========================
Gallery
=========================*/

  .filter-btn {
    padding: 10px 18px;

    font-size: 13px;

    white-space: nowrap;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-overlay {
    padding: 18px;
  }

  .gallery-overlay h4 {
    font-size: 20px;
  }

  /*=========================
Pricing
=========================*/

  .pricing-card {
    padding: 28px 22px;
  }

  .price {
    font-size: 40px;
  }

  .pricing-icon {
    width: 70px;

    height: 70px;

    font-size: 28px;
  }

  /*=========================
Why Choose Us
=========================*/

  .why-card {
    padding: 22px;
  }

  .stat-box {
    padding: 24px 18px;
  }

  .stat-box h2 {
    font-size: 34px;
  }

  /*=========================
Testimonials
=========================*/

  .testimonial-card {
    padding: 24px;
  }

  .client img {
    width: 60px;

    height: 60px;
  }

  .quote-icon {
    width: 60px;

    height: 60px;

    font-size: 22px;
  }

  /*=========================
FAQ
=========================*/

  .faq-question {
    padding: 18px;

    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 18px 18px;

    font-size: 14px;
  }

  /*=========================
Booking
=========================*/

  .booking-wrapper {
    padding: 24px;
  }

  .booking-content h2 {
    font-size: 30px;
  }

  .booking-card {
    padding: 28px;
  }

  .booking-form-card,
  .contact-card {
    padding: 24px;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px;
  }

  /*=========================
Map
=========================*/

  .map-wrapper iframe {
    height: 280px;
  }

  /*=========================
Footer
=========================*/

  .footer-cta {
    padding: 70px 0 50px;
  }

  .footer-cta h2 {
    font-size: 34px;
  }

  .footer-grid {
    padding: 50px 0;

    gap: 35px;
  }

  .footer-logo {
    font-size: 34px;
  }

  /*=========================
Widgets
=========================*/

  .booking-widget {
    width: 165px;

    right: 10px;

    bottom: 78px;
  }

  .widget-header {
    font-size: 13px;

    padding: 12px;
  }

  .widget-body {
    padding: 12px;
  }

  #scrollTop {
    width: 46px;

    height: 46px;

    font-size: 15px;
  }
}

/*=========================================================
    <=360px
=========================================================*/

@media (max-width: 360px) {
  :root {
    --container: 96%;
  }

  /*=========================
Typography
=========================*/

  .hero-content h1 {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /*=========================
Buttons
=========================*/

  .btn {
    padding: 14px 18px;

    font-size: 14px;
  }

  /*=========================
Cards
=========================*/

  .service-card,
  .pricing-card,
  .feature-card,
  .testimonial-card,
  .booking-card,
  .booking-form-card,
  .contact-card {
    padding: 20px;
  }

  /*=========================
Hero Stats
=========================*/

  .hero-stats {
    padding: 12px;
  }

  .stat h2 {
    font-size: 24px;
  }

  /*=========================
Footer
=========================*/

  .footer-logo {
    font-size: 30px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }

  /*=========================
Widgets
=========================*/

  .booking-widget {
    display: none;
  }
}
/*=========================================================
    SECTION 12E
    FINAL PRODUCTION POLISH
=========================================================*/

/*=========================================================
    ACCESSIBILITY
=========================================================*/

:focus-visible {
  outline: 3px solid var(--primary);

  outline-offset: 3px;

  border-radius: 8px;
}

html {
  scroll-padding-top: 100px;
}

/*=========================================================
    REDUCED MOTION
=========================================================*/

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }

  .hero-slider .slide {
    transform: none !important;
  }
}

/*=========================================================
    HIGH DPI IMAGE RENDERING
=========================================================*/

img {
  image-rendering: auto;
}

.hero-slider img,
.gallery img {
  backface-visibility: hidden;

  transform: translateZ(0);
}

/*=========================================================
    PERFORMANCE
=========================================================*/

img {
  content-visibility: auto;
}

.gallery-item,
.service-card,
.pricing-card,
.feature-card,
.testimonial-card {
  contain: layout paint;
}

/*=========================================================
    SAFE AREA (NOTCH DEVICES)
=========================================================*/

body {
  padding-left: env(safe-area-inset-left);

  padding-right: env(safe-area-inset-right);

  padding-bottom: env(safe-area-inset-bottom);
}

#header {
  padding-top: env(safe-area-inset-top);
}

/*=========================================================
    LANDSCAPE PHONES
=========================================================*/

@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;

    padding: 120px 0 70px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-stats {
    position: relative;

    margin-top: 50px;
  }

  .scroll-down {
    display: none;
  }
}

/*=========================================================
    PRINT
=========================================================*/

@media print {
  .hero video,
  .booking-widget,
  #scrollTop,
  .loader,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: white !important;

    color: black !important;
  }

  a {
    color: black !important;

    text-decoration: underline;
  }

  .section {
    padding: 20px 0;

    break-inside: avoid;
  }
}

/*=========================================================
    LAZY IMAGE PLACEHOLDER
=========================================================*/

img[loading="lazy"] {
  background: rgba(255, 255, 255, 0.04);
}

/*=========================================================
    DISABLE HOVER ON TOUCH
=========================================================*/

@media (hover: none) {
  .gallery-item:hover img {
    transform: none;
  }

  .service-card:hover,
  .pricing-card:hover,
  .feature-card:hover,
  .hero-card:hover {
    transform: none;
  }
}

/*=========================================================
    SELECTION
=========================================================*/

::selection {
  background: var(--primary);

  color: #111;
}

/*=========================================================
    SCROLLBAR
=========================================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--gold-gradient);

  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/*=========================================================
    LOADER FADE OUT
=========================================================*/

.loader.hidden {
  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: 0.5s ease;
}

/*=========================================================
    ANIMATION HELPERS
=========================================================*/

.will-animate {
  will-change: transform, opacity;
}

.no-select {
  user-select: none;

  -webkit-user-select: none;
}

.pointer {
  cursor: pointer;
}

/*=========================================================
    OVERFLOW PROTECTION
=========================================================*/

html,
body {
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

/*=========================================================
    SMOOTH MEDIA
=========================================================*/

video,
iframe {
  max-width: 100%;

  display: block;
}

/*=========================================================
    FORM IMPROVEMENTS
=========================================================*/

input,
textarea,
select {
  appearance: none;

  -webkit-appearance: none;

  border-radius: 16px;
}

textarea {
  resize: vertical;

  min-height: 140px;
}

/*=========================================================
    IMAGE HOVER OPTIMIZATION
=========================================================*/

.gallery-item img,
.about-main-image img,
.about-small-image img {
  will-change: transform;
}

/*=========================================================
    FINAL UTILITY CLASSES
=========================================================*/

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.fade {
  opacity: 0;

  transition: 0.5s;
}

.fade.show {
  opacity: 1;
}

.text-primary {
  color: var(--primary);
}

.bg-primary {
  background: var(--gold-gradient);
}

.rounded-full {
  border-radius: 999px;
}

.shadow-gold {
  box-shadow: var(--gold-shadow);
}

/*=========================================================
    END OF STYLESHEET
=========================================================*/
/*========== LIGHTBOX ==========*/

.gallery-lightbox {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.95);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 99999;
}

.gallery-lightbox.active {
  opacity: 1;

  visibility: visible;
}

.gallery-lightbox img {
  max-width: 90%;

  max-height: 90%;

  border-radius: 15px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox .close,
.gallery-lightbox .prev,
.gallery-lightbox .next {
  position: absolute;

  background: #d4af37;

  color: #111;

  border: none;

  width: 55px;

  height: 55px;

  border-radius: 50%;

  cursor: pointer;

  font-size: 26px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.gallery-lightbox .close {
  top: 30px;

  right: 30px;
}

.gallery-lightbox .prev {
  left: 30px;

  top: 50%;

  transform: translateY(-50%);
}

.gallery-lightbox .next {
  right: 30px;

  top: 50%;

  transform: translateY(-50%);
}

/* Final interaction and accessibility refinements. */
html { scroll-padding-top: 100px; }
body.menu-open { overflow: hidden; }
img { content-visibility: auto; }
.gallery-item[hidden] { display: none !important; }
.gallery-item { cursor: zoom-in; }
.gallery-item:focus-visible { outline: 3px solid var(--primary); outline-offset: 5px; }
.filter-btn[aria-pressed="true"] { color: #111; background: var(--gold-gradient); }
.form-status { min-height: 1.7em; margin: 14px 0 0; color: var(--primary); font-size: var(--fs-14); }
.form-status.is-success { color: #82d19a; }
.form-status.is-error { color: #ff9a9a; }
.form-status.is-loading { color: var(--text-light); }
.booking-submit { min-width: min(100%, 250px); }
.booking-submit:disabled { cursor: wait; opacity: 0.8; transform: none; }
.booking-submit .booking-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(17, 17, 17, 0.35); border-top-color: #111; border-radius: 50%; animation: bookingSpin 0.7s linear infinite; }
.booking-submit.is-loading .booking-spinner { display: inline-block; }
.booking-submit.is-loading .booking-submit-label,
.booking-submit.is-loading > i { opacity: 0.55; }
.form-botcheck { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) { border-color: #d87d7d; }
@keyframes bookingSpin { to { transform: rotate(360deg); } }

dialog.gallery-lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 56px clamp(16px, 6vw, 96px); border: 0; background: rgba(5, 5, 6, 0.96); }
dialog.gallery-lightbox:not([open]) { display: none; }
dialog.gallery-lightbox::backdrop { background: rgba(0, 0, 0, 0.85); }
dialog.gallery-lightbox[open] { display: grid; place-items: center; opacity: 1; visibility: visible; }
dialog.gallery-lightbox img { width: auto; max-width: 100%; max-height: calc(100dvh - 112px); border-radius: var(--radius-sm); }
.gallery-lightbox .lightbox-close,
.gallery-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-next { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--gold-gradient); color: #111; z-index: 1; }
.gallery-lightbox .lightbox-close { top: 18px; right: 18px; }
.gallery-lightbox .lightbox-prev { left: max(12px, 2vw); top: 50%; transform: translateY(-50%); }
.gallery-lightbox .lightbox-next { right: max(12px, 2vw); top: 50%; transform: translateY(-50%); }

@media (max-width: 767px) {
  .navbar { height: 76px; }
  .menu-toggle { border: 1px solid var(--border); border-radius: var(--radius-xs); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .nav-links { max-height: calc(100dvh - 76px); overflow-y: auto; }
  .hero { min-height: 100svh; padding-top: 120px; }
  .hero-content h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-content p { font-size: 1rem; line-height: 1.7; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); bottom: 16px; padding: 14px 8px; gap: 10px; }
  .stat h2 { font-size: 1.75rem; }
  .stat p { font-size: 0.72rem; }
  .hero-card, .scroll-down { display: none; }
  .btn { min-height: 48px; padding: 13px 20px; }
  .gallery-filter { justify-content: flex-start; }
  .gallery-lightbox .lightbox-prev, .gallery-lightbox .lightbox-next { top: auto; bottom: 18px; transform: none; }
  .gallery-lightbox .lightbox-prev { left: calc(50% - 58px); }
  .gallery-lightbox .lightbox-next { right: calc(50% - 58px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* Responsive overflow and fixed-widget safeguards. */
.booking-widget.is-hero-hidden { display: none; }

@media (min-width: 768px) and (max-width: 1100px) {
  .menu-toggle { display: flex; }
  .nav-btn { display: none; }
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: min(320px, 100%);
    height: calc(100dvh - 80px);
    padding: 40px;
    gap: 28px;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  .booking-widget { display: none; }
}

@media (max-width: 767px) {
  .booking-widget { display: none; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { max-width: 100%; overflow-wrap: break-word; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.25rem; }
}

/*=========================================================
    BREADCRUMB NAVIGATION
=========================================================*/

.breadcrumb-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 80px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-14);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  color: var(--text-muted);
}

.breadcrumb li:last-child::after {
  display: none;
}

/*=========================================================
    LEGAL PAGES STYLING
=========================================================*/

.legal-section {
  padding: var(--space-80) 0;
  background: linear-gradient(145deg, var(--bg), var(--bg-secondary));
  min-height: calc(100vh - 200px);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.legal-content h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary-light);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.legal-content h3 {
  font-family: var(--heading-font);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: var(--fs-16);
}

.legal-content ul,
.legal-content ol {
  color: var(--text-light);
  line-height: 1.8;
  margin: 1.5rem 0 1.5rem 2rem;
  font-size: var(--fs-16);
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.legal-subsection {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-subsection:last-child {
  border-bottom: none;
}

.last-updated {
  font-size: var(--fs-14);
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--gold-border);
}

.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(var(--blur-sm));
}

.contact-info-box p {
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

/*=========================================================
    LEGAL PAGES - RESPONSIVE
=========================================================*/

@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 1rem 0;
  }

  .legal-section {
    padding: var(--space-60) 0;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }

  .contact-info-box {
    padding: 1.5rem;
  }
}
