:root {
  --navy: #0d1b3e;
  --navy2: #162550;
  --navy3: #1e3068;
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --gold3: #f5e9c8;
  --white: #fff;
  --offwhite: #f8f5ef;
  --gray: #8a8a8a;
  --shadow-3d: 0 6px 0 #8a6a1a, 0 8px 16px rgba(0,0,0,0.45);
  --shadow-3d-navy: 0 6px 0 #050e22, 0 8px 16px rgba(0,0,0,0.5);
  --shadow-3d-sm: 0 4px 0 #8a6a1a, 0 6px 12px rgba(0,0,0,0.35);
  --inset-shadow: inset 0 2px 4px rgba(255,255,255,0.15), inset 0 -2px 4px rgba(0,0,0,0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* Language switcher */
[data-lang="fr"] .t-it,
[data-lang="fr"] .t-en,
[data-lang="it"] .t-fr,
[data-lang="it"] .t-en,
[data-lang="en"] .t-fr,
[data-lang="en"] .t-it {
  display: none;
}

/* Logo styles */
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent !important;
}

.nav-logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.45rem;
  letter-spacing: 3px;
  color: rgba(201,168,76,0.55);
}

/* 3D Buttons */
.btn-3d-gold {
  background: linear-gradient(145deg, #e8c97a, #c9a84c, #a8812a);
  color: var(--navy);
  padding: 12px 24px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  box-shadow: var(--shadow-3d);
  transform: translateY(0);
  transition: all 0.12s ease;
}

.btn-3d-gold:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #8a6a1a, 0 5px 12px rgba(0,0,0,0.4);
}

