/*
Theme Name: BlauYachts
Theme URI: https://blauyachts.com
Author: BlauYachts
Author URI: https://blauyachts.com
Description: Premium luxury yacht rental theme for BlauYachts. Minimalist ocean-inspired design with yacht fleet management, blog, and contact features.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blauyachts
Tags: luxury, yacht, marine, minimalist, dark, blue, responsive, custom-post-types
*/

/* ── ROOT VARIABLES ── */
:root {
  --deep: #020d1a;
  --abyss: #03111f;
  --ocean: #0a2540;
  --mid: #0e3a60;
  --marine: #1a5c8a;
  --sky: #2196c4;
  --foam: #4fc3f7;
  --pearl: #e8f4fd;
  --white: #f5fbff;
  --gold: #c8a96e;
  --glass: rgba(10,37,64,0.55);
  --glass-border: rgba(79,195,247,0.15);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.23,1,0.32,1);
  --max-width: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--deep);
  color: var(--pearl);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb { background: var(--marine); border-radius: 4px; }

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(3rem,7vw,6.5rem); }
h2 { font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 20px; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.1rem; font-family: 'Outfit', sans-serif; font-weight: 500; }
p { font-weight: 200; line-height: 1.85; }
em { font-style: italic; color: var(--foam); }

/* ── UTILITY ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.text-foam { color: var(--foam); }

.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--foam); margin-bottom: 16px;
}
.section-label::before { display: none; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-desc {
  font-size: 0.95rem; font-weight: 200;
  color: rgba(232,244,253,0.55);
  line-height: 1.9; max-width: 560px;
}

.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* glass card */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(79,195,247,0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(79,195,247,0.1);
}

/* buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--marine), var(--sky));
  border-radius: 50px; color: white;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(33,150,196,0.3);
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(33,150,196,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(79,195,247,0.3);
  border-radius: 50px; color: var(--foam);
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s; backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(79,195,247,0.1); border-color: var(--foam); transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.78rem; }

/* ── NAVIGATION ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(to bottom, rgba(2,13,26,0.95), transparent);
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(2,13,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  letter-spacing: 0.25em; color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--marine), var(--foam));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  box-shadow: 0 0 20px rgba(79,195,247,0.4);
  flex-shrink: 0;
}
.site-logo span { color: var(--foam); }
.main-nav { display: flex; gap: 36px; align-items: center; }
.main-nav a {
  color: rgba(232,244,253,0.7);
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s;
}
.main-nav a:hover { color: var(--foam); }
.nav-cta {
  padding: 10px 24px !important;
  background: transparent !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 50px !important;
  color: var(--foam) !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: rgba(79,195,247,0.12) !important; border-color: var(--foam) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--pearl); transition: 0.3s; display: block; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(2,13,26,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 32px; flex-direction: column; gap: 20px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(232,244,253,0.7); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, var(--ocean) 0%, var(--abyss) 60%, var(--deep) 100%);
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(26,92,138,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(33,150,196,0.15) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(79,195,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.wave-container {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px; overflow: hidden;
}
.wave {
  position: absolute; bottom: 0; left: 0;
  width: 200%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='rgba(10,37,64,0.5)' d='M0,60 C240,120 480,0 720,60 C960,120 1200,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: waveMove 8s linear infinite;
  opacity: 0.6;
}
.wave:nth-child(2) { animation-duration: 12s; animation-direction: reverse; opacity: 0.3; }
.wave:nth-child(3) { animation-duration: 6s; opacity: 0.2; }
@keyframes waveMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border: 1px solid var(--glass-border);
  border-radius: 50px; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--foam); margin-bottom: 32px;
  background: rgba(79,195,247,0.06); backdrop-filter: blur(10px);
  animation: fadeUp 0.8s both;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { animation: fadeUp 0.8s 0.15s both; margin-bottom: 24px; }
.hero-sub {
  font-size: 1rem; font-weight: 200;
  color: rgba(232,244,253,0.6); letter-spacing: 0.06em;
  max-width: 520px; margin: 0 auto 48px; line-height: 1.8;
  animation: fadeUp 0.8s 0.3s both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s both;
}
.hero-stats {
  position: absolute; bottom: 80px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 60px; z-index: 2;
  animation: fadeUp 0.8s 0.6s both;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--foam); display: block; line-height: 1;
}
.stat-label {
  font-size: 0.7rem; font-weight: 200; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(232,244,253,0.4); margin-top: 4px;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ── YACHT CAROUSEL ── */
