/* ==========================================================================
   Unukilla — LUXURY services DESIGN SYSTEM
   ========================================================================== */

/* Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
  --color-bg: #050505;
  --color-bg-deep: #0A0A0A;
  --color-bg-card: rgba(15, 15, 15, 0.65);
  
  --color-gold: #D4AF37;
  --color-gold-soft: #B8903D;
  --color-gold-glow: rgba(212, 175, 55, 0.25);
  
  --color-lavender: #D7C4D9;
  --color-lavender-dark: #CDBCCF;
  --color-lavender-glow: rgba(215, 196, 217, 0.18);
  
  --color-text: #E5E5E5;
  --color-text-muted: #A0A0A0;
  --color-white: #FFFFFF;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-accent: 'Outfit', var(--font-primary);
  
  --header-height: 90px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.05);
  --gold-border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Typography & Layout elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

p {
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Base Styles & Utility Classes */
.gold-text {
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-white) 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lavender-glow {
  box-shadow: 0 0 30px var(--color-lavender-glow);
}

.glass-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: 4px;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-logo-container {
  position: relative;
  width: 500px;
  height: 500px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-logo {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-gold-soft);
  animation: logo-pulse 2s infinite ease-in-out;
}

@media (max-width: 768px) {
  .loading-logo-container {
    width: 400px;
    height: 400px;
  }
  .loading-logo {
    width: 350px;
    height: 350px;
  }
}

.loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.5);
  z-index: 999;
  cursor: pointer;
  animation: pulse-whatsapp 2s infinite;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0px rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

/* Header & Sticky Transparent Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(5, 5, 5, 0.85);
  height: 80px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--glass-border);
}

.header-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-gold-soft);
  margin-right: 12px;
}

.brand-name {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1250px) {
  .brand-name {
    font-size: 1.1rem;
  }
}

.brand-name span {
  color: var(--color-gold);
}

/* Desktop Navigation Menu */
nav.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
  margin: 0 20px;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  display: block;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--color-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
  width: 100%;
}

/* Yachts Megamenu */
.megamenu-trigger {
  cursor: pointer;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 800px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: var(--gold-border);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--color-lavender-glow);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
}

.megamenu-trigger:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.megamenu-col {
  display: flex;
  flex-direction: column;
}

.megamenu-title {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.megamenu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.megamenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.megamenu-img-preview {
  width: 60px;
  height: 40px;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.megamenu-item:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.megamenu-item:hover .megamenu-img-preview {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.lang-btn {
  cursor: pointer;
  font-weight: 400;
  transition: var(--transition-smooth);
}

.lang-btn.active, .lang-btn:hover {
  color: var(--color-gold);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background-color: var(--color-gold);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background-color: var(--color-gold);
}

/* Mobile Fullscreen Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-link {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color-white);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  text-shadow: 0 0 10px var(--color-gold-glow);
}

.mobile-lang-switcher {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  font-size: 1rem;
}

@media (min-width: 700px) {
  .mobile-nav {
    left: auto;
    right: 0;
    width: 425px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mobile-nav-link {
    font-size: 1.4rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
  box-shadow: 0 0 20px var(--color-gold-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-bg);
  border-color: var(--color-white);
}

.btn-gold-outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-soft);
}

.btn-gold-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 15px var(--color-gold-glow);
}

/* Cinematic Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
}

.hero-subtitle {
  font-family: var(--font-accent);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* About Section */
.about {
  background-color: var(--color-bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-subtitle {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.about-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.about-img-wrapper {
  border: var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.about-img-1 {
  grid-column: 1 / span 8;
  grid-row: 1 / span 8;
  z-index: 2;
}

.about-img-2 {
  grid-column: 5 / span 8;
  grid-row: 5 / span 8;
  z-index: 1;
  margin-top: 30px;
}

.about-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Services Section */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 4px;
  border: var(--glass-border);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  z-index: 1;
  transition: var(--transition-smooth);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
  z-index: -2;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.3) 60%, rgba(5, 5, 5, 0.1) 100%);
  z-index: -1;
  transition: var(--transition-smooth);
}

.service-card-content {
  z-index: 3;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.service-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.service-text {
  font-size: 0.95rem;
  margin-bottom: 25px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--color-lavender-glow);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card:hover .service-card-bg::after {
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.4) 60%);
}

.service-card:hover .service-text {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 25px;
}

.service-card:hover .service-icon {
  transform: translateY(-5px);
  text-shadow: 0 0 10px var(--color-gold-glow);
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--color-bg-deep);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  padding: 40px;
  border-radius: 4px;
  border: var(--glass-border);
  background: rgba(10, 10, 10, 0.4);
  transition: var(--transition-smooth);
}

.why-number {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 600;
  display: block;
}

.why-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(15, 15, 15, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--color-lavender-glow);
}

/* Fleet Preview & Yachts Listing Grid */
.yacht-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.yacht-card {
  border-radius: 4px;
  overflow: hidden;
  border: var(--glass-border);
  background: var(--color-bg-card);
  transition: var(--transition-smooth);
}

.yacht-card-img-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
  background-color: #111;
}

.yacht-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.yacht-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: var(--gold-border);
  padding: 6px 12px;
  border-radius: 2px;
  color: var(--color-gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.yacht-card-content {
  padding: 30px;
}

.yacht-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.yacht-card-title {
  font-size: 1.4rem;
  font-weight: 500;
}

.yacht-card-model {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.yacht-card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item {
  text-align: center;
}

.spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  display: block;
}

.spec-value {
  font-size: 0.9rem;
  color: var(--color-white);
  font-weight: 500;
}

.yacht-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.yacht-card-price-container {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.price-value {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 600;
}

.yacht-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--color-lavender-glow);
}

.yacht-card:hover .yacht-card-img {
  transform: scale(1.05);
}

/* Yacht Collection Filters */
.collection-filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 15px;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 25px;
  border-radius: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 15px var(--color-gold-glow);
}

/* Testimonials Carousel */
.testimonials {
  background-color: var(--color-bg-deep);
  overflow: hidden;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  height: 250px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-quote {
  font-size: 1.4rem;
  color: var(--color-white);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.6;
}

.testimonial-author {
  font-family: var(--font-accent);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.slider-arrow {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  background: linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.95)), url('https://pub-fbcff2b4b09b4f3a8a88a8e6bb5c0e83.r2.dev/img__RESUMEN_FLOTA_2026_ESP_p6_1.png') center/cover;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.final-cta-text {
  font-size: 1.15rem;
  margin-bottom: 40px;
}

/* Footer Section */
footer {
  background-color: var(--color-bg);
  border-top: var(--glass-border);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrapper {
  margin-bottom: 25px;
}

.footer-description {
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

.footer-col-title {
  font-family: var(--font-accent);
  color: var(--color-white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-item i {
  color: var(--color-gold);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Yacht Detail Template Styling */
.yacht-detail-hero {
  height: 60vh;
  position: relative;
  background-size: cover;
  background-position: center;
}

.yacht-detail-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.85) 100%);
}

.yacht-detail-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 50px;
  z-index: 2;
}

.yacht-detail-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 50px;
  align-items: start;
}

/* Image Lightbox Gallery */
.gallery-section {
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.gallery-img-wrapper {
  height: 150px;
  overflow: hidden;
  border-radius: 2px;
  border: var(--glass-border);
  cursor: pointer;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-img-wrapper:hover img {
  transform: scale(1.08);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.98);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: var(--glass-border);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.6);
  border: var(--glass-border);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-arrow:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.lightbox-arrow-left {
  left: -70px;
}

.lightbox-arrow-right {
  right: -70px;
}

/* Tech Specs Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

.spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-table td {
  padding: 15px 10px;
  font-size: 0.95rem;
}

.spec-table td.label {
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  width: 40%;
}

.spec-table td.value {
  color: var(--color-white);
  font-weight: 400;
  text-align: right;
}

/* Pricing Card (Sidebar) */
.pricing-sidebar-card {
  padding: 40px;
  border-radius: 4px;
  border: var(--gold-border);
  background: rgba(10, 10, 10, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--color-lavender-glow);
}

.pricing-sidebar-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-season-label {
  color: var(--color-text-muted);
}

.pricing-season-price {
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-weight: 600;
}

.availability-cta-btn {
  margin-top: 30px;
  width: 100%;
  display: flex;
  gap: 10px;
  background-color: #25d366;
  border-color: #25d366;
  color: white;
}

.availability-cta-btn:hover {
  background-color: transparent;
  color: #25d366;
  border-color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

/* Inclusions & Exclusions */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.inclusions-card, .exclusions-card {
  padding: 30px;
  border: var(--glass-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.01);
}

.inclusions-title {
  font-size: 1.15rem;
  color: #25d366;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exclusions-title {
  font-size: 1.15rem;
  color: #ff3333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.incl-excl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.incl-excl-item {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.incl-excl-item i {
  margin-top: 4px;
}

.incl-excl-item.incl i {
  color: #25d366;
}

.incl-excl-item.excl i {
  color: #ff3333;
}

/* Luxury Transfers Grid */
.transfers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.transfer-card {
  border-radius: 4px;
  border: var(--glass-border);
  background: var(--color-bg-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transition: var(--transition-smooth);
}

.transfer-card-img-wrapper {
  height: 100%;
  min-height: 250px;
}

.transfer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transfer-card-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.transfer-card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.transfer-card-capacity {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}

.transfer-features {
  list-style: none;
  margin-bottom: 25px;
}

.transfer-feature-item {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.transfer-feature-item i {
  color: var(--color-gold);
}

.transfer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--color-lavender-glow);
}

/* Experiences Categories Grid */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.experience-card {
  min-height: 420px;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: var(--transition-smooth);
}

.experience-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.2) 60%);
  z-index: 1;
}

.experience-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: var(--transition-smooth);
}

.experience-card-content {
  position: relative;
  z-index: 2;
}

.experience-card-status {
  font-size: 0.65rem;
  background: rgba(212, 175, 55, 0.25);
  color: var(--color-gold);
  border: 1px solid var(--color-gold-soft);
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 12px;
}

.experience-card-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.experience-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.experience-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-lavender-glow);
}

.experience-card:hover .experience-card-bg {
  transform: scale(1.05);
}

/* Contact Page Form & details */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

.contact-form-card {
  padding: 50px;
  border: var(--glass-border);
  border-radius: 4px;
  background: var(--color-bg-card);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-form-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-text {
  font-size: 0.95rem;
  margin-bottom: 35px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  color: var(--color-white);
  padding: 15px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-sidebar-block-title {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: var(--glass-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.contact-channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
  transition: var(--transition-smooth);
}

.contact-channel-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-channel-item:hover .contact-channel-icon {
  background: var(--color-gold);
  color: var(--color-bg);
}

.contact-channel-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-channel-value {
  font-size: 1.05rem;
  color: var(--color-white);
  font-weight: 500;
}

/* Form Success State styling */
.form-success-message {
  text-align: center;
  padding: 40px 0;
}

.form-success-icon {
  font-size: 4rem;
  color: #25d366;
  margin-bottom: 20px;
}

/* Page Banner (Header for secondary pages) */
.page-banner {
  padding-top: 180px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, var(--color-bg-deep) 0%, var(--color-bg) 100%);
  text-align: center;
}

.page-banner-title {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.page-banner-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .about-grid {
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yacht-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .transfers-grid {
    grid-template-columns: 1fr;
  }
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  header {
    height: 80px;
  }
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image-grid {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-img-wrapper img {
    height: 280px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .yacht-detail-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 15px;
  }
  .about-title, .section-title, .final-cta-title, .page-banner-title {
    font-size: 2.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .yacht-grid {
    grid-template-columns: 1fr;
  }
  .transfer-card {
    grid-template-columns: 1fr;
  }
  .transfer-card-img-wrapper {
    height: 220px;
  }
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 30px 20px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .collection-filter-container {
    flex-wrap: wrap;
  }
  .filter-btn {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-arrow-left {
    left: 10px;
  }
  .lightbox-arrow-right {
    right: 10px;
  }
}

/* --------------------------------------
   Yacht Gallery Grid & Lightbox
--------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}
.gallery-grid .gallery-img-wrapper:first-child {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  height: 300px;
}
.gallery-img-wrapper {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background-color: #111;
}
.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-img-wrapper:hover img {
  transform: scale(1.05);
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.lightbox-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--color-gold);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-arrow:hover {
  background: var(--color-gold);
  color: #000;
}
.lightbox-arrow-left {
  left: -60px;
}
.lightbox-arrow-right {
  right: -60px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-grid .gallery-img-wrapper:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  .lightbox-arrow-left { left: 10px; }
  .lightbox-arrow-right { right: 10px; }
  .lightbox-close { right: 10px; top: -40px; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 1110px) {
  /* Navigation */
  nav.desktop-nav, .desktop-nav {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
  
  /* Grids & Layouts */
  .about-grid,
  .yacht-detail-main-grid,
  .yacht-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .services-grid,
  .why-us-grid,
  .yacht-grid,
  .extras-grid,
  .experiences-grid,
  .transfers-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px;
  }
  
  /* Typography */
  .hero-title { font-size: 3.2rem; }
  .section-title { font-size: 2.4rem; }
  .about-title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  /* Section Padding */
  section {
    padding: 60px 0;
  }
  
  /* Grids & Layouts */
  .services-grid,
  .why-us-grid,
  .yacht-grid,
  .extras-grid,
  .experiences-grid,
  .transfers-grid,
  .inclusions-grid,
  .form-group-row,
  .transfer-card {
    grid-template-columns: 1fr !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .footer-col {
    align-items: center;
  }
  
  .footer-logo-wrapper {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Typography */
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .about-title { font-size: 2rem; }
  .hero-text { font-size: 1rem; }
  
  /* Hero Section Elements */
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* About Image Grid Adjustment */
  .about-image-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about-img-1, .about-img-2 {
    width: 100%;
    margin-top: 0 !important;
  }
  
  /* Yacht specific (if present) */
  .yacht-specs {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .detail-hero-title {
    font-size: 2.5rem;
  }
  
  /* Form adjustments */
  .form-grid {
    grid-template-columns: 1fr !important;
  }
}
