@font-face {
    font-family: 'Phosphor';
    src: url('../fonts/Phosphor.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.ph {
    font-family: 'Phosphor';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    speak: never;
}

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

:root {
    --bg-color: #111B26;
    --accent-color: #BB9656;
    --text-light: #ffffff;
    --text-gray: #a0a9b8;
    --card-bg: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(187, 150, 86, 0.4);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(187, 150, 86, 0.4);
    color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5rem 5%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}

nav.scrolled {
    padding: 0.4rem 5%;
    background: rgba(17, 27, 38, 0.75);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    height: 52px;
    width: auto;
    transition: all 0.4s ease;
    cursor: pointer;
    filter: brightness(0) invert(1);
}

nav.scrolled .logo-icon {
    filter: none;
    height: 46px;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(187, 150, 86, 0.3));
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta a {
    background: var(--accent-color);
    color: #ffffff !important;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-weight: 500;
    transition: background 0.25s ease, opacity 0.25s ease !important;
}

.nav-cta a:hover {
    opacity: 0.85;
}

.nav-cta a::after {
    display: none;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu span {
    width: 22px;
    height: 1.5px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.2s ease;
    display: block;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-color); /* Fallback background */
    width: 100%;
    max-width: none;
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video,
.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: var(--bg-color);
}

.hero-video-low {
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.hero-video-high {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Hide video controls and play button */
.hero-video-player::-webkit-media-controls {
    display: none !important;
}

.hero-video-player::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-video-player::-webkit-media-controls-play-button {
    display: none !important;
}

/* Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(17, 27, 38, 0.3), 
        rgba(17, 27, 38, 0.4)
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}


.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.6s forwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(187, 150, 86, 0.3);
}

/* Sections */
section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

/* Owner Section */
.owner-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.owner-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #1a2a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.owner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.owner-logo-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(187, 150, 86, 0.2);
    border-radius: 50%;
    padding: 8px;
    z-index: 2;
}

.owner-logo-icon {
    height: 24px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(70%) sepia(18%) saturate(1045%) hue-rotate(24deg) brightness(92%) contrast(86%);
    opacity: 0.8;
}

.owner-info h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.owner-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Category anchor navigation (sticky) */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem 1rem;
    position: sticky;
    top: 58px;
    background: rgba(17, 27, 38, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 99;
    border-bottom: 1px solid rgba(187, 150, 86, 0.12);
    margin-bottom: 0;
}

.cat-anchor {
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.45rem 1.1rem;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1.5px solid rgba(187, 150, 86, 0.22);
    transition: all 0.22s ease;
    white-space: nowrap;
}

.cat-anchor:hover,
.cat-anchor.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(187, 150, 86, 0.08);
}

/* Category section header */
.fleet-cat-section {
    padding: 3.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
}

.fleet-cat-section:first-of-type {
    border-top: none;
    margin-top: 0;
}

.cat-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.cat-section-icon {
    font-family: 'Phosphor';
    font-style: normal;
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-color);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.cat-section-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.cat-section-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.cat-section-count {
    margin-left: auto;
    background: rgba(187, 150, 86, 0.12);
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(187, 150, 86, 0.25);
    white-space: nowrap;
    align-self: center;
    flex-shrink: 0;
}

.fleet-cat-section.hidden {
    display: none;
}

/* Cat-anchor nav: Phosphor icon inline */
.cat-anchor i.ph {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 0.2rem;
}

/* Per-category show-more */
.boat-card.cat-hidden {
    display: none;
}

.cat-show-more-wrap {
    text-align: center;
    margin-top: 2rem;
}

.cat-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 2rem;
    background: transparent;
    border: 1.5px solid rgba(187, 150, 86, 0.4);
    color: var(--accent-color);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cat-show-more-btn:hover {
    background: rgba(187, 150, 86, 0.1);
    border-color: var(--accent-color);
}

.cat-show-more-btn i.ph {
    font-size: 1.1rem;
}

.cat-show-more-btn.fully-loaded {
    display: none;
}

/* Category Badge on card */
.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(17, 27, 38, 0.78);
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.28rem 0.7rem;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(187, 150, 86, 0.3);
    pointer-events: none;
    z-index: 2;
}


/* Spec details line */
.spec-details {
    color: var(--text-gray) !important;
    font-size: 0.82rem !important;
    opacity: 0.85;
}

/* Fleet Section */
.fleet-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(187, 150, 86, 0.1);
    backdrop-filter: blur(10px);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-group label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slider Styles */
.slider-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(187, 150, 86, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(187, 150, 86, 0.3);
}

.filter-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(187, 150, 86, 0.5);
}

.filter-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(187, 150, 86, 0.3);
    transition: all 0.3s ease;
}

.filter-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(187, 150, 86, 0.5);
}

.slider-display {
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(187, 150, 86, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(187, 150, 86, 0.2);
}

/* Toggle Buttons */
.toggle-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.toggle-button {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(187, 150, 86, 0.3);
    color: var(--text-gray);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    min-width: 80px;
}

.toggle-button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.toggle-button.active {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(187, 150, 86, 0.3);
}

.reset-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(187, 150, 86, 0.5);
    color: var(--accent-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
}

.reset-button:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 150, 86, 0.4);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Large yachts: 2-column, wider cards */
.large-yachts-section .fleet-grid {
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}

