/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .page-hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-overlay {
        background: rgba(0,0,0,0.1);
    }
}

/* Yacht Fleet Styles */
.yacht-showcase {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.yacht-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.yacht-image-container {
    position: relative;
    overflow: hidden;
}

.yacht-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yacht-showcase:hover .yacht-main-image {
    transform: scale(1.05);
}

.yacht-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yacht-badge.eco {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.yacht-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.yacht-details {
    padding: 2.5rem;
}

.yacht-details h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.yacht-type {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.yacht-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.yacht-quick-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-accent);
    border-radius: 10px;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.spec-item span {
    font-weight: 600;
    color: var(--dark-color);
}

.yacht-pricing {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.price-range {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.yacht-pricing small {
    color: var(--secondary-color);
}

.yacht-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Yacht Comparison Table */
.yacht-comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.yacht-comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.yacht-comparison-table th {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.5rem 1rem;
    border: none;
}

.yacht-comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.yacht-comparison-table tbody tr:hover {
    background: var(--light-accent);
}

/* Charter Packages */
.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
}

.package-icon i {
    font-size: 2rem;
    color: white;
}

.package-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.package-duration {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.package-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-accent);
    border-radius: 10px;
}

/* Individual Yacht Detail Pages */
.yacht-hero {
    position: relative;
    height: auto;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.yacht-hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
}

.yacht-hero h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.yacht-hero .yacht-type {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.yacht-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yacht-gallery img:hover {
    transform: scale(1.05);
}

.yacht-specs-detail {
    background: var(--light-accent);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.spec-item-detail {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.spec-item-detail:hover {
    transform: translateY(-3px);
}

.spec-item-detail i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.spec-item-detail h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.spec-item-detail span {
    color: var(--secondary-color);
    font-weight: 600;
}

.amenities-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.amenities-list {
    columns: 2;
    column-gap: 2rem;
    list-style: none;
    padding: 0;
}

.amenities-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
    position: relative;
    padding-left: 1.5rem;
}

.amenities-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Page Styles */
.contact-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0 4rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-info-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(85, 88, 121, 0.1);
}

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

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Policy Pages Styles */
.policy-hero {
    background: var(--gradient-primary);
    padding: 6rem 0 4rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-content h2 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h4 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-toc {
    background: var(--light-accent);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.policy-toc h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-toc ul {
    margin: 0;
    padding-left: 1.5rem;
}

.policy-toc a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-toc a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policy-content ol,
.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.policy-content strong {
    color: var(--primary-color);
}

.policy-contact {
    background: var(--light-accent);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.policy-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Booking Modal Styles */
.booking-modal .modal-content {
    border-radius: 20px;
    border: none;
}

.booking-modal .modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
}

.booking-modal .btn-close {
    filter: invert(1);
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error States */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000066;
        --secondary-color: #333366;
        --accent-color: #cccccc;
        --light-accent: #f0f0f0;
    }
    
    .btn-primary {
        background: #000066;
        border-color: #000066;
    }
    
    .btn-outline-primary {
        color: #000066;
        border-color: #000066;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .parallax {
        transform: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .policy-content,
    .contact-form,
    .yacht-showcase,
    .package-card {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .form-control,
    .form-select {
        background: #2a2a2a;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .table {
        color: #e0e0e0;
    }
    
    .table tbody tr:hover {
        background: rgba(255,255,255,0.1);
    }
}

/* Additional Responsive Improvements */
@media (max-width: 992px) {
    .yacht-quick-specs {
        grid-template-columns: 1fr;
    }
    
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yacht-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .yacht-hero h1 {
        font-size: 2.2rem;
    }
    
    .yacht-hero-content {
        padding: 2rem;
    }
    
    .yacht-details {
        padding: 2rem;
    }
    
    .yacht-comparison-table th,
    .yacht-comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .amenities-list {
        columns: 1;
    }
}

.pricing-features ul{
    list-style: none;
}

.yacht-quick-specs .spec-item i{
    font-size: 1rem;
}

.btn-outline-primary{
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    .yacht-hero {
        height: 100%;
        padding: 1rem;
        padding-top: 60px;
    }
    
    .yacht-hero h1 {
        font-size: 1.8rem;
    }
    
    .yacht-hero-content {
        padding: 1.5rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .yacht-actions {
        flex-direction: column;
    }
    
    .yacht-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .policy-content {
        padding: 2rem;
    }
}/* 
   Monferado Yacht Rentals - Custom Styles
   Color Palette: #555879, #98A1BC, #DED3C4, #F4EBD3
*/

:root {
    --primary-color: #555879;
    --secondary-color: #98A1BC;
    --accent-color: #DED3C4;
    --light-accent: #F4EBD3;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #555879 0%, #98A1BC 100%);
    --gradient-accent: linear-gradient(135deg, #DED3C4 0%, #F4EBD3 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif Pro', serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Bootstrap Overrides */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 88, 121, 0.4);
    background: var(--gradient-primary);
    border: none;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 10px 28px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Navigation */
.navbar {
    background: rgba(85, 88, 121, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand img{
    max-width: 200px;
}
html{
    overflow-x: hidden;
}
.navbar.scrolled {
    background: rgba(85, 88, 121, 0.98);
    padding: 0.5rem 0;
}

.brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(85, 88, 121, 0.8) 0%, rgba(152, 161, 188, 0.6) 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.hero-buttons {
    position: relative;
    z-index: 2;
}

/* Featured Yachts */
.featured-yachts {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-item {
    padding: 2rem 0;
}

.yacht-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.yacht-image:hover {
    transform: scale(1.05);
}

.yacht-info {
    padding: 2rem;
}

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

.yacht-specs {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.yacht-specs span {
    color: var(--secondary-color);
    font-weight: 600;
}

.yacht-specs i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Why Choose Section */
.why-choose {
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0.7;
    z-index: 1;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Captain's Journal */
.captains-journal {
    background: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.captains-journal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    opacity: 0.1;
}

.captains-journal .container {
    position: relative;
    z-index: 2;
}

.journal-entry {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.journal-entry:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.journal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.journal-content {
    padding: 1.5rem;
}

.journal-content h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.journal-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Hidden Bays Map */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    font-size: 0;
}

.interactive-map {
    position: relative;
}

.map-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-marker {
    position: absolute;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.map-marker:hover {
    transform: scale(1.2);
    color: #dc3545;
}

.marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: white;
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.marker-tooltip h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.marker-tooltip p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Customer Stories */
.customer-stories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: var(--accent-color);
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="b" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23b)"/></svg>');
    opacity: 0.1;
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.booking-form .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.booking-form .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(85, 88, 121, 0.1) 50%, transparent 100%);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer h5,
.footer h6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(85, 88, 121, 0.4);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .yacht-specs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-form-container {
        padding: 2rem;
    }
    
    .map-image {
        height: 300px;
    }
    
    .marker-tooltip {
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .booking-form-container {
        padding: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 10px auto;
}

/* About Page Styles */
.company-history {
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.rounded-lg {
    border-radius: 15px !important;
}

/* Crew Cards */
.crew-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.crew-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.crew-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.crew-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.crew-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(85, 88, 121, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crew-card:hover .crew-overlay {
    opacity: 1;
}

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

.crew-social a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.crew-social a:hover {
    transform: scale(1.1);
    background: var(--accent-color);
}

.crew-info {
    padding: 2rem;
}

.crew-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.crew-title {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.crew-certifications {
    margin-top: 1rem;
}

.crew-certifications .badge {
    background: var(--gradient-primary);
    color: white;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Sustainability Section */
.sustainability-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.sustainability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sustainability-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sustainability-icon i {
    font-size: 1.8rem;
    color: white;
}

.sustainability-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sustainability-list {
    list-style: none;
    padding: 0;
}

.sustainability-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.sustainability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cert-badge i {
    font-size: 1.2rem;
}

/* Awards Section */
.award-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.award-icon i {
    font-size: 1.5rem;
    color: white;
}

.award-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.award-year {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
}

.cert-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
}

.cta-buttons .btn {
    margin: 0.5rem;
}

/* Yacht Pages Styles */
.yacht-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.yacht-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yacht-gallery img:hover {
    transform: scale(1.05);
}

.yacht-specs-detail {
    background: var(--light-accent);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.spec-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.spec-item h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.amenities-list {
    columns: 2;
    column-gap: 2rem;
}

.amenities-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.map-container iframe {
    border-radius: 15px;
}

/* Policy Pages Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h4 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-toc {
    background: var(--light-accent);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.policy-toc ul {
    margin: 0;
    padding-left: 1.5rem;
}

.policy-toc a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-toc a:hover {
    text-decoration: underline;
}

/* Responsive Design Enhancements */
@media (max-width: 992px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        columns: 1;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .crew-image {
        height: 250px;
    }
    
    .sustainability-card,
    .award-card {
        margin-bottom: 2rem;
    }
    
    .yacht-gallery {
        grid-template-columns: 1fr;
    }
    
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .crew-info {
        padding: 1.5rem;
    }
    
    .sustainability-card {
        padding: 2rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .page-hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-overlay {
        background: rgba(0,0,0,0.1);
    }
}f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}