/* ============================================
   ITALY GUIDE — LUXURY WEBSITE STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-mid: #1A1A1A;
  --white: #FAFAF8;
  --cream: #F5F0E8;
  --gray: #888880;
  --text-light: rgba(250,250,248,0.85);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
h4 { font-size: 1.4rem; }

p {
  font-size: 0.92rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  font-weight: 300;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ====== NAVIGATION ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.8);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 10px 24px !important;
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

/* ====== HERO SECTION ====== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('italy_amalfi.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(10,10,10,0.55) 0%, transparent 45%),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.05) 30%,
      rgba(10,10,10,0.72) 70%,
      rgba(10,10,10,0.98) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px 100px;
  display: flex;
  align-items: flex-end;
}

.hero-text .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-text h1 {
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-text p {
  max-width: 480px;
  margin-bottom: 48px;
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hero-guide {
  position: absolute;
  bottom: 0;
  right: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}

.hero-guide img {
  width: 440px;
  max-height: 88vh;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-20px 0 60px rgba(0,0,0,0.5));
  animation: floatGuide 7s ease-in-out infinite;
  display: block;
}

.hero-guide-name {
  position: absolute;
  bottom: 36px;
  right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  text-align: right;
  letter-spacing: 0.08em;
  line-height: 1.5;
  pointer-events: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

@keyframes floatGuide {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.hero-scroll:hover { opacity: 1; }

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 42px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250,250,248,0.3);
  transition: var(--transition);
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 18px;
}

/* ====== SECTION COMMON ====== */
.section {
  padding: 130px 60px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-label span {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ====== ABOUT SECTION ====== */
.about {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.2);
  margin-top: 60px;
}

.stat-item {
  background: var(--dark);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.about-text h2 { margin-bottom: 28px; }
.about-text > p { margin-bottom: 24px; }

.about-quote {
  border-left: 1px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

/* ====== DESTINATIONS SECTION ====== */
.destinations {
  background: var(--black);
  padding: 130px 0;
}

.destinations-header {
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
  padding: 0 60px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.dest-card:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  min-height: 300px;
}

.dest-card:first-child img { min-height: 500px; }

.dest-card:hover img { transform: scale(1.06); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}

.dest-card-overlay h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}

.dest-card-overlay p {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dest-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
}

/* ====== SERVICES PREVIEW ====== */
.services-preview {
  background: var(--dark-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.services-image {
  position: relative;
  overflow: hidden;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
  transition: transform 0.8s ease;
}

.services-image:hover img { transform: scale(1.04); }

.services-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: pointer;
}

.service-item:hover .service-number { color: var(--gold); }
.service-item:hover { padding-left: 16px; }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(201, 169, 110, 0.25);
  min-width: 50px;
  transition: var(--transition);
  line-height: 1;
}

.service-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}

.service-info p {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: url('italy_tuscany.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.testimonials-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-content h2 { margin-bottom: 70px; }

.testimonials-slider {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  max-width: 750px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ====== GALLERY STRIP ====== */
.gallery-strip {
  display: flex;
  height: 280px;
  overflow: hidden;
}

.gallery-strip-item {
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-strip-item:hover { flex: 2.5; }

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip-item:hover img { transform: scale(1.05); }

.gallery-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-strip-item:hover .gallery-strip-label { opacity: 1; }

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  height: 60vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  width: 100%;
}

.page-hero-content .eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero-content h1 {
  font-style: italic;
  max-width: 700px;
}

/* ====== TOURS PAGE ====== */
.tours-section {
  background: var(--dark);
}

.tours-filters {
  display: flex;
  gap: 3px;
  margin-bottom: 60px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.tour-card {
  background: var(--dark-mid);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover { transform: translateY(-4px); }

.tour-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
}

.tour-card-body {
  padding: 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.tour-meta span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.tour-card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.tour-card-body p {
  font-size: 0.82rem;
  flex: 1;
  margin-bottom: 28px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1.1;
}

.tour-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
}

.tour-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 16px;
}

/* ====== INCLUSIONS SECTION ====== */
.inclusions {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
}

.inclusion-item {
  background: var(--dark);
  padding: 60px 40px;
  text-align: center;
  transition: var(--transition);
}

.inclusion-item:hover { background: var(--dark-mid); }

.inclusion-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  transition: var(--transition);
}

.inclusion-item:hover .inclusion-icon {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.inclusion-item h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

/* ====== CONTACT PAGE ====== */
.contact-section {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  padding: 120px 80px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 { margin-bottom: 28px; }
.contact-info > p { margin-bottom: 60px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form-wrap {
  padding: 120px 80px;
  background: var(--dark-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap h3 {
  margin-bottom: 12px;
}

.contact-form-wrap > p {
  margin-bottom: 48px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 16px 20px;
  transition: var(--transition);
  outline: none;
  letter-spacing: 0.04em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  resize: none;
  height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ====== FOOTER ====== */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.footer-brand p {
  font-size: 0.82rem;
  max-width: 300px;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(136, 136, 128, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(136, 136, 128, 0.6);
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ====== GOLD DIVIDER ====== */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ====== PAGE TRANSITION ====== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

.page-transition.entering { transform: translateY(0%); }
.page-transition.leaving { transform: translateY(-100%); }

/* ====== ANIMATIONS ====== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1200px) {
  .navbar { padding: 24px 40px; }
  .navbar.scrolled { padding: 16px 40px; }
  .section { padding: 100px 40px; }
  .hero-content { padding: 0 40px 80px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1; }
}

@media (max-width: 992px) {
  .about { grid-template-columns: 1fr; gap: 60px; }
  .services-preview { grid-template-columns: 1fr; }
  .services-content { padding: 70px 40px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 80px 40px; }
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: 1; grid-row: 1; }
  .inclusions { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-guide { display: none; }
  .hero-content { padding: 0 24px 80px; }
  .section { padding: 80px 24px; }
  .destinations-header { padding: 0 24px; flex-direction: column; gap: 20px; align-items: flex-start; }
  .destinations-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .tours-grid { grid-template-columns: 1fr; }
  .inclusions { grid-template-columns: 1fr 1fr; }
  footer { padding: 60px 24px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ====== MOBILE NAV ====== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }
