/* ============================================
   R3 Luxury Travel -Design System & Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --gold: #C6A962;
  --gold-light: #D4B978;
  --gold-dark: #A88D4A;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

p {
  color: var(--gray-light);
  line-height: 1.8;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.gold-text { color: var(--gold); }
.text-center { text-align: center; }

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-divider-center {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 169, 98, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.nav-logo img:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
}

/* Floating Social Bar -Bottom Left */
.floating-socials {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.floating-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(198, 169, 98, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.floating-socials a:hover {
  background: rgba(198, 169, 98, 0.15);
  border-color: var(--gold);
  transform: scale(1.1);
}

.floating-socials svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.floating-socials a:hover svg {
  stroke: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 26px; }
.hamburger span:nth-child(2) { width: 20px; margin-left: auto; }
.hamburger span:nth-child(3) { width: 26px; }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
  background: var(--gold);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
  background: var(--gold);
}

/* Mobile Nav -Full-Screen Luxury Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(160deg, #0A0A0A 0%, #1A1A1A 40%, #0A0A0A 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(198, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s ease 0.15s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
  z-index: 1;
}

.mobile-nav.open .mobile-nav-logo {
  opacity: 1;
  transform: scale(1);
}

.mobile-nav-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.4s ease 0.25s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
}

.mobile-nav.open .mobile-nav-divider {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  padding: 8px 24px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
}

.mobile-nav.open a:nth-of-type(1) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-of-type(2) { transition-delay: 0.26s; }
.mobile-nav.open a:nth-of-type(3) { transition-delay: 0.32s; }
.mobile-nav.open a:nth-of-type(4) { transition-delay: 0.38s; }
.mobile-nav.open a:nth-of-type(5) { transition-delay: 0.44s; }

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  width: 40px;
  left: calc(50% - 20px);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(198, 169, 98, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.mobile-nav.open .mobile-nav-contact {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-contact a {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  color: var(--gray-light) !important;
  letter-spacing: 0.02em !important;
  padding: 4px 12px !important;
  opacity: 1 !important;
  transform: none !important;
}

.mobile-nav-contact a::after {
  display: none !important;
}

.mobile-nav-contact a:hover {
  color: var(--gold) !important;
}

.mobile-nav-socials {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}

.mobile-nav.open .mobile-nav-socials {
  opacity: 1;
}

.mobile-nav-socials a {
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(198, 169, 98, 0.3) !important;
  border-radius: 50% !important;
  padding: 0 !important;
  font-size: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}

.mobile-nav-socials a::after {
  display: none !important;
}

.mobile-nav-socials a:hover {
  border-color: var(--gold) !important;
  background: rgba(198, 169, 98, 0.1) !important;
}

.mobile-nav-socials svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray-light);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.mobile-nav-socials a:hover svg {
  stroke: var(--gold);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 32px;
  animation: fadeInDown 1s ease 0.2s both;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(198, 169, 98, 0.5);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-indicator .wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 35vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 12px;
}

.page-hero-content .gold-divider-center {
  margin: 16px auto;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 50px 0;
}

.section-dark {
  background: var(--black);
}

.section-charcoal {
  background: var(--charcoal);
}

/* --- About Teaser (Home) --- */
.about-teaser {
  padding: 60px 0;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser-text h2 {
  margin-bottom: 8px;
}

.about-teaser-text p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.about-teaser-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-teaser-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-teaser-image:hover img {
  transform: scale(1.05);
}

.about-teaser-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(198, 169, 98, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

/* --- Services Grid (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* --- Destinations (Home) --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.dest-card {
  position: relative;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  transition: all var(--transition);
}

.dest-card:hover .dest-card-overlay {
  padding-bottom: 40px;
}

.dest-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.dest-card span {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Stats --- */
.stats-section {
  padding: 60px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(198, 169, 98, 0.15);
  border-bottom: 1px solid rgba(198, 169, 98, 0.15);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
  position: relative;
  transition: all var(--transition);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(198, 169, 98, 0.25);
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--gray-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: 50px 0;
}

.about-text-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text-block h2 {
  margin-bottom: 8px;
}

.about-text-block p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* Values / Pillars */
.values-section {
  padding: 50px 0;
  background: var(--charcoal);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all var(--transition);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Image Gallery Strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0;
}

.gallery-strip-item {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-strip-item:hover img {
  transform: scale(1.08);
}

/* ============================================
   DESTINATIONS PAGE
   ============================================ */
.destination-section {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.destination-section:last-of-type {
  border-bottom: none;
}

.dest-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dest-row.reverse {
  direction: rtl;
}

.dest-row.reverse > * {
  direction: ltr;
}

.dest-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 500px;
}

.dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-image:hover img {
  transform: scale(1.05);
}

.dest-text .section-subtitle {
  margin-bottom: 8px;
}

.dest-text h2 {
  margin-bottom: 8px;
}

.dest-text p {
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ============================================
   SERVICES PAGE (detailed)
   ============================================ */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-detail-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: top;
}

.service-detail-card:hover::before {
  transform: scaleY(1);
}

.service-detail-card .service-icon {
  margin: 0 0 24px 0;
}

.service-detail-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--white);
}

.service-detail-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form > p {
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 160px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-fast);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--gold);
}

.map-container {
  margin-top: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.8) brightness(0.6) contrast(1.2);
  transition: filter var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.1);
}