.carousel-section {
  background: linear-gradient(180deg, var(--deep) 0%, var(--abyss) 100%);
  padding: 80px 0;
  position: relative; z-index: 1;
}
.carousel-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; padding: 0 48px;
  max-width: var(--max-width); margin-left: auto; margin-right: auto;
}
.carousel-wrapper { position: relative; overflow: hidden; padding: 0 48px 40px; }
.carousel-track {
  display: flex; gap: 28px;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
  will-change: transform;
}
.yacht-card {
  flex: 0 0 calc(33.333% - 19px);
  border-radius: var(--radius); overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.yacht-card:hover {
  border-color: rgba(79,195,247,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.yacht-img-wrap {
  position: relative; height: 240px; overflow: hidden;
  background: linear-gradient(135deg, var(--ocean), var(--mid));
}
.yacht-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.yacht-card:hover .yacht-img-wrap img { transform: scale(1.05); }
.yacht-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,13,26,0.85) 0%, transparent 50%);
}
.yacht-tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  padding: 4px 12px; background: rgba(79,195,247,0.15);
  border: 1px solid rgba(79,195,247,0.3); border-radius: 50px;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--foam);
  backdrop-filter: blur(10px);
}
.yacht-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: rgba(232,244,253,0.2); font-size: 0.75rem; letter-spacing: 0.1em;
}
.yacht-body { padding: 24px; }
.yacht-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.yacht-model { font-size: 0.75rem; color: rgba(232,244,253,0.4); letter-spacing: 0.1em; margin-bottom: 18px; }
.yacht-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.spec-item { text-align: center; padding: 10px 0; border-top: 1px solid var(--glass-border); }
.spec-val { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--foam); display: block; }
.spec-key { font-size: 0.62rem; color: rgba(232,244,253,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.yacht-desc { font-size: 0.8rem; color: rgba(232,244,253,0.45); line-height: 1.7; margin-bottom: 20px; }
.yacht-cta {
  width: 100%; padding: 12px;
  background: linear-gradient(135deg, rgba(26,92,138,0.4), rgba(14,58,96,0.4));
  border: 1px solid var(--glass-border); border-radius: 10px;
  color: var(--foam); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s;
}
.yacht-cta:hover { background: linear-gradient(135deg, rgba(33,150,196,0.3), rgba(26,92,138,0.3)); border-color: rgba(79,195,247,0.4); }

.carousel-controls {
  display: flex; gap: 12px; align-items: center; margin-top: 32px;
  justify-content: center;
}
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--foam); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { background: rgba(79,195,247,0.15); border-color: var(--foam); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(79,195,247,0.25); transition: all 0.3s; cursor: pointer;
}
.carousel-dot.active { background: var(--foam); width: 20px; border-radius: 3px; }

/* ── ABOUT ── */
.about-section { background: var(--abyss); position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; height: 480px; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ocean), var(--mid));
  border-radius: var(--radius); border: 1px solid var(--glass-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(232,244,253,0.25); font-size: 0.8rem; letter-spacing: 0.1em;
}
.float-stat {
  position: absolute; bottom: -20px; right: -20px;
  padding: 20px 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--marine), var(--ocean));
  border: 1px solid var(--glass-border); backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.float-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--foam); line-height: 1; }
