* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0B1C2C;
    --gold: #C8A96A;
    --light-cream: #F8F6F3;
    --white: #FFFFFF;
    --gray: #666666;
    --light-gray: #E5E5E5;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 28, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo i {
    color: var(--gold);
    font-size: 28px;
}

.desktop-nav {
    display: flex;
    gap: 35px;
}

.desktop-nav a {
    color: var(--white);
    text-decoration: none;
    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;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: var(--navy);
    padding: 30px;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 28, 44, 0.5), 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;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(200, 169, 106, 0.3);
}

.btn-primary:hover {
    background: #B39858;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 169, 106, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: #162938;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.hero-form-card {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    z-index: 3;
    min-width: 350px;
}

.hero-form-card h3 {
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.hero-form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-card input {
    padding: 12px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.hero-form-card input:focus {
    outline: none;
    border-color: var(--gold);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.fade-in {
    animation: fadeInUp 1s ease;
}

.fade-in-delay {
    animation: fadeInUp 1s ease 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s backwards;
}

.fade-in-delay-3 {
    animation: fadeInUp 1s ease 0.9s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.about-section {
    background: var(--light-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--navy);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.places-section {
    background: var(--white);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.place-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.place-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.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: linear-gradient(to bottom, rgba(11, 28, 44, 0.7), rgba(11, 28, 44, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.place-card:hover .place-overlay {
    opacity: 1;
}

.place-overlay p {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}

.place-content {
    padding: 20px;
}

.place-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--navy);
}

.place-content p {
    font-size: 14px;
    color: var(--gray);
}

.experiences-section {
    background: var(--light-cream);
}

.experiences-slider {
    position: relative;
    overflow: hidden;
}

.experience-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-slide.active {
    display: grid;
}

.experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--navy);
}

.experience-content p {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.experience-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.experience-controls button {
    background: var(--gold);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-controls button:hover {
    background: var(--navy);
    transform: scale(1.1);
}

.guide-section {
    background: var(--white);
}

.guide-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.guide-tab {
    padding: 15px 40px;
    background: var(--light-gray);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-tab.active {
    background: var(--gold);
    color: var(--white);
}

.guide-tab:hover {
    background: var(--navy);
    color: var(--white);
}

.guide-content {
    display: none;
}

.guide-content.active {
    display: block;
}

.day-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.day-btn {
    padding: 12px 30px;
    background: var(--light-cream);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.day-content {
    display: none;
}

.day-content.active {
    display: block;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% + 0px);
    background: var(--light-gray);
}

.timeline-marker {
    min-width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    background: var(--light-cream);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.parallax-section {
    height: 400px;
    background-image: url('https://images.pexels.com/photos/5624982/pexels-photo-5624982.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 44, 0.75);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-content h2 {
    font-size: 56px;
    color: var(--white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.faq-section {
    background: var(--light-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-cream);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.faq-question i {
    color: var(--gold);
    font-size: 20px;
    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: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--gray);
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #162938 100%);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-card {
    background: var(--light-cream);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--navy);
}

.info-card p, .info-card a {
    color: var(--gray);
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}

.info-card a:hover {
    color: var(--gold);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--light-cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section ul li i {
    margin-right: 8px;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-action:first-child {
    background: var(--gold);
    color: var(--white);
}

.mobile-action:last-child {
    background: #25D366;
    color: var(--white);
}

.mobile-action i {
    font-size: 24px;
    margin-bottom: 5px;
}

.mobile-action span {
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .places-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-form-card {
        min-width: auto;
        width: calc(100% - 40px);
        max-width: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .places-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .experience-slide {
        grid-template-columns: 1fr;
    }

    .experience-image {
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-bar {
        display: grid;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .parallax-content h2 {
        font-size: 36px;
        padding: 0 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .guide-tabs {
        flex-wrap: wrap;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
    }
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}
