/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5282;
    --secondary-color: #d69e2e;
    --accent-color: #4299e1;
    --text-dark: #1a202c;
    --text-light: #718096;
    --background-light: #f7fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    --gradient-overlay: linear-gradient(rgba(44, 82, 130, 0.8), rgba(66, 153, 225, 0.6));
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-search {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
    justify-content: center;
}

.search-field {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.search-field label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.search-field input,
.search-field select {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.yacht-count {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
    transition: var(--transition);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Featured Yacht Section */
.featured-yacht {
    padding: 100px 0;
}

.yacht-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.yacht-image {
    position: relative;
}

.featured-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.yacht-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.yacht-info h2 {
    margin-bottom: 1.5rem;
}

.yacht-info p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Trending Yachts */
.trending-yachts {
    padding: 100px 0;
    background: var(--background-light);
}

.header-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn.active,
.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.yacht-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.yacht-card:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: var(--shadow-medium);
}

.yacht-card.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.yacht-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.yacht-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.yacht-details {
    padding: 1.5rem;
}

.yacht-details h3 {
    margin-bottom: 0.5rem;
}

.yacht-location {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.yacht-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.yacht-price {
    text-align: right;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}


/* Activities Section */
.activities {
    padding: 100px 0;
}

.activities h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.activity-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-content {
    padding: 2rem;
}

.activity-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.activity-link:hover {
    color: var(--accent-color);
}

/* Help Section */
.help-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.help-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.help-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.help-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Fleet Selection */
.fleet-selection {
    padding: 100px 0;
    background: var(--background-light);
}

.fleet-selection h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fleet-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.fleet-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-item h3 {
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.fleet-item p {
    padding: 0 1rem 1.5rem;
    margin: 0;
}

/* Destinations */
.destinations {
    padding: 100px 0;
}

.destinations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.destinations-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.dest-image-large,
.dest-image-small {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.dest-image-large {
    grid-row: span 2;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
}

.dest-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dest-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.destinations-features {
    list-style: none;
    margin: 2rem 0;
}

.destinations-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.destinations-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--background-light);
}

.blog h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .yacht-content,
    .destinations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destinations-images {
        grid-template-columns: 1fr;
    }

    .dest-image-large {
        grid-row: span 1;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .services-grid,
    .yachts-grid,
    .activities-grid,
    .help-steps,
    .fleet-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.page-hero .hero-content {
    color: var(--white);
    text-align: center;
}

.page-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Introduction */
.about-intro {
    padding: 100px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.intro-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--background-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.stats-section h2 {
    color: var(--white);
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.member-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: var(--background-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.cert-item:hover .cert-icon {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.cert-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 100px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    margin: 0 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        flex: none;
        width: 50px;
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}


/* Services Page Specific Styles */

/* Services Overview */
.services-overview {
    padding: 100px 0;
}

.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.services-overview .service-card {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.services-overview .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.services-overview .service-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-label {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
}

.price-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.price-header h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.price-features {
    list-style: none;
    padding: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i.fas.fa-check {
    color: var(--primary-color);
}

.price-features i.fas.fa-times {
    color: #e53e3e;
}

.text-muted {
    color: var(--text-light);
    opacity: 0.6;
}

.btn-full {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
}

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.extra-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.extra-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.extra-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.extra-item h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.extra-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Fleet Overview */
.fleet-overview {
    padding: 100px 0;
    background: var(--background-light);
}

.fleet-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.fleet-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fleet-category:nth-child(even) {
    direction: rtl;
}

.fleet-category:nth-child(even) .fleet-info {
    direction: ltr;
}

.fleet-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.fleet-info h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.fleet-specs {
    list-style: none;
    margin-top: 1.5rem;
}

.fleet-specs li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.fleet-specs strong {
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Destinations Page Specific Styles */

/* Destinations Overview */
.destinations-overview {
    padding: 50px 0;
    background: var(--background-light);
}

.destinations-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Destinations Grid */
.destinations-grid-section {
    padding: 100px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.destination-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: var(--white);
}

.destination-badge {
    align-self: flex-start;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.destination-badge.premium {
    background: linear-gradient(135deg, #d69e2e, #f6ad55);
}

.destination-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.destination-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.destination-features {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    opacity: 0.8;
}

.destination-content {
    padding: 2rem;
}

.destination-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.destination-highlights {
    list-style: none;
    margin: 1.5rem 0;
}

.destination-highlights li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.destination-highlights i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.destination-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    margin-top: 1rem;
}

/* Seasonal Recommendations */
.seasonal-recommendations {
    padding: 100px 0;
    background: var(--background-light);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.season-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.season-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 2rem;
}

.season-destinations {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.season-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.season-benefits {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.season-benefits li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1rem;
}

.season-benefits li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Special Experiences */
.special-experiences {
    padding: 100px 0;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.experience-image {
    height: 200px;
    overflow: hidden;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-card:hover .exp-img {
    transform: scale(1.1);
}

.experience-content {
    padding: 1.5rem;
}

.experience-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.experience-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.experience-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Planning Section */
.planning-section {
    padding: 100px 0;
    background: var(--background-light);
}

.planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.planning-features {
    margin-top: 2rem;
}

.planning-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.planning-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.planning-form h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.destination-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Responsive Design for Destinations Page */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .planning-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .experience-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .destinations-filter {
        justify-content: stretch;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 0;
    }
    
    .planning-form {
        padding: 1.5rem;
    }
    
    .season-destinations {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .services-overview .service-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
    
    .fleet-category {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fleet-category:nth-child(even) {
        direction: ltr;
    }
    
    .pricing-grid,
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        flex-direction: column;
        gap: 0;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-overview .services-grid {
        grid-template-columns: 1fr;
    }
    
    .price-header {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
}/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.page-hero .hero-content {
    color: var(--white);
    text-align: center;
}

.page-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Introduction */
.about-intro {
    padding: 100px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.intro-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--background-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.stats-section h2 {
    color: var(--white);
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.member-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: var(--background-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.cert-item:hover .cert-icon {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.cert-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 100px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    margin: 0 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        flex: none;
        width: 50px;
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5282;
    --secondary-color: #d69e2e;
    --accent-color: #4299e1;
    --text-dark: #1a202c;
    --text-light: #718096;
    --background-light: #f7fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    --gradient-overlay: linear-gradient(rgba(44, 82, 130, 0.8), rgba(66, 153, 225, 0.6));
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-search {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
    justify-content: center;
}

.search-field {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.search-field label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.search-field input,
.search-field select {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.yacht-count {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
    transition: var(--transition);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Featured Yacht Section */
.featured-yacht {
    padding: 100px 0;
}

.yacht-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.yacht-image {
    position: relative;
}

.featured-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.yacht-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.yacht-info h2 {
    margin-bottom: 1.5rem;
}

.yacht-info p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Trending Yachts */
.trending-yachts {
    padding: 100px 0;
    background: var(--background-light);
}

.header-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn.active,
.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.yacht-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.yacht-card:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: var(--shadow-medium);
}

.yacht-card.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.yacht-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.yacht-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.yacht-details {
    padding: 1.5rem;
}

.yacht-details h3 {
    margin-bottom: 0.5rem;
}

.yacht-location {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.yacht-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.yacht-price {
    text-align: right;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(rgba(44, 82, 130, 0.9), rgba(44, 82, 130, 0.9)), 
                url('./video-background.jpg') center/cover;
    color: var(--white);
    text-align: center;
}


.video-content {
    max-width: 600px;
    margin: 0 auto;
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--white);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Activities Section */
.activities {
    padding: 100px 0;
}

.activities h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.activity-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-content {
    padding: 2rem;
}

.activity-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.activity-link:hover {
    color: var(--accent-color);
}

/* Help Section */
.help-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.help-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.help-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.help-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Fleet Selection */
.fleet-selection {
    padding: 100px 0;
    background: var(--background-light);
}

.fleet-selection h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fleet-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.fleet-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.fleet-item h3 {
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.fleet-item p {
    padding: 0 1rem 1.5rem;
    margin: 0;
}

/* Destinations */
.destinations {
    padding: 100px 0;
}

.destinations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.destinations-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.dest-image-large,
.dest-image-small {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.dest-image-large {
    grid-row: span 2;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
}

.dest-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dest-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.destinations-features {
    list-style: none;
    margin: 2rem 0;
}

.destinations-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.destinations-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--background-light);
}

.blog h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .yacht-content,
    .destinations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destinations-images {
        grid-template-columns: 1fr;
    }

    .dest-image-large {
        grid-row: span 1;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .services-grid,
    .yachts-grid,
    .activities-grid,
    .help-steps,
    .fleet-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Thank You Page Styles */
.thank-you-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #38a169, #48bb78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: var(--white);
    animation: successPulse 2s ease-in-out infinite alternate;
}

@keyframes successPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.7); }
    100% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(56, 161, 105, 0); }
}

.thank-you-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-details {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.confirmation-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: left;
}

.confirmation-card h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

.contact-urgent {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-urgent h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.urgent-contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.urgent-contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    min-width: 200px;
}

.urgent-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.urgent-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.urgent-contact-btn i {
    font-size: 2rem;
}

.urgent-contact-btn span {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.urgent-contact-btn strong {
    font-size: 1.1rem;
}

.urgent-contact-btn small {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* While Waiting Section */
.while-waiting {
    padding: 100px 0;
}

.waiting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.waiting-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.waiting-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.waiting-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 2rem;
}

.waiting-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Testimonials Preview */
.testimonials-preview {
    padding: 100px 0;
    background: var(--background-light);
}

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

.social-follow {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-follow h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    font-weight: 500;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.social-link i {
    font-size: 1.5rem;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2rem;
    }
    
    .confirmation-card {
        padding: 2rem;
    }
    
    .next-steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .urgent-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .urgent-contact-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .thank-you-hero {
        padding: 120px 0 80px;
    }
    
    .waiting-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .social-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}/* Services Page Specific Styles */

/* Services Overview */
.services-overview {
    padding: 100px 0;
}

.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.services-overview .service-card {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.services-overview .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.services-overview .service-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-label {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
}

.price-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.price-header h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.price-features {
    list-style: none;
    padding: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i.fas.fa-check {
    color: var(--primary-color);
}

.price-features i.fas.fa-times {
    color: #e53e3e;
}

.text-muted {
    color: var(--text-light);
    opacity: 0.6;
}

.btn-full {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
}

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.extra-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.extra-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.extra-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.extra-item h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.extra-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Fleet Overview */
.fleet-overview {
    padding: 100px 0;
    background: var(--background-light);
}

.fleet-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.fleet-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fleet-category:nth-child(even) {
    direction: rtl;
}

.fleet-category:nth-child(even) .fleet-info {
    direction: ltr;
}

.fleet-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.fleet-info h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.fleet-specs {
    list-style: none;
    margin-top: 1.5rem;
}

.fleet-specs li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.fleet-specs strong {
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Destinations Page Specific Styles */

/* Destinations Overview */
.destinations-overview {
    padding: 50px 0;
    background: var(--background-light);
}

.destinations-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Destinations Grid */
.destinations-grid-section {
    padding: 100px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.destination-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: var(--white);
}

.destination-badge {
    align-self: flex-start;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.destination-badge.premium {
    background: linear-gradient(135deg, #d69e2e, #f6ad55);
}

.destination-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.destination-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.destination-features {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    opacity: 0.8;
}

.destination-content {
    padding: 2rem;
}

.destination-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.destination-highlights {
    list-style: none;
    margin: 1.5rem 0;
}

.destination-highlights li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.destination-highlights i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.destination-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    margin-top: 1rem;
}

/* Seasonal Recommendations */
.seasonal-recommendations {
    padding: 100px 0;
    background: var(--background-light);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.season-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.season-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 2rem;
}

.season-destinations {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.season-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.season-benefits {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.season-benefits li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1rem;
}

.season-benefits li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Special Experiences */
.special-experiences {
    padding: 100px 0;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.experience-image {
    height: 200px;
    overflow: hidden;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-card:hover .exp-img {
    transform: scale(1.1);
}

.experience-content {
    padding: 1.5rem;
}

.experience-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.experience-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.experience-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Planning Section */
.planning-section {
    padding: 100px 0;
    background: var(--background-light);
}

.planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.planning-features {
    margin-top: 2rem;
}

.planning-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.planning-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.planning-form h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.destination-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Responsive Design for Destinations Page */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .planning-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .experience-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .destinations-filter {
        justify-content: stretch;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 0;
    }
    
    .planning-form {
        padding: 1.5rem;
    }
    
    .season-destinations {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .services-overview .service-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
    
    .fleet-category {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fleet-category:nth-child(even) {
        direction: ltr;
    }
    
    .pricing-grid,
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        flex-direction: column;
        gap: 0;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-overview .services-grid {
        grid-template-columns: 1fr;
    }
    
    .price-header {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
}/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.page-hero .hero-content {
    color: var(--white);
    text-align: center;
}

.page-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Introduction */
.about-intro {
    padding: 100px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.intro-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--background-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.stats-section h2 {
    color: var(--white);
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.member-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: var(--background-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.cert-item:hover .cert-icon {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.cert-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 100px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    margin: 0 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        flex: none;
        width: 50px;
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5282;
    --secondary-color: #d69e2e;
    --accent-color: #4299e1;
    --text-dark: #1a202c;
    --text-light: #718096;
    --background-light: #f7fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    --gradient-overlay: linear-gradient(rgba(44, 82, 130, 0.8), rgba(66, 153, 225, 0.6));
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-search {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
    justify-content: center;
}

.search-field {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.search-field label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.search-field input,
.search-field select {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.yacht-count {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
    transition: var(--transition);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Featured Yacht Section */
.featured-yacht {
    padding: 100px 0;
}

.yacht-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.yacht-image {
    position: relative;
}

.featured-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.yacht-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.yacht-info h2 {
    margin-bottom: 1.5rem;
}

.yacht-info p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Trending Yachts */
.trending-yachts {
    padding: 100px 0;
    background: var(--background-light);
}

.header-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn.active,
.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.yacht-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.yacht-card:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: var(--shadow-medium);
}

.yacht-card.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.yacht-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.yacht-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.yacht-details {
    padding: 1.5rem;
}

.yacht-details h3 {
    margin-bottom: 0.5rem;
}

.yacht-location {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.yacht-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.yacht-price {
    text-align: right;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}



.video-content {
    max-width: 600px;
    margin: 0 auto;
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--white);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Activities Section */
.activities {
    padding: 100px 0;
}

.activities h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.activity-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-content {
    padding: 2rem;
}

.activity-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.activity-link:hover {
    color: var(--accent-color);
}

/* Help Section */
.help-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.help-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.help-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.help-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Fleet Selection */
.fleet-selection {
    padding: 100px 0;
    background: var(--background-light);
}

.fleet-selection h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fleet-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.fleet-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-item h3 {
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.fleet-item p {
    padding: 0 1rem 1.5rem;
    margin: 0;
}

/* Destinations */
.destinations {
    padding: 100px 0;
}

.destinations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.destinations-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.dest-image-large,
.dest-image-small {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.dest-image-large {
    grid-row: span 2;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
}

.dest-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dest-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.destinations-features {
    list-style: none;
    margin: 2rem 0;
}

.destinations-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.destinations-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--background-light);
}

.blog h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .yacht-content,
    .destinations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destinations-images {
        grid-template-columns: 1fr;
    }

    .dest-image-large {
        grid-row: span 1;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .services-grid,
    .yachts-grid,
    .activities-grid,
    .help-steps,
    .fleet-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Blog Page Specific Styles */

/* Blog Articles Section */
.blog-articles {
    padding: 100px 0;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.blog-filters .filter-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.blog-filters .filter-btn.active,
.blog-filters .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Blog Post Styles */
.blog-post {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 4rem;
    overflow: hidden;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.blog-post:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.blog-post.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.post-header {
    position: relative;
}

.post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-meta {
    background: var(--white);
    padding: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.post-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.post-info i {
    color: var(--primary-color);
}

.social-share {
    margin-top: 1rem;
}

.social-share h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.25rem;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #166fe5;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1a91da;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #006ba1;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #22c55e;
}

/* Post Content Styles */
.post-content {
    padding: 3rem;
    line-height: 1.8;
}

.post-content h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.post-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    background: var(--background-light);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-content h3 {
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.post-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.post-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.post-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.post-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.post-content ul li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 0.2rem;
}

.post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.post-conclusion {
    background: linear-gradient(135deg, var(--background-light), #e2e8f0);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    border-left: 5px solid var(--primary-color);
}

.post-conclusion p {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-style: italic;
}

/* Back to Articles Button */
.back-to-articles {
    text-align: center;
    margin: 3rem 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.newsletter-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form-large {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    gap: 0.5rem;
}

.newsletter-form-large input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    outline: none;
}

.newsletter-form-large input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form-large button {
    padding: 15px 25px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Reading Progress Indicator */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(44, 82, 130, 0.2);
    z-index: 1001;
}

.reading-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .post-content {
        padding: 2rem;
    }
    
    .post-content h2 {
        font-size: 2rem;
    }
    
    .post-intro {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.5rem;
    }
    
    .post-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .newsletter-form-large {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form-large input,
    .newsletter-form-large button {
        width: 100%;
    }
    
    .blog-filters {
        padding: 0 1rem;
    }
    
    .blog-filters .filter-btn {
        flex: 1;
        min-width: 0;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .post-image {
        height: 250px;
    }
    
    .post-meta {
        padding: 1.5rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-content h2 {
        font-size: 1.75rem;
    }
    
    .post-intro {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .post-conclusion {
        padding: 1.5rem;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1.1rem;
    }
}

/* Smooth Animations for Blog */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post {
    animation: slideInUp 0.6s ease-out;
}

.blog-post:nth-child(2) {
    animation-delay: 0.1s;
}

.blog-post:nth-child(3) {
    animation-delay: 0.2s;
}

.blog-post:nth-child(4) {
    animation-delay: 0.3s;
}

/* Article Hover Effects */
.post-content ul li {
    transition: all 0.3s ease;
}

.post-content ul li:hover {
    color: var(--primary-color);
    padding-left: 2.2rem;
}

.post-content ul li:hover:before {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Quote Styling */
.post-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--background-light);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    color: var(--text-dark);
    position: relative;
}

.post-content blockquote:before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
}

/* Code Styling */
.post-content code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-color);
    border: 1px solid #e9ecef;
}

.post-content pre {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    overflow-x: auto;
    border: 1px solid #e9ecef;
    margin: 1.5rem 0;
}

.post-content pre code {
    background: none;
    border: none;
    padding: 0;
}

/* Table Styling */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: var(--shadow-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-content th,
.post-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.post-content th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
}

.post-content tbody tr:hover {
    background: var(--background-light);
}

/* Image Styling within Articles */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 2rem 0;
}
/* Contact Page Specific Styles */

/* Contact Methods Section */
.contact-methods {
    padding: 100px 0;
    background: var(--background-light);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.method-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.method-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.method-info {
    margin-top: 1.5rem;
}

.method-link {
    display: inline-block;
    color: var(--primary-color);
    flex-shrink: 0;
}

.emergency-content {
    flex: 1;
}

.emergency-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.emergency-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn .fa-spinner {
    margin-right: 0.5rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card.featured {
        transform: none;
        order: -1;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .emergency-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .form-section h4 {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-buttons {
        flex-direction: column;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Animation for form validation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
    animation: shake 0.5s ease-in-out;
}

/* Success animation */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.alert-success {
    animation: fadeInScale 0.5s ease-out;
}

/* Hover effects for interactive elements */
.method-card:hover .method-icon,
.info-card:hover .info-icon,
.faq-quick-item:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-option:hover i,
.method-link:hover {
    transform: scale(1.1);
}

/* Focus styles for accessibility */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.checkbox-label:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--border-radius);
}

/* Print styles */
@media print {
    .contact-methods,
    .emergency-contact,
    .testimonials-contact {
        display: none;
    }
    
    .contact-form-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

.method-link:hover {
    color: var(--accent-color);
}

.availability {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.75rem;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.alert i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.alert-error {
    background: #fed7d7;
    border: 1px solid #feb2b2;
    color: #c53030;
}

.alert-error i {
    color: #e53e3e;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-success i {
    color: #38a169;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h4 i {
    font-size: 1.1rem;
}

/* Form Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
    border-color: #e53e3e;
    background: #fed7d7;
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message:before {
    content: '⚠';
    font-size: 0.75rem;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--background-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Consent Field */
.consent-field {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
}

.consent-checkbox {
    margin-bottom: 1rem;
}

.consent-checkbox span {
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.consent-checkbox a:hover {
    color: var(--accent-color);
}

/* Form Disclaimer */
.form-disclaimer {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: var(--background-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 2rem;
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.schedule {
    text-align: left;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.schedule-item span:last-child {
    color: var(--text-light);
}

.contact-options {
    margin-top: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-option:hover {
    color: var(--accent-color);
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--accent-color);
}

/* FAQ Quick Section */
.faq-quick {
    padding: 100px 0;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-quick-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-quick-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.faq-quick-item h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.faq-more p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Testimonials Contact */
.testimonials-contact {
    padding: 100px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.rating-text {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.author-info small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Emergency Contact */
.emergency-contact {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.emergency-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}
/* Legal Pages Specific Styles */

/* Legal Hero Section */
.legal-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
    background: var(--gradient-primary);
}

.legal-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.legal-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 82, 130, 0.2);
    z-index: -1;
}

.legal-hero .hero-content {
    color: var(--white);
    text-align: center;
}

.legal-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-hero .hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.legal-meta i {
    font-size: 0.8rem;
}

/* Cookie Info Section */
.cookie-info {
    padding: 60px 0;
    background: var(--background-light);
}

.cookie-banner-demo {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 2rem;
    border-left: 5px solid var(--secondary-color);
}

.cookie-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.cookie-content {
    flex: 1;
}

.cookie-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Legal Content Section */
.legal-content {
    padding: 100px 0;
}



/* Legal Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-nav h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.25rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-nav-list {
    list-style: none;
    padding: 0;
}

.legal-nav-list li {
    margin-bottom: 0.75rem;
}

.legal-nav-list a {
    display: block;
    padding: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.legal-nav-list a:hover {
    background: var(--background-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.legal-nav-list a.active {
    background: var(--background-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Contact Box in Sidebar */
.contact-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.company-info {
    text-align: left;
    margin-top: 1rem;
}

.company-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.company-info i {
    width: 16px;
    color: var(--secondary-color);
}

/* Legal Text Content */
.legal-text {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 3rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.legal-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.legal-section h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-section h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-section p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Special Content Boxes */
.legal-highlight {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.legal-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.legal-info {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Tables in Legal Content */
.legal-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: var(--shadow-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.legal-section th,
.legal-section td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
}

.legal-section tbody tr:hover {
    background: var(--background-light);
}

/* Footer Legal Links Active State */
.footer-links a.active,
.legal-links a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .legal-container {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .legal-nav {
        padding: 1.5rem;
    }
    
    .legal-text {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        height: 40vh;
    }
    
    .legal-hero .hero-title {
        font-size: 2rem;
    }
    
    .legal-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sidebar {
        position: static;
        order: -1;
    }
    
    .legal-nav {
        margin-bottom: 1rem;
    }
    
    .cookie-banner-demo {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .legal-text {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .legal-meta span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .legal-nav {
        padding: 1rem;
    }
    
    .legal-nav h3 {
        font-size: 1.1rem;
    }
    
    .legal-nav-list a {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
    
    .legal-text {
        padding: 1rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section th,
    .legal-section td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Scroll behavior for legal sections */
.legal-section {
    scroll-margin-top: 100px;
}

/* Print styles for legal pages */
@media print {
    .header,
    .footer,
    .legal-sidebar,
    .cookie-info {
        display: none;
    }
    
    .legal-hero {
        height: auto;
        margin-top: 0;
        padding: 2rem 0;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
    }
    
    .legal-text {
        box-shadow: none;
        padding: 0;
    }
    
    .legal-section {
        page-break-inside: avoid;
    }
    
    .legal-section h2 {
        page-break-after: avoid;
    }
}

/* Animation for legal navigation */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.legal-nav {
    animation: slideInFromLeft 0.6s ease-out;
}

.legal-text {
    animation: slideInFromLeft 0.6s ease-out 0.2s both;
}

/* Accessibility improvements */
.legal-nav-list a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.legal-section:target {
    background: rgba(44, 82, 130, 0.05);
    padding: 2rem;
    margin: -1rem -2rem 2rem;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

/* Special styling for different legal documents */
.legal-hero.privacy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.legal-hero.terms {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.legal-hero.cookies {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: var(--text-dark);
}

.legal-hero.cookies .legal-meta span {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.legal-hero.legal-notice {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: var(--text-dark);
}

.legal-hero.legal-notice .legal-meta span {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

/* Interactive elements */
.legal-nav-list a {
    position: relative;
    overflow: hidden;
}

.legal-nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transition: left 0.5s;
}

.legal-nav-list a:hover::before {
    left: 100%;
}

/* Legal content formatting */
.legal-section .definition {
    background: var(--background-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
}

.legal-section .important {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    font-weight: 500;
}

.legal-section .contact-info {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--text-dark);
}