/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.top-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #2c5f8d;
    font-weight: 700;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-center a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-center a:hover {
    color: #2c5f8d;
}

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

/* Buttons */
.btn-primary {
    background: #2c5f8d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #1e4262;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.8), rgba(30, 66, 98, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23e8f4f8" width="1200" height="800"/><path d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23a8d5e2"/><path d="M0,500 Q300,400 600,500 T1200,500 L1200,800 L0,800 Z" fill="%2378c0d4"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-home {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.7), rgba(30, 66, 98, 0.7)),
                url('images/simon-spring-BJ-FvNGCfEY-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.hero-about {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.7), rgba(30, 66, 98, 0.7)),
                url('images/simon-spring-qqvlV5WOnls-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.hero-attractions {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.7), rgba(30, 66, 98, 0.7)),
                url('images/gherardo-sava-Cbaq5YOFrHE-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.hero-contact {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.7), rgba(30, 66, 98, 0.7)),
                url('images/m2photo-aruba-3YyusXhJCZE-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.hero-transportation {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.7), rgba(30, 66, 98, 0.7)),
                url('images/royce-fonseca-bU7vLOtG-W0-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Cards Section */
.cards-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-image-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-image-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-image-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-image-beach {
    background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
}

.card-image-rainforest {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.card-image-volcano {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.card-image-museum {
    background: linear-gradient(135deg, #c471ed 0%, #f64f59 100%);
}

.card-image-helicopter {
    background: linear-gradient(135deg, #8360c3 0%, #2ebf91 100%);
}

.card-image-tours {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-image-nightlife {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-image-galleries {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.card-image-recreation {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.card-image-airport {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-image-cruise {
    background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
}

.card-image-bus {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-image-private-bus {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-image-taxi {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.card-image-rental {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.card-image-bike {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.card-image-walking {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.card-content {
    padding: 2rem;
}

.card-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.card-content p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5f8d;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #2c5f8d;
    border-radius: 5px;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #777;
    font-weight: 600;
}

/* Information Section */
.info-section {
    padding: 5rem 2rem;
    background: white;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

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

.info-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: "•";
    color: #2c5f8d;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.info-list li strong {
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f8d;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

/* Booking Section */
.booking-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-form-wrapper h2 {
    font-size: 2.5rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.booking-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-section-title {
    font-size: 1.5rem;
    color: #2c5f8d;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.booking-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.booking-info h2 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 2rem;
}

.booking-info .info-item {
    margin-bottom: 2rem;
}

.booking-info .info-item:last-child {
    margin-bottom: 0;
}

.booking-info .info-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.booking-info .info-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.booking-info .info-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.booking-info .info-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.booking-info .info-list li::before {
    content: "✓";
    color: #2c5f8d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: #2c5f8d;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-center {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .hero-text {
        font-size: 1.1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .testimonial-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-center {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        height: 70vh;
    }

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

    .hero-text {
        font-size: 1rem;
    }
}

