/* ===== Base Styles ===== */
:root {
    --primary: #3498db;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --white: #ffffff;
    --text: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
}
.fa-solid, .fas {
    font-weight: 400;
}

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #3498db;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 12px 0;
}
.contactd a {
    color: white !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-decoration: none;
}
.contactd{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    column-gap: 10px;
}
.social-icons {
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
.social-icons a {
    color: white !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-decoration: none;
}

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

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

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

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Header/Hero ===== */
.header {
    height: 100vh;
    min-height: 600px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../image/banner.jpg") no-repeat center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    padding-top: -80px;
}
.points {
    list-style: none;
    margin-top: 0;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

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

/* ===== Overview ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
section#overview {
    padding: 30px 0px 50px 0px;
}

/* .description-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
} */

.highlights ul {
    list-style: none;
}

.highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.highlights i {
    color: var(--primary);
    margin-right: 10px;
}

/* ===== Itinerary ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-day {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    background: var(--primary);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 50px);
}

.download-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* ===== Map ===== */
.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.map-info ul {
    list-style: none;
}

.map-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.map-info i {
    margin-right: 10px;
}

.map-embed {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Booking Form ===== */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-info {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 1px 2px 4px 1px #3498db;
}

.price {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
i.fa.fa-check {
    color: green;
}
i.fa.fa-times {
    color: red;
}

.booking-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 1px 2px 4px 1px #3498db;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Inquiry Form ===== */
.inquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
}

/* ===== About ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .header h1 {
        font-size: 3rem;
    }
    .timeline::before {
        left: 30px;
    }
    .timeline-content {
        width: calc(100% - 90px);
        left: 70px !important;
    }
    .booking-container,
    .inquiry-container,
    .map-container,
    .about-content {
        grid-template-columns: 1fr;
    }
    .mp {
        width: 100% !important;
    }
    .wp {
        width: 100% !important;
    }
    .row.dp {
        display: block !important;
    }
    .tm {
        left: 5%;
    }
    .timeline-day {
        top: -80px;
    }
    .timeline-item {
        margin-bottom: 100px;
    }
    .section-title {
        margin-bottom: 90px;
    }
}

.mp {
    width: 70%;
}
.wp {
    width: 30%;
}
