@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --navy: #0B1C2C;
    --gold: #C8A96A;
    --cream: #F5F2EB;
    --white: #FFFFFF;
    --light-gray: #E8E6E1;
    --text-dark: #1A1A1A;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(11, 28, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
}

.logo span {
    color: var(--gold);
}

.desktop-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.desktop-nav a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 24px;
}

.mobile-nav a {
    color: var(--white);
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 28, 44, 0.4), rgba(11, 28, 44, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}

.hero h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
}

.search-bar {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-bar input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.search-bar button {
    padding: 18px 30px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #B89856;
}

.search-bar i {
    color: var(--white);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #B89856;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 169, 106, 0.4);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: #152D42;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    color: var(--white);
    font-size: 32px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.places-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.place-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.place-card.hidden {
    display: none;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.place-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.1);
}

.place-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 44, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.place-card:hover .place-overlay {
    opacity: 1;
}

.overlay-btn {
    padding: 12px 30px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background: var(--white);
    color: var(--navy);
}

.place-info {
    padding: 24px;
}

.place-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--cream);
    color: var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.place-info h3 {
    font-size: 24px;
    color: var(--navy);
}

.experiences-section {
    padding: 80px 0;
    background: var(--cream);
}

.experiences-slider-container {
    position: relative;
    margin-top: 40px;
}

.experiences-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 0;
}

.experiences-slider::-webkit-scrollbar {
    display: none;
}

.experience-card {
    min-width: 380px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.experience-image {
    height: 240px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-content {
    padding: 30px;
}

.experience-content h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 12px;
}

.experience-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold);
}

.slider-btn:hover i {
    color: var(--white);
}

.slider-btn i {
    font-size: 20px;
    color: var(--navy);
    transition: color 0.3s ease;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.routes-section {
    padding: 80px 0;
    background: var(--white);
}

.routes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.route-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.route-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, #152D42 100%);
    color: var(--white);
}

.route-card.featured .route-icon {
    background: var(--gold);
}

.route-card.featured h3,
.route-card.featured h4 {
    color: var(--white);
}

.route-card.featured p,
.route-card.featured .timeline-time {
    color: var(--cream);
}

.route-card.featured .timeline-dot {
    background: var(--gold);
    border-color: var(--gold);
}

.route-card.featured .timeline-item::before {
    background: var(--gold);
}

.route-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.route-header {
    text-align: center;
    margin-bottom: 40px;
}

.route-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
}

.route-icon i {
    font-size: 36px;
    color: var(--navy);
}

.route-header h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 12px;
}

.route-header p {
    color: var(--text-light);
    font-size: 16px;
}

.route-timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background: var(--light-gray);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 3px solid var(--navy);
    border-radius: 50%;
}

.timeline-time {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--white);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 15px;
}

.parallax-section {
    height: 400px;
    background-image: url('https://images.pexels.com/photos/1791581/pexels-photo-1791581.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 44, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-content h2 {
    font-size: 56px;
    color: var(--white);
    font-weight: 700;
}

.faq-section {
    padding: 80px 0;
    background: var(--cream);
}

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

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question h3 {
    font-size: 20px;
    color: var(--navy);
    font-weight: 600;
}

.faq-question i {
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #152D42 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-brand {
    margin-bottom: 40px;
}

.contact-brand h3 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 8px;
}

.brand-subtitle {
    color: var(--gold);
    font-size: 18px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--gold);
}

.contact-details h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: var(--gold);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col p {
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--cream);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(200, 169, 106, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-links i {
    color: var(--gold);
    transition: color 0.3s ease;
}

.social-links a:hover i {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 169, 106, 0.2);
    color: var(--cream);
}

.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: none;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--navy);
    transition: color 0.3s ease;
}

.mobile-bar-item i {
    font-size: 24px;
}

.mobile-bar-item span {
    font-size: 12px;
    font-weight: 500;
}

.mobile-bar-item:hover {
    color: var(--gold);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 44, 0.9);
}

.modal-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

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

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-width: 300px;
    }

    .slider-btn {
        display: none;
    }

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

    .parallax-content h2 {
        font-size: 32px;
        padding: 0 20px;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

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

    .contact-map {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .modal-content {
        padding: 30px;
    }

    .modal-content h2 {
        font-size: 28px;
    }
}