* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #ec4899;
  --text-dark: #1e293b;
  --text-gray: #475569;
  --bg-light: #faf5ff;
  --bg-gradient-start: #6366f1;
  --bg-gradient-end: #8b5cf6;
  --white: #ffffff;
  --ocean-blue: #0891b2;
  --sunset-orange: #f97316;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-text h1 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.slogan {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-switcher:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.lang-icon {
  font-size: 1.2rem;
}

.lang-text {
  font-size: 0.875rem;
  min-width: 2rem;
  text-align: center;
}

/* Banner */
.banner {
  position: relative;
  height: 700px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1600') center/cover;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.3), transparent 50%),
              radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.3), transparent 50%);
}

.banner-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  color: white;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Introduction */
.intro {
  padding: 4rem 0;
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
  position: relative;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(102, 126, 234, 0.1), transparent);
}

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

.intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.intro-content p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Yachts */
.yachts {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-gray);
}

.yacht-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.yacht-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
}

.yacht-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s;
}

.yacht-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}

.yacht-card:hover::after {
  opacity: 1;
}

.yacht-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.yacht-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.yacht-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.yacht-info {
  padding: 1.5rem;
}

.yacht-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.yacht-capacity {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.yacht-desc {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.yacht-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.view-all {
  text-align: center;
}

.btn-dark {
  background: #1f2937;
  color: white;
}

.btn-dark:hover {
  background: #111827;
}

/* Quick Actions */
.quick-actions {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quick-actions::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4), transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.quick-actions::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

.quick-actions h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.quick-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.step p {
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light {
  background: white;
  color: var(--text-dark);
}

.btn-light:hover {
  background: var(--bg-light);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20BA5A;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 1;
}

.hours {
  font-weight: 600;
  margin-top: 0.5rem;
}

.location {
  display: inline-block;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: background 0.3s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Page Header */
.page-header {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.3), transparent 50%),
              radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.3), transparent 50%);
}

.page-header-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header-content p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Yachts List Page */
.yachts-list {
  padding: 8rem 0 5rem;
  background: white;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Yacht Detail Page */
.yacht-detail-hero {
  position: relative;
  height: 500px;
  margin-top: 80px;
  overflow: hidden;
}

.yacht-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yacht-detail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 3rem 0 2rem;
}

.yacht-detail-overlay h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.yacht-detail-price {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.yacht-details {
  padding: 5rem 0;
  background: white;
}

.yacht-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.yacht-main-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.yacht-main-info h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.yacht-full-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.yacht-features-large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.feature-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.spec-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.spec-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.spec-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.yacht-booking-card {
  position: sticky;
  top: 100px;
}

.booking-card-inner {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.booking-card-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.booking-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.price-label {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.booking-info {
  margin-bottom: 1.5rem;
}

.booking-info p {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-gray);
}

.booking-info p:last-child {
  border-bottom: none;
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-yachts {
  padding: 5rem 0;
  background: var(--bg-light);
}

/* Stories Page - Masonry Gallery */
.stories-gallery {
  padding: 8rem 0 5rem;
  background: white;
}

.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.media-container {
  position: relative;
  width: 100%;
  background: var(--bg-light);
}

.media-container img,
.media-container video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.media-container video {
  max-height: 600px;
  object-fit: cover;
}

.masonry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.masonry-author {
  font-size: 0.875rem;
  opacity: 0.9;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  pointer-events: none;
  transition: all 0.3s;
}

.masonry-item:hover .play-icon {
  background: rgba(99, 102, 241, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-image,
.modal-video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}

.modal-video {
  width: 100%;
}

.modal-caption {
  text-align: center;
  color: white;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  margin-top: 1rem;
}

.modal-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-caption p {
  opacity: 0.9;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(99, 102, 241, 0.8);
  color: white;
  border: none;
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  z-index: 10000;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(99, 102, 241, 1);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.share-story-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.share-story-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.share-story-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Contact Page */
.contact-section {
  padding: 8rem 0 5rem;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-intro,
.form-intro {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.office-hours {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
}

.office-hours h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.location-link {
  display: inline-block;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  resize: vertical;
}

/* Map Section */
.map-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.map-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Not Found */
.not-found {
  padding: 5rem 0;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.not-found p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.125rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.125rem;
  }

  .intro-content h2,
  .section-header h2,
  .quick-actions h2 {
    font-size: 2rem;
  }

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

  .page-header {
    height: 300px;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .yacht-details-grid {
    grid-template-columns: 1fr;
  }

  .yacht-booking-card {
    position: static;
  }

  .masonry-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .masonry-item {
    margin-bottom: 15px;
  }

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

  .yacht-detail-hero {
    height: 300px;
  }

  .yacht-detail-overlay h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1;
    column-gap: 0;
  }

  .masonry-item {
    margin-bottom: 20px;
  }

  .modal-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }

  .modal-prev,
  .modal-next {
    font-size: 20px;
    padding: 10px 15px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-caption h3 {
    font-size: 1.2rem;
  }
}