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

:root {
    --primary-dark: #0A2463;
    --primary-light: #3BCEAC;
    --text-dark: #001D39;
    --light-blue: #BDD8E9;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(189, 216, 233, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-dark);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-light);
}

.btn-primary {
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(189, 216, 233, 0.3);
}

.mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 60%, var(--primary-light) 100%);
    overflow: hidden;
}

.wave-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.wave-pattern svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    padding: 5rem 1rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-blue);
    margin-bottom: 2rem;
}

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

.btn-ios, .btn-android {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-ios:hover {
    background: var(--light-blue);
}

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

.btn-android:hover {
    background: #2eb598;
}

.btn-ios i, .btn-android i {
    width: 20px;
    height: 20px;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Indicators */
.trust-section {
    background: white;
    border-bottom: 1px solid rgba(189, 216, 233, 0.3);
}

.trust-section .container {
    padding: 2rem 1rem;
}

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

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-light);
    margin: 0 auto 0.5rem;
}

.trust-text {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Sections */
.section {
    padding: 5rem 1rem;
}

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

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

.section-title-left {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 29, 57, 0.7);
}

/* How It Works */
.how-it-works {
    background: linear-gradient(to bottom, white, rgba(189, 216, 233, 0.1));
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon-circle i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    color: rgba(0, 29, 57, 0.7);
}

/* For Customers Section */
.customers-section {
    background: white;
}

.two-col-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checklist-item i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.checklist-item p {
    color: var(--text-dark);
}

/* Customer Mockup */
.mockup-container {
    position: relative;
}

.mockup-outer {
    position: relative;
    background: linear-gradient(135deg, var(--light-blue), rgba(59, 206, 172, 0.3));
    border-radius: 1rem;
    padding: 2rem;
}

.mockup-inner {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mockup-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.mockup-route {
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.mockup-date {
    font-size: 0.875rem;
    color: rgba(0, 29, 57, 0.7);
    margin: 0;
}

.mockup-offers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.offer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(189, 216, 233, 0.2);
    border-radius: 0.5rem;
}

.offer-card.featured-offer {
    background: linear-gradient(to right, rgba(59, 206, 172, 0.2), rgba(10, 36, 99, 0.1));
    border: 2px solid var(--primary-light);
}

.offer-captain {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-light);
}

.offer-captain span {
    color: var(--text-dark);
}

.offer-price {
    font-weight: 700;
    color: var(--primary-dark);
}

.mockup-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* For Captains Section */
.captains-section {
    background: linear-gradient(to bottom, rgba(189, 216, 233, 0.1), white);
}

.two-col-grid.reverse {
    display: grid;
}

.captain-mockup-outer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 1rem;
    padding: 2rem;
}

.captain-mockup-inner {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    font-size: 0.875rem;
    color: rgba(0, 29, 57, 0.7);
    margin-bottom: 1rem;
}

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

.stat-card {
    background: rgba(189, 216, 233, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
}

.stat-card i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(0, 29, 57, 0.7);
    margin: 0;
}

.dashboard-requests {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.request-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: linear-gradient(to right, rgba(59, 206, 172, 0.2), transparent);
    border-radius: 0.5rem;
}

.request-item span {
    color: var(--text-dark);
}

.request-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-light);
}

.btn-join {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-top: 2rem;
    transition: opacity 0.3s;
}

.btn-join:hover {
    opacity: 0.9;
}

/* Coverage Section */
.coverage-section {
    background: white;
}

.coverage-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.coverage-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.coverage-image img {
    width: 100%;
    height: auto;
    display: block;
}

.coverage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 36, 99, 0.5), transparent);
    border-radius: 1rem;
}

.atolls-box {
    background: linear-gradient(135deg, rgba(189, 216, 233, 0.2), white);
    border: 1px solid var(--light-blue);
    border-radius: 1rem;
    padding: 2rem;
}

.atolls-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.atolls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.atoll-badge {
    background: white;
    border: 2px solid rgba(59, 206, 172, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-dark);
    transition: border-color 0.3s;
}

.atoll-badge:hover {
    border-color: var(--primary-light);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, rgba(189, 216, 233, 0.1), white);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.customer-card {
    background: white;
    border: 2px solid var(--light-blue);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

.customer-card:hover {
    border-color: var(--primary-light);
}

.captain-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.pricing-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-icon-wrapper.white {
    background: white;
}

.pricing-icon-wrapper i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.pricing-icon-wrapper.white i {
    color: var(--primary-dark);
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.white-text {
    color: white !important;
}

.pricing-amount {
    margin-bottom: 1rem;
}

.amount-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.white-text.amount-large {
    color: white;
}

.currency-text {
    font-size: 1.25rem;
    margin-left: 0.5rem;
    color: white;
}

.pricing-description {
    color: rgba(0, 29, 57, 0.7);
    margin-bottom: 2rem;
}

.white-text-opacity {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-feature i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.pricing-feature.white i {
    color: white;
}

.pricing-feature p {
    text-align: left;
    color: var(--text-dark);
}

.pricing-feature.white p {
    color: white;
}

.pricing-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn.light {
    background: var(--light-blue);
    color: var(--primary-dark);
}

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

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

.pricing-btn.white:hover {
    background: var(--light-blue);
}

/* App Screenshots */
.app-screenshots-section {
    background: white;
}

.screenshots-container {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light), var(--primary-dark));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.screenshots-grid {
    display: grid;
    gap: 2rem;
}

.phone-mockup {
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    aspect-ratio: 9 / 19;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.phone-screen i {
    width: 4rem;
    height: 4rem;
    color: var(--primary-light);
}

.phone-screen p {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(to bottom, rgba(189, 216, 233, 0.1), white);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-light);
    fill: var(--primary-light);
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.author-location {
    font-size: 0.875rem;
    color: rgba(0, 29, 57, 0.7);
    margin: 0;
}

/* Download Section */
.download-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 60%, var(--primary-light) 100%);
    padding: 5rem 1rem;
    overflow: hidden;
}

.download-content {
    position: relative;
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--light-blue);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.download-btn.ios:hover {
    background: var(--light-blue);
}

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

.download-btn.android:hover {
    background: #2eb598;
}

.download-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.btn-text {
    text-align: left;
}

.btn-small {
    font-size: 0.75rem;
    margin: 0;
}

.btn-large {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.qr-code {
    display: inline-block;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.qr-box {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.qr-box i {
    width: 4rem;
    height: 4rem;
    color: white;
}

.qr-text {
    font-size: 0.875rem;
    color: var(--primary-dark);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    width: 2rem;
    height: 2rem;
    color: var(--primary-light);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-link:hover {
    color: var(--primary-light);
}

.footer-email {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--primary-light);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */

.phone-screen-image {
    aspect-ratio: 9 / 19;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
}

.phone-screen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (min-width: 640px) {
    .hero-buttons,
    .download-buttons {
        flex-direction: row;
    }

    .trust-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

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

    .mobile-menu {
        display: none !important;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-text {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .two-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .download-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        padding: 8rem 2rem;
    }
}