.float-stat-text { font-size: 0.75rem; color: rgba(232,244,253,0.5); letter-spacing: 0.1em; margin-top: 4px; }
.values-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 22px; }
.value-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(79,195,247,0.15), rgba(33,150,196,0.08));
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.value-item h4 { margin-bottom: 4px; }
.value-item p { font-size: 0.8rem; color: rgba(232,244,253,0.45); line-height: 1.6; }

/* ── SERVICES ── */
.services-section {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14,58,96,0.35) 0%, transparent 70%), var(--deep);
  position: relative; z-index: 1;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.service-card { padding: 36px 28px; position: relative; overflow: hidden; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--foam), transparent);
  opacity: 0; transition: 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(79,195,247,0.1); line-height: 1; margin-bottom: 16px; }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 500; font-family: 'Outfit',sans-serif; margin-bottom: 10px; }
.service-card p { font-size: 0.82rem; color: rgba(232,244,253,0.45); line-height: 1.8; }

/* ── BLOG ── */
.blog-section { background: var(--abyss); position: relative; z-index: 1; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; margin-top: 48px; }
.blog-card { border-radius: var(--radius); overflow: hidden; }
.blog-thumb {
  width: 100%; height: 280px; overflow: hidden;
  background: linear-gradient(135deg, var(--mid), var(--ocean));
  position: relative;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,13,26,0.9), transparent 55%); }
.blog-thumb.small { height: 160px; }
.blog-body { padding: 24px; background: var(--glass); border: 1px solid var(--glass-border); border-top: none; }
.blog-cat { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--foam); margin-bottom: 10px; display: block; }
.blog-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.blog-body h4 { font-family: 'Cormorant Garamond',serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 8px; }
.blog-body p { font-size: 0.82rem; color: rgba(232,244,253,0.45); line-height: 1.8; }
.blog-meta { font-size: 0.72rem; color: rgba(232,244,253,0.3); margin-top: 14px; display: flex; gap: 12px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* ── LOCATION ── */
.location-section { background: var(--deep); position: relative; z-index: 1; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.map-wrap {
  height: 420px; border-radius: var(--radius);
  border: 1px solid var(--glass-border); overflow: hidden;
  background: var(--ocean); position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%) brightness(0.8) hue-rotate(180deg); }
.map-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: rgba(232,244,253,0.3); font-size: 0.8rem; letter-spacing: 0.1em;
  flex-direction: column; gap: 12px; position: relative;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 39px,rgba(79,195,247,0.04) 39px,rgba(79,195,247,0.04) 40px),
              repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(79,195,247,0.04) 39px,rgba(79,195,247,0.04) 40px);
}
.map-pin { width: 18px; height: 18px; background: var(--foam); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 20px rgba(79,195,247,0.7); animation: pinPulse 2s infinite; }
@keyframes pinPulse { 0%,100%{box-shadow:0 0 20px rgba(79,195,247,0.6)} 50%{box-shadow:0 0 40px rgba(79,195,247,0.9)} }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.loc-card { padding: 22px 24px; }
.loc-icon { font-size: 1.3rem; margin-bottom: 10px; }
.loc-card h4 { font-size: 0.82rem; letter-spacing: 0.08em; margin-bottom: 6px; color: var(--pearl); }
.loc-card p { font-size: 0.8rem; color: rgba(232,244,253,0.45); line-height: 1.7; }
.schedule { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.schedule-row { font-size: 0.75rem; color: rgba(232,244,253,0.4); display: flex; justify-content: space-between; }
.schedule-row span { color: var(--foam); }

/* ── CONTACT ── */
.contact-section {
  background: radial-gradient(ellipse at 30% 50%, rgba(14,58,96,0.3), transparent 60%), var(--abyss);
  position: relative; z-index: 1;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-methods { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.contact-method { display: flex; align-items: flex-start; gap: 18px; }
.c-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, rgba(79,195,247,0.12), rgba(33,150,196,0.06));
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-method h4 { font-size: 0.78rem; color: rgba(232,244,253,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; font-family: 'Outfit',sans-serif; }
.contact-method a { color: var(--pearl); font-size: 0.95rem; transition: color 0.3s; }
.contact-method a:hover { color: var(--foam); }
.social-row { display: flex; gap: 12px; margin-top: 36px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all 0.3s; text-decoration: none;
}
.social-btn:hover { border-color: rgba(79,195,247,0.4); background: rgba(79,195,247,0.1); transform: translateY(-3px); }

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(232,244,253,0.4); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(10,37,64,0.6); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 13px 16px;
  color: var(--pearl); font-size: 0.88rem; font-weight: 200;
  transition: all 0.3s; width: 100%; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(79,195,247,0.4);
  background: rgba(10,37,64,0.8);
  box-shadow: 0 0 0 3px rgba(79,195,247,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,244,253,0.2); }
.form-group select option { background: var(--ocean); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; padding: 16px 20px; border-radius: 10px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  color: #25d366; font-size: 0.85rem; text-align: center;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--deep); border-top: 1px solid var(--glass-border);
  padding: 60px 48px 36px; position: relative; z-index: 1;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.82rem; color: rgba(232,244,253,0.35); line-height: 1.8; margin-top: 14px; font-weight: 200; max-width: 260px; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--foam); margin-bottom: 18px; font-family: 'Outfit',sans-serif; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { color: rgba(232,244,253,0.38); font-size: 0.82rem; font-weight: 200; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--pearl); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--glass-border); }
