/* Global Styles */
:root {
    --primary-color: #1a75bc;
    --secondary-color: #0c4a80;
    --accent-color: #ff6b35;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --border-radius: 4px;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 1rem auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding: 0.5rem 0;
}

.header.scrolled {
    padding: 0.25rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 1.5rem;
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

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

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list .btn {
    margin-left: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 73px; /* Header height */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-content {
    max-width: 800px;
    color: var(--dark-color);
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.about-text p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--gray-color);
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--box-shadow);
}

.service-icon {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Fleet Section */
.fleet-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-button {
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-button:hover,
.category-button.active {
    background-color: var(--primary-color);
    color: white;
}

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

.boat-card {
    perspective: 1000px;
    height: 350px;
}

.boat-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.boat-card:hover .boat-card-inner {
    transform: rotateY(180deg);
}

.boat-card-front,
.boat-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.boat-card-front {
    background-color: var(--light-color);
}

.boat-card-back {
    background-color: var(--light-color);
    transform: rotateY(180deg);
    text-align: left;
}

.boat-image {
    width: 200px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.boat-type {
    color: var(--primary-color);
    font-weight: 500;
}

.boat-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.boat-specs li {
    margin-bottom: 0.5rem;
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.destination-content h3 {
    margin-bottom: 0.5rem;
}

.read-more {
    font-weight: 600;
    display: inline-block;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

/* Reviews Section */
.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-card {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 0 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text::before,
.review-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    position: absolute;
}

.review-text::before {
    top: -1rem;
    left: -1rem;
}

.review-text::after {
    bottom: -1.5rem;
    right: -1rem;
}

.review-author {
    font-weight: 600;
}

.review-location {
    color: var(--gray-color);
    font-size: 0.875rem;
}

.review-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.review-dot.active {
    background-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--light-color);
}

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

.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.875rem;
}

.form-check input {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-icon{
    width: 40px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-map {
    height: 300px;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    overflow: hidden;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
}

.footer-about {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-list a:hover {
    color: white;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-payment {
    display: flex;
    align-items: center;
}

.footer-payment span {
    margin-right: 1rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icon {
    width: 36px;
    height: 24px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Blog Section */
.blog-header {
    position: relative;
    background-color: var(--light-color);
    padding: 6rem 0 3rem;
    text-align: center;
    margin-top: 73px; /* Header height */
}

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

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

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card-inner {
    display: block;
    height: 100%;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.blog-image {
    overflow: hidden;
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    background-color: white;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1rem;
}

/* Article Styles */
.article-header {
    background-color: var(--light-color);
    padding: 6rem 0 2rem;
    margin-top: 73px; /* Header height */
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.blog-back-link {
    margin-right: auto;
}

.article-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.article-content {
    padding: 3rem 0;
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.article-intro {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.article-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text ul, 
.article-text ol {
    margin-bottom: 1.5rem;
}

.article-text li {
    margin-bottom: 0.5rem;
}

.article-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
}

.article-share {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin: 2rem 0;
}

.article-share span {
    margin-right: 1rem;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.related-articles {
    margin-top: 3rem;
}

.related-articles h3 {
    margin-bottom: 1.5rem;
}

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

.related-article {
    display: flex;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    color: inherit;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.related-image {
    flex: 0 0 100px;
    overflow: hidden;
}

.related-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.reviews-track{
    display: flex;
    gap: 10px;
}

.related-article:hover .related-thumbnail {
    transform: scale(1.1);
}

.related-content {
    padding: 1rem;
    flex: 1;
}

.related-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-section {
    padding: 6rem 0 3rem;
    margin-top: 73px; /* Header height */
}

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

.updated-date {
    color: var(--gray-color);
    font-size: 0.875rem;
}



.legal-toc {
    top: 120px;
    height: fit-content;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.legal-toc h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
}

.legal-toc li {
    margin-bottom: 0.75rem;
}

.legal-toc a {
    color: var(--dark-color);
}

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

.legal-section-content {
    margin-bottom: 3rem;
}

.legal-section-content h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.legal-section-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section-content p, 
.legal-section-content ul, 
.legal-section-content ol {
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.contact-details li {
    margin-bottom: 0.75rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cookie-table th, 
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 0;
    text-align: center;
    margin-top: 73px; /* Header height */
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
}

.thanks-content p {
    margin-bottom: 2rem;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 95%;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 0 0 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 90%;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .thanks-buttons {
        flex-direction: column;
    }
}