.btn-3d-navy {
  background: linear-gradient(145deg, #1e3068, #0d1b3e, #07102a);
  color: var(--gold);
  padding: 12px 24px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(201,168,76,0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  box-shadow: var(--shadow-3d-navy);
  transition: all 0.12s ease;
}

.btn-3d-navy:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #050e22, 0 5px 12px rgba(0,0,0,0.45);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  background: rgba(7,16,42,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  gap: 6px;
}

.lang-btn {
  background: linear-gradient(145deg, #1e3068, #0d1b3e);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 12px;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  border-radius: 3px;
  box-shadow: 0 3px 0 #050e22, 0 4px 8px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: all 0.1s;
}

.lang-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #050e22, 0 2px 6px rgba(0,0,0,0.3);
}

.lang-btn.active {
  background: linear-gradient(145deg, #e8c97a, #c9a84c);
  color: var(--navy);
  font-weight: 700;
}

.nav-cta {
  background: linear-gradient(145deg, #e8c97a, #c9a84c);
  color: var(--navy);
  padding: 8px 20px;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: var(--shadow-3d-sm);
  transition: all 0.12s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #8a6a1a, 0 4px 10px rgba(0,0,0,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-lang {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.lang-btn-mobile {
  background: linear-gradient(145deg, #1e3068, #0d1b3e);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.lang-btn-mobile.active {
  background: linear-gradient(145deg, #e8c97a, #c9a84c);
  color: var(--navy);
  font-weight: 700;
}

.mm-link {
  color: var(--gold2);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px;
}

.mobile-wa-btn {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 0.8rem;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(7,16,42,0.5) 0%, rgba(7,16,42,0.75) 55%, var(--navy) 100%),
              url('https://carthage-dr.infinityfreeapp.com/img/port-la%20goulette.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
}

.hero-tag {
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 22px;
  margin-bottom: 28px;
  display: inline-block;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 2px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: clamp(0.7rem, 2vw, 0.88rem);
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.7);
  margin: 22px 0 38px;
  max-width: 580px;
  line-height: 1.9;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  box-shadow: 0 8px 0 rgba(5,14,34,0.6);
}

.hero-stat {
  padding: 20px 24px;
  flex: 1;
  border-right: 1px solid rgba(201,168,76,0.15);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  text-transform: uppercase;
}

/* Booking Bar */
.booking-bar {
  background: linear-gradient(135deg, #f5e9c8, #f0dfa8, #e8c97a);
  padding: 30px 5%;
  box-shadow: 0 8px 0 #8a6a1a;
  position: relative;
  z-index: 5;
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  min-width: 150px;
}

.booking-field label {
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: #5a3e10;
  text-transform: uppercase;
  font-weight: 600;
}

.field-3d-light {
  background: linear-gradient(145deg, #fff, #f5f0e8);
  border: 1px solid rgba(138,106,26,0.3);
  padding: 12px 16px;
  color: var(--navy);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  outline: none;
  width: 100%;
  border-radius: 3px;
  box-shadow: inset 0 3px 5px rgba(0,0,0,0.12), 0 2px 0 rgba(138,106,26,0.4);
}

.btn-book-3d {
  background: linear-gradient(145deg, #1e3068, #0d1b3e);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 3px;
  box-shadow: 0 5px 0 #050e22;
  transition: all 0.12s;
}

.btn-book-3d:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #050e22;
}

/* Sections */
section {
  padding: 80px 5%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 620px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.dark-section {
  background: var(--navy);
}

.light-section {
  background: var(--offwhite);
}

.mid-section {
  background: var(--navy2);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.service-card-3d {
  padding: 36px 28px;
  background: linear-gradient(145deg, rgba(30,48,104,0.7), rgba(13,27,62,0.9));
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  box-shadow: 0 8px 0 rgba(5,14,34,0.7);
  transition: transform 0.2s;
}

.service-card-3d:hover {
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.service-card-3d h3 {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--gold2);
}

.service-card-3d p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}

.service-price {
  margin-top: 18px;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
}

/* Excursions */
.exc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.exc-card-3d {
  background: white;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 0 rgba(100,80,20,0.25);
  transition: transform 0.22s;
}

.exc-card-3d:hover {
  transform: translateY(-6px);
}

.exc-img {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.exc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.exc-card-3d:hover .exc-img img {
  transform: scale(1.07);
}

.exc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #e8c97a, #c9a84c);
  color: var(--navy);
  padding: 5px 13px;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  box-shadow: 0 3px 0 #8a6a1a;
}

.exc-body {
  padding: 22px;
  background: white;
}

.exc-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 7px;
}

.exc-body p {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.8;
}

.exc-meta {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.exc-meta span {
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 4px 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
}

/* Gallery */
.gallery-section {
  background: var(--navy);
  padding: 80px 5%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 0 rgba(5,14,34,0.6);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 52px;
  align-items: center;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 5px;
  box-shadow: 0 5px 0 rgba(5,14,34,0.5);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  min-width: 48px;
}

.why-item h4 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 7px;
}

.why-item p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}

.why-visual {
  background: linear-gradient(145deg, rgba(30,48,104,0.6), rgba(13,27,62,0.9));
  border: 1px solid rgba(201,168,76,0.18);
  padding: 44px;
  border-radius: 6px;
  box-shadow: 0 12px 0 rgba(5,14,34,0.65);
}

.why-badge {
  text-align: center;
}

.why-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  color: var(--gold);
}

.why-badge-text {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

.why-divider {
  height: 1px;
  background: rgba(201,168,76,0.18);
  margin: 30px 0;
}

.why-langs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.lang-pill {
  padding: 7px 14px;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  background: linear-gradient(145deg, rgba(30,48,104,0.8), rgba(13,27,62,0.95));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  box-shadow: 0 4px 0 rgba(5,14,34,0.6);
}

/* Destinations Scroll */
.dest-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  margin-top: 44px;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.dest-scroll::-webkit-scrollbar {
  display: none;
}

.dest-item {
  min-width: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 5px;
  box-shadow: 0 8px 0 rgba(5,14,34,0.6);
  transition: transform 0.3s;
}

.dest-item:hover {
  transform: translateY(-5px);
}

.dest-img {
  height: 280px;
  overflow: hidden;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dest-item:hover .dest-img img {
  transform: scale(1.07);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}

.dest-sub {
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.testi-card {
  padding: 30px;
  background: linear-gradient(145deg, #fff, #f8f5ef);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 8px 0 rgba(138,106,26,0.18);
  transition: transform 0.2s;
}

.testi-card:hover {
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  margin-bottom: 18px;
}

.testi-author {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 52px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  box-shadow: 0 4px 0 rgba(5,14,34,0.5);
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-3d {
  background: linear-gradient(145deg, rgba(30,48,104,0.9), rgba(13,27,62,0.95));
  border: 1px solid rgba(201,168,76,0.3);
  padding: 13px 18px;
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  outline: none;
  width: 100%;
  border-radius: 3px;
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.4), 0 2px 0 rgba(5,14,34,0.8);
}

.field-3d::placeholder {
  color: rgba(255,255,255,0.3);
}

.field-3d:focus {
  border-color: var(--gold);
}

/* Footer */
footer {
  background: #07102a;
  padding: 56px 5% 28px;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-top {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.footer-brand {
  flex: 2;
  min-width: 220px;
}

.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.footer-brand p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.9;
  margin-top: 10px;
  max-width: 300px;
}

.footer-col {
  flex: 1;
  min-width: 130px;
}

.footer-col h5 {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 22px;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 1px;
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(145deg, #2de370, #25D366);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 0 #0f7a2e;
  text-decoration: none;
  transition: all 0.15s;
}

.wa-float:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #0f7a2e;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-right {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stat {
    padding: 15px 12px;
  }
  
  .hero-stat-num {
    font-size: 1.5rem;
  }
  
  .hero-stat-label {
    font-size: 0.45rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.tall {
    grid-row: span 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-field {
    min-width: 100%;
  }
  
  .btn-book-3d {
    width: 100%;
    text-align: center;
  }
  
  .exc-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btns a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    margin-top: 40px;
  }
  
  .hero-stat {
    padding: 12px 8px;
  }
  
  .hero-stat-num {
    font-size: 1.2rem;
  }
  
  .hero-stat-label {
    font-size: 0.4rem;
    letter-spacing: 1px;
  }
  
  section {
    padding: 60px 5%;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
  
  .why-visual {
    padding: 30px;
  }
  
  .why-badge-num {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .nav-logo-text {
    font-size: 0.9rem;
  }
  
  .nav-logo-sub {
    font-size: 0.35rem;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  
  .hero-tag {
    font-size: 0.5rem;
    letter-spacing: 3px;
    padding: 5px 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .exc-body h3 {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    gap: 8px;
  }
  
  .testi-text {
    font-size: 0.85rem;
  }
}

/* Logo transparency fixes */
.logo-img,
.logo-img img,
.nav-logo,
.nav-logo img,
.nav-logo[href],
a:has(> .logo-img) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

nav a,
nav .nav-logo,
header a,
header .logo {
  background: transparent !important;
}

nav img,
header img {
  background: transparent !important;
}