.footer-bottom p { font-size: 0.72rem; color: rgba(232,244,253,0.22); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4), 0 8px 24px rgba(37,211,102,0.2), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: all 0.3s; text-decoration: none;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(37,211,102,0.5), 0 16px 40px rgba(37,211,102,0.25); animation: none; }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: rgba(2,13,26,0.95); border: 1px solid var(--glass-border);
  border-radius: 8px; padding: 8px 14px; font-size: 0.73rem; color: var(--pearl);
  white-space: nowrap; backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── SINGLE YACHT PAGE ── */
.single-yacht { padding-top: 100px; }
.yacht-hero { height: 60vh; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ocean), var(--mid)); }
.yacht-hero img { width: 100%; height: 100%; object-fit: cover; }
.yacht-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,13,26,0.85), transparent 50%); }
.yacht-hero-content { position: absolute; bottom: 40px; left: 0; right: 0; z-index: 2; padding: 0 48px; max-width: var(--max-width); margin: 0 auto; }
.yacht-meta { display: flex; gap: 16px; margin-bottom: 10px; }
.yacht-body-content { max-width: var(--max-width); margin: 0 auto; padding: 60px 48px; }
.yacht-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.specs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.spec-card { padding: 20px; }
.spec-card .spec-val { font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; color: var(--foam); }
.spec-card .spec-key { font-size: 0.75rem; color: rgba(232,244,253,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.yacht-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 40px; }
.yacht-gallery img { height: 200px; object-fit: cover; border-radius: 10px; border: 1px solid var(--glass-border); }

/* ── SINGLE BLOG PAGE ── */
.single-post { padding-top: 100px; max-width: 800px; margin: 0 auto; }
.post-hero { height: 50vh; overflow: hidden; border-radius: var(--radius); margin-bottom: 48px; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-content { padding: 0 48px 80px; }
.post-content h1 { font-size: 3rem; margin-bottom: 20px; }
.post-content p { font-size: 0.95rem; color: rgba(232,244,253,0.65); line-height: 1.9; margin-bottom: 20px; }
.post-content h2 { font-size: 2rem; margin: 36px 0 16px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .yacht-card { flex: 0 0 calc(50% - 14px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  #site-header { padding: 18px 24px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; bottom: 50px; }
  .carousel-header { padding: 0 24px; }
  .carousel-wrapper { padding: 0 24px 32px; }
  .yacht-card { flex: 0 0 calc(80% - 0px); }
  #site-footer { padding: 48px 24px 28px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .yacht-card { flex: 0 0 90%; }
  .specs-grid { grid-template-columns: 1fr; }
}
