﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1867C0;
    --primary-orange: #FFA500;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --light-gray: #f9fafb;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

    .logo > a {
        text-decoration: none;
        color: inherit;
    }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

.cta-button {
    background: var(--primary-orange);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
        background: #FF8C00;
    }

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 2rem;
    background: var(--primary-blue);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .cta-button {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.secondary-button {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1.125rem;
}

    .secondary-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .section-header p {
        font-size: 1.25rem;
        color: var(--gray);
    }

/* Solutions Section */
.solutions {
    padding: 6rem 2rem;
    background: white;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

    .solution-item:last-child {
        margin-bottom: 0;
    }

    .solution-item:nth-child(even) .solution-content {
        order: 2;
    }

    .solution-item:nth-child(even) .solution-visual {
        order: 1;
    }

.solution-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.solution-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
}

    .solution-features li {
        padding: 0.5rem 0;
        padding-left: 2rem;
        position: relative;
        color: var(--dark);
    }

        .solution-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }

.solution-visual {
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
}

    .solution-visual img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }



/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.features-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.feature-image {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid;
}

    .testimonial-card:nth-child(1) {
        border-left-color: var(--primary-blue);
    }

    .testimonial-card:nth-child(2) {
        border-left-color: var(--primary-orange);
    }

    .testimonial-card:nth-child(3) {
        border-left-color: var(--primary-blue);
    }

.stars {
    color: var(--primary-orange);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Integrations Section */
.integrations {
    padding: 6rem 2rem;
    background: var(--primary-orange);
    color: #000000;
}

    .integrations .section-header h2,
    .integrations .section-header p {
        color: #000000;
    }

.integrations-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.integration-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    gap: 0.75rem;
}

    .integration-logo:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.integration-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-payments {
    background: #e0f2fe;
    color: #0369a1;
}

.badge-hotels {
    background: #fef3c7;
    color: #92400e;
}

.badge-accounting {
    background: #ddd6fe;
    color: #5b21b6;
}

.badge-crm {
    background: #fce7f3;
    color: #9f1239;
}

.badge-itineraries {
    background: #d1fae5;
    color: #065f46;
}

/* Add-ons Section */
.addons {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.addons-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.addon-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-top: 4px solid;
}

    .addon-card:nth-child(1) {
        border-top-color: var(--primary-blue);
    }

    .addon-card:nth-child(2) {
        border-top-color: var(--primary-orange);
    }

    .addon-card:nth-child(3) {
        border-top-color: #9333ea;
    }

    .addon-card:nth-child(4) {
        border-top-color: #10b981;
    }

    .addon-card:nth-child(5) {
        border-top-color: #e26d5c;
    }

    .addon-card:nth-child(6) {
        border-top-color: #a3c9a8;
    }


    .addon-card:nth-child(7) {
        border-top-color: #c19ee0;
    }

    .addon-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.addon-card-image {
    background: var(--light-gray);
    border-radius: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.addon-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.addon-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.addon-card ul {
    list-style: none;
    margin-top: 1rem;
}

    .addon-card ul li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--gray);
    }

        .addon-card ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: white;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: var(--primary-blue);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-section a:hover {
        color: white;
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .solution-item {
        grid-template-columns: 1fr;
    }

    .solution-item:nth-child(even) .solution-content,
        .solution-item:nth-child(even) .solution-visual {
            order: initial;
        }

    .solution-visual {
        max-width: 300px;
        margin: 0 auto;
        height: auto;
    }

        .solution-visual img {
            max-width: 100%;
            width: 100%;
            height: auto;
        }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .nav-links {
        display: none;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .solutions,
    .features,
    .testimonials,
    .addons,
    .stats {
        padding: 4rem 1rem;
    }

    .cta-section {
        padding: 6rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .footer-content {
        padding: 0 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}
