/* Pardo Portals - Ultra Professional Luxury Yacht Charter */

:root {
    --navy-blue: #0f172a;
    --ocean-blue: #1e40af;
    --light-blue: #dbeafe;
    --gold: #d4af37;
    --platinum: #e5e7eb;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-dark: #1e293b;
    --success-green: #10b981;
    --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Typography - Professional Level */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* Header - Ultra Professional */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo svg {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy-blue);
    transition: all 0.3s ease;
}

/* Hero Section - Clean Professional */
#hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: url('../images/pardo38-hero-main.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

/* Clean Overlay Background */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.4) 0%,
        rgba(30, 64, 175, 0.3) 100%
    );
    z-index: 1;
}

/* Subtle Light Effects */
.hero-light-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.light-beam {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(212, 175, 55, 0.2) 40%,
        rgba(212, 175, 55, 0.3) 60%,
        transparent 100%
    );
    animation: lightBeam 15s linear infinite;
}

.light-beam:nth-child(1) {
    left: 25%;
    animation-delay: 0s;
}

.light-beam:nth-child(2) {
    left: 75%;
    animation-delay: 7.5s;
}

@keyframes lightBeam {
    0% { 
        transform: translateX(-100px) scaleY(0);
        opacity: 0;
    }
    30% { 
        transform: translateX(0) scaleY(1);
        opacity: 1;
    }
    70% { 
        transform: translateX(0) scaleY(1);
        opacity: 1;
    }
    100% { 
        transform: translateX(100px) scaleY(0);
        opacity: 0;
    }
}

/* Hero Content - Professional Excellence */
.hero-content {
    max-width: 1200px;
    padding: 0 2rem;
    animation: heroEntrance 1.8s ease-out;
    z-index: 3;
    position: relative;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.01);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8fafc 20%,
        #d4af37 40%,
        #ffffff 60%,
        #f8fafc 80%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: premiumShimmer 6s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes premiumShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes underlineGlow {
    0%, 100% { 
        width: 100px;
        opacity: 0.6;
    }
    50% { 
        width: 150px;
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.025em;
    animation: subtitleReveal 2s ease-out 0.5s both;
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    letter-spacing: 0.025em;
    animation: taglineReveal 2s ease-out 1s both;
}

@keyframes taglineReveal {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Professional Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: statsReveal 2s ease-out 1.5s both;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    min-width: 120px;
}

.hero-stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-luxury);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@keyframes statsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Button Section */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsReveal 2s ease-out 2s both;
}

@keyframes buttonsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons .cta-button {
    font-size: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.hero-buttons .cta-button:hover::before {
    left: 100%;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    backdrop-filter: blur(20px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.play-button:hover::before {
    width: 100%;
    height: 100%;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.6);
}

/* Professional Badge Elements */
.awards-badge {
    position: absolute;
    top: 20%;
    left: 5%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
    text-align: center;
    animation: badgeFloat 6s ease-in-out infinite;
    box-shadow: var(--shadow-luxury);
}

@keyframes badgeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-15px) rotate(1deg);
    }
}

.awards-badge-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.awards-badge-text {
    font-size: 1rem;
    font-weight: 700;
}

.floating-badge {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-blue);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 4;
    animation: badgeFloat 6s ease-in-out infinite 2s;
    box-shadow: var(--shadow-luxury);
}

/* Video Showcase Section - Clean Professional */
.video-showcase {
    background: url('../images/pardo38-video-bg.jpg') center/cover no-repeat;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    width: 100vw;
    background-attachment: fixed;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.6) 0%,
        rgba(30, 64, 175, 0.4) 100%
    );
    z-index: 1;
}

.video-showcase-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-showcase h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.video-showcase h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.video-showcase p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Ultra Professional Video Container */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

.promotional-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.video-play-overlay:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    backdrop-filter: blur(4px);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    border: 4px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.1);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.video-play-btn:hover::before {
    width: 100%;
    height: 100%;
}

.video-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 
        0 16px 48px rgba(212, 175, 55, 0.6),
        0 0 0 12px rgba(255, 255, 255, 0.2);
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    color: white;
    margin-left: 4px;
    z-index: 1;
    position: relative;
}

/* Professional Video Info */
.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 4;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(30, 64, 175, 0.9) 100%
    );
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.video-container:hover .video-info {
    transform: translateY(0);
    opacity: 1;
}

.video-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

/* Professional Video Stats */
.video-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.video-stat {
    text-align: center;
    color: white;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
}

.video-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.video-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
    background: var(--light-gray);
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

/* Sections */
section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Experience Cards */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.experience-image {
    height: 200px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--navy-blue) 100%);
    position: relative;
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-content .price {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0;
}

.experience-content .price small {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
}

.experience-features {
    list-style: none;
    margin: 1.5rem 0;
}

.experience-features li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 20px;
    color: #555;
    font-size: 0.9rem;
}

.experience-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Routes Section */
.routes-showcase {
    background: var(--light-gray);
    padding: 5rem 0;
}

.route-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.route-tab {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--navy-blue);
    font-size: 0.9rem;
}

.route-tab.active {
    background: var(--navy-blue);
    color: white;
    border-color: var(--navy-blue);
}

.route-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.route-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.route-details {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.route-info h3 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.route-timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.timeline-time {
    font-weight: 600;
    color: var(--gold);
    min-width: 80px;
    font-size: 0.9rem;
}

.timeline-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-luxury);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-card .price small {
    font-size: 0.9rem;
    color: #777;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Boat Specs Section */
.boat-showcase {
    background: var(--light-gray);
    padding: 5rem 0;
}

.boat-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.specs-content h3 {
    color: var(--navy-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-item h4 {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-item p {
    color: var(--navy-blue);
    font-size: 1rem;
    font-weight: 600;
}

/* Gallery */
.gallery-section {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 250px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--navy-blue) 100%);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
    padding: 5rem 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--navy-blue) 100%);
}

.author-info h5 {
    color: var(--navy-blue);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-info p {
    color: #777;
    font-size: 0.8rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-info {
    padding: 2.5rem;
}

.contact-info h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-item svg {
    margin-right: 1rem;
    color: var(--ocean-blue);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer {
    background: var(--navy-blue);
    color: white;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.boat-loader {
    width: 60px;
    height: 60px;
    position: relative;
    animation: sail 2s ease-in-out infinite;
}

@keyframes sail {
    0%, 100% { transform: translateX(-10px) rotate(-2deg); }
    50% { transform: translateX(10px) rotate(2deg); }
}

/* Smooth Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--gold), #b8860b);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease;
    font-size: 0.9rem;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.limited-badge {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 600;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .cta-button,
    .secondary-button {
        width: 100%;
        max-width: 280px;
    }
    
    .awards-badge {
        left: 2%;
        padding: 1rem 1.5rem;
    }
    
    .floating-badge {
        right: 2%;
        bottom: 5%;
        padding: 1rem 1.5rem;
    }
    
    .video-showcase h2 {
        font-size: 2.5rem;
    }
    
    .boat-specs-grid,
    .contact-container,
    .route-details {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .video-stats {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stat {
        padding: 1rem;
        min-width: 100px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .video-play-btn {
        width: 80px;
        height: 80px;
    }
    
    .awards-badge {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .video-showcase h2 {
        font-size: 2rem;
    }
    
    .promotional-video {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .trust-container {
        flex-direction: column;
        gap: 1rem;
    }
}