/* Water toys: horizontal card layout */
.toys-section .fleet-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.toys-section .boat-card {
    display: flex;
    flex-direction: row;
}

.toys-section .boat-card .boat-image-container {
    width: 260px;
    min-height: 180px;
    height: auto;
    flex-shrink: 0;
    border-radius: 15px 0 0 15px;
}

.toys-section .boat-card .boat-image-slider {
    height: 100%;
    min-height: 180px;
}

.toys-section .boat-card .boat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.boat-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(28px);
    border: 1px solid rgba(187, 150, 86, 0.1);
}

.boat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(187, 150, 86, 0.3);
}

.boat-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.boat-image {
    height: 200px;
    background: linear-gradient(135deg, #1a2a3a 0%, #111B26 100%);
    position: relative;
    overflow: hidden;
}

.boat-image::before {
    content: '\e78a';
    font-family: 'Phosphor';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

/* Boat Image Slider */
.boat-image-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slider-image.active {
    opacity: 1;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slider-prev i.ph,
.slider-next i.ph {
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.boat-image-container:hover .slider-prev,
.boat-image-container:hover .slider-next {
    opacity: 0.8;
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 1 !important;
    background: rgba(187, 150, 86, 0.8);
}

/* Removed slider indicators - no longer needed */

.boat-info {
    padding: 1.5rem;
}

.boat-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.boat-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.boat-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.boat-price {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Boat Actions */
.boat-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.details-button {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid rgba(187, 150, 86, 0.45);
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.details-button:hover {
    background: rgba(187, 150, 86, 0.12);
    border-color: var(--accent-color);
}

.inquiry-button {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--accent-color);
    color: #111B26;
    border: none;
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.inquiry-button:hover {
    background: #c4a364;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(187, 150, 86, 0.3);
}


.boat-card.hidden {
    display: none;
}

.boat-card.hidden {
    display: none;
}

.load-more-container {
    display: none;
}

/* Fleet Contact Suggestion */
.fleet-contact-suggestion {
    margin: 4rem 0 2rem 0;
    display: flex;
    justify-content: center;
}

.contact-suggestion-card {
    background: linear-gradient(135deg, rgba(187, 150, 86, 0.1) 0%, rgba(187, 150, 86, 0.05) 100%);
    border: 1px solid rgba(187, 150, 86, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-suggestion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(187, 150, 86, 0.2);
    border-color: rgba(187, 150, 86, 0.5);
}

.contact-suggestion-card h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-suggestion-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.suggestion-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.suggestion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(187, 150, 86, 0.4);
    background: #c4a364;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-item:hover {
    background: rgba(187, 150, 86, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-icon .ph {
    font-size: 3rem;
    color: var(--accent-color);
}

.contact-ph {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: var(--card-bg);
    border: 1px solid rgba(187, 150, 86, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(187, 150, 86, 0.3);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid rgba(187, 150, 86, 0.3);
    transition: all 0.3s ease;
}

.testimonial-avatar.default-avatar {
    background: linear-gradient(135deg, var(--accent-color), #c4a364);
}

.testimonial-item:hover .testimonial-avatar {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.testimonial-info {
    flex: 1;
    text-align: left;
}

.stars {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--accent-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Fix phone number and email link colors */
.contact-info a,
.contact-info p a,
.legal-content a,
.imprint a,
.privacy a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover,
.contact-info p a:hover,
.legal-content a:hover,
.imprint a:hover,
.privacy a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(187, 150, 86, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(187, 150, 86, 0.05);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(187, 150, 86, 0.3);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
    display: block;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-gray);
    padding: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(187, 150, 86, 0.2);
    width: 100%;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: var(--text-gray);
    opacity: 0.7;
    margin: 0;
}

.footer-logo-icon {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo-icon:hover {
    opacity: 1;
}

/* Footer Links */
.footer-links {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links span {
    color: var(--text-gray);
    opacity: 0.5;
}

/* Language Selector */
.language-selector {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lang-button {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(187, 150, 86, 0.3);
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lang-button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.lang-button.active {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Mobile Menu Animation */
.nav-links.mobile-active {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: rgba(17, 27, 38, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    animation: slideInRight 0.3s ease-out;
}

.nav-links.mobile-closing {
    animation: slideOutRight 0.3s ease-out;
}

.nav-links.mobile-active li {
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
}

.nav-links.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
.nav-links.mobile-active li:nth-child(2) { animation-delay: 0.15s; }
.nav-links.mobile-active li:nth-child(3) { animation-delay: 0.2s; }
.nav-links.mobile-active li:nth-child(4) { animation-delay: 0.25s; }
.nav-links.mobile-active li:nth-child(5) { animation-delay: 0.3s; }
.nav-links.mobile-active li:nth-child(6) { animation-delay: 0.35s; }

.mobile-menu-logo {
    display: none;
}

.nav-links.mobile-active .mobile-menu-logo {
    display: block;
    position: absolute;
    bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.4s ease-out 0.45s forwards;
}

.mobile-menu-logo img {
    width: 48px;
    height: 48px;
    opacity: 0.35;
    filter: drop-shadow(0 0 6px rgba(187, 150, 86, 0.3));
}

.nav-links.mobile-active a {
    font-size: 1.5rem;
    font-weight: 500;
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
        z-index: 1000;
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* Optimize video for mobile */
    .hero-video video {
        object-position: center;
    }

    /* Lighter overlay on mobile to match desktop */
    .hero-overlay {
        background: linear-gradient(
            rgba(17, 27, 38, 0.4), 
            rgba(17, 27, 38, 0.5)
        );
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .owner-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section {
        padding: 3rem 5%;
    }

    .logo-icon {
        height: 45px;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .fleet-filters {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .toggle-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .toggle-button {
        flex: none;
        width: 100%;
    }

    .reset-button {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: row;
        gap: 1rem;
        margin: 0;
    }

    .footer-links span {
        display: inline;
        color: var(--text-gray);
        opacity: 0.5;
    }

    .contact-suggestion-card {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .contact-suggestion-card h3 {
        font-size: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .testimonial-profile {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Mobile: category nav scrolls horizontally */
    .category-nav {
        top: 52px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        gap: 0.4rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .category-nav::-webkit-scrollbar { display: none; }

    .cat-anchor {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
    }

    .fleet-cat-section {
        padding: 2.5rem 0 0.5rem;
    }

    .cat-section-header {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .cat-section-count {
        margin-left: 0;
    }

    .cat-section-text h3 {
        font-size: 1.25rem;
    }

    /* Toys: stack vertically on mobile */
    .toys-section .boat-card {
        flex-direction: column;
    }

    .toys-section .boat-card .boat-image-container {
        width: 100%;
        height: 200px;
        border-radius: 15px 15px 0 0;
    }

    .toys-section .boat-card .boat-image-slider {
        height: 200px;
        min-height: 200px;
    }

    /* Large yachts: single column on mobile */
    .large-yachts-section .fleet-grid {
        grid-template-columns: 1fr;
    }

}

/* Legal Pages */
.legal-page {
    padding: 8rem 5% 5rem;
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
}

.legal-container {
    background: var(--card-bg);
    border: 1px solid rgba(187, 150, 86, 0.1);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-title {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-subtitle,
.legal-last-updated {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 1px solid rgba(187, 150, 86, 0.2);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

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

.legal-content ul {
    color: var(--text-gray);
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.company-info,
.contact-info,
.management-info,
.registration-info,
.insurance-info {
    background: rgba(187, 150, 86, 0.05);
    border: 1px solid rgba(187, 150, 86, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.company-info p,
.contact-info p,
.management-info p,
.registration-info p,
.insurance-info p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 3% 3rem;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .legal-title {
        font-size: 2rem;
    }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    background: #0d1620;
    border-top: 1px solid rgba(187, 150, 86, 0.15);
    border-bottom: 1px solid rgba(187, 150, 86, 0.15);
    padding: 2.5rem 5%;
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    flex: 1;
}

.stat-icon {
    font-family: 'Phosphor';
    font-style: normal;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(187, 150, 86, 0.2);
    flex-shrink: 0;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
#why-us {
    padding: 5rem 5%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid rgba(187, 150, 86, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(187, 150, 86, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(187, 150, 86, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: background 0.3s ease;
}

.why-card:hover .why-icon {
    background: rgba(187, 150, 86, 0.22);
}

.why-icon i.ph {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #fff;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
#how-it-works {
    padding: 5rem 5%;
    background: rgba(255, 255, 255, 0.015);
}

.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.hiw-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hiw-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.hiw-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: rgba(187, 150, 86, 0.6);
}

.hiw-icon i.ph {
    font-size: 2rem;
}

.hiw-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hiw-step p {
    font-size: 0.87rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hiw-arrow {
    display: flex;
    align-items: center;
    padding-top: 1.8rem;
    color: rgba(187, 150, 86, 0.4);
    flex-shrink: 0;
}

.hiw-arrow i.ph {
    font-size: 1.6rem;
}

/* =====================================================
   FAQ
   ===================================================== */
#faq {
    padding: 5rem 5%;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(187, 150, 86, 0.12);
    padding: 0.2rem 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(187, 150, 86, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.2s ease;
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover {
    color: var(--accent-color);
}

.faq-caret {
    font-size: 1rem;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

details[open] .faq-caret {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 0.87rem;
    color: var(--text-gray);
    line-height: 1.7;
    padding: 0 0 1.2rem;
}

/* Testimonials — Phosphor star color */
.stars i.ph {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-avatar.default-avatar {
    background: rgba(187, 150, 86, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar.default-avatar i.ph {
    font-size: 1.8rem;
    color: var(--accent-color);
}

/* =====================================================
   RESPONSIVE — new sections
   ===================================================== */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-col:last-child .faq-item:first-child {
        border-top: none;
    }
}

@media (max-width: 600px) {
    .stats-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-divider { display: none; }

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

    .hiw-steps {
        flex-direction: column;
        align-items: center;
    }

    .hiw-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }
}