/* Full-Width Map */
.map-fullwidth {
  width: 100%;
  overflow: hidden;
}

.map-fullwidth iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  filter: grayscale(0.7) brightness(0.65) contrast(1.2);
  transition: filter var(--transition);
}

.map-fullwidth:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  border-top: 1px solid rgba(198, 169, 98, 0.1);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(198, 169, 98, 0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--gray);
  transition: fill var(--transition-fast);
}

.social-links a:hover svg {
  fill: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(198, 169, 98, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in-left {
  transform: translateX(-40px);
}

.animate-on-scroll.fade-in-right {
  transform: translateX(40px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Enhanced Card Hover Effects --- */
.service-card:hover {
  border-color: rgba(198, 169, 98, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(198, 169, 98, 0.08);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color var(--transition);
  z-index: 2;
  pointer-events: none;
}

.dest-card:hover::after {
  border-color: rgba(198, 169, 98, 0.4);
}

.dest-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(198, 169, 98, 0.1);
}

.value-card:hover {
  border-color: rgba(198, 169, 98, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(198, 169, 98, 0.06);
}

.service-detail-card:hover {
  border-color: rgba(198, 169, 98, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(198, 169, 98, 0.06);
}

.contact-card:hover {
  border-color: rgba(198, 169, 98, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* --- Gallery Hover Overlay --- */
.gallery-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(198, 169, 98, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-strip-item:hover::after {
  opacity: 1;
}

/* --- Button Shine Effect --- */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btn-gold:hover::after {
  left: 120%;
}

/* --- Parallax Hero --- */
.hero-image,
.cta-banner-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(198, 169, 98, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(198, 169, 98, 0.15);
  border-color: var(--gold);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.back-to-top:hover svg {
  stroke: var(--gold);
}

/* ============================================
   LUXURY SHOWCASE (Home)
   ============================================ */
.showcase-section {
  padding: 60px 0;
  background: var(--black);
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 60px;
}

.showcase-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.4s ease;
}

.showcase-item:hover .showcase-item-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(198, 169, 98, 0.08) 50%, transparent 100%);
}

.showcase-item h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.showcase-item:hover h3 {
  transform: translateY(0);
}

.showcase-item span {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.showcase-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Tall items spanning 2 rows */
.showcase-item.tall {
  grid-row: span 2;
}

/* Wide items spanning 2 columns */
.showcase-item.wide {
  grid-column: span 2;
}

/* Gold border glow on hover */
.showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.showcase-item:hover::after {
  border-color: rgba(198, 169, 98, 0.4);
}

/* ============================================
   ABOUT PAGE -Image-Text Rows
   ============================================ */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}

.about-row.reverse {
  direction: rtl;
}

.about-row.reverse > * {
  direction: ltr;
}

.about-row-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 480px;
}

.about-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-row-image:hover img {
  transform: scale(1.04);
}

.about-row-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 169, 98, 0.15);
  border-radius: 10px;
  pointer-events: none;
}

.about-row-text .section-subtitle {
  display: block;
  margin-bottom: 8px;
}

.about-row-text h2 {
  margin-bottom: 8px;
}

.about-row-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-row-text .btn {
  margin-top: 16px;
}

/* Highlight quote inside about text */
.about-highlight {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE -Image Cards
   ============================================ */
.service-visual-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.service-visual-card:hover {
  border-color: rgba(198, 169, 98, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(198, 169, 98, 0.06);
}

.service-visual-card .service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-visual-card:hover .service-img {
  transform: scale(1.05);
}

.service-visual-card .service-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-visual-card .service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, var(--charcoal), transparent);
  pointer-events: none;
}

.service-visual-card .service-body {
  padding: 28px 32px 36px;
}

.service-visual-card .service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-visual-card .service-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* Full-width lifestyle banner (parallax-ready) */
.lifestyle-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.lifestyle-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.lifestyle-banner-text {
  max-width: 500px;
}

.lifestyle-banner-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.lifestyle-banner-text p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE -New sections
   ============================================ */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px;
  }
  .showcase-item.tall {
    grid-row: span 1;
  }
  .service-visual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .showcase-item {
    height: 220px;
  }
  .showcase-item.tall {
    grid-row: span 1;
  }
  .showcase-item.wide {
    grid-column: span 1;
  }
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }
  .about-row-image {
    height: 300px;
  }
  .lifestyle-banner {
    height: 350px;
  }
  .lifestyle-banner-overlay {
    padding: 0 24px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
    align-items: flex-end;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-item {
    height: 200px;
  }
}

/* Staggered animation delay for service cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dest-card:nth-child(4),
  .dest-card:nth-child(5) {
    grid-column: span 1;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat-item {
    padding: 16px 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  section {
    padding: 70px 0;
  }

  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .floating-socials {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .hamburger {
    display: flex;
  }

  .hero-logo {
    width: 80px;
  }

  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-teaser-image {
    order: -1;
  }

  .about-teaser-image img {
    height: 350px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .dest-card {
    height: 260px;
  }

  .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .stat-item {
    width: 50%;
    padding: 14px 20px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .dest-row,
  .dest-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .dest-image {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    height: 40vh;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .stat-item {
    width: 50%;
    padding: 12px 16px;
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .btn {
    padding: 14px 30px;
    font-size: 0.8rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip-item {
    height: 220px;
  }
}
