/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
}

.hero-avs {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.avs-navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =====================
   HEADER
===================== */
.site-header {
    background: #ffffff;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 110px;
    width: auto;
}

.main-nav a {
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.main-nav a:hover {
    text-decoration: underline;
}

.tour-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.tour-card {
    max-width: 950px;
    margin: 60px auto;   /* ADD NI */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0056b3;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
}

.tour-content {
    padding: 30px;
}

.tour-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.tour-tagline {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

.tour-block {
    margin-bottom: 25px;
}

.tour-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0056b3;
}

.tour-block ul {
    list-style: none;
}

.tour-block ul li {
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

.itinerary li span {
    font-weight: bold;
    color: #000;
    margin-right: 8px;
}

.tour-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-book,
.btn-enquiry {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-book {
    background: #0056b3;
    color: #fff;
}

.btn-book:hover {
    background: #003f88;
}

.btn-enquiry {
    border: 2px solid #0056b3;
    color: #0056b3;
}

.btn-enquiry:hover {
    background: #0056b3;
    color: #fff;
}

/* Responsive */
@media(max-width:768px) {
    .tour-image {
        height: 220px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-content h2 {
        font-size: 22px;
    }

    .tour-footer {
        flex-direction: column;
    }

    .btn-book,
    .btn-enquiry {
        text-align: center;
    }
}

/* =====================
   FOOTER
===================== */
.site-footer {
    background: #111; /* dark premium */
    color: #cfcfcf;
    font-size: 14px;
}

/* FOOTER CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* FOOTER COLUMN */
.footer-column {
    flex: 1;
}

/* FOOTER HEADING */
.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

/* ACCENT LINE UNDER HEADING */
.footer-column h4::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: #007bff;
    margin-top: 0.75rem;
}

/* FOOTER TEXT */
.footer-column p {
    margin: 0 0 0.75rem;
    line-height: 1.8;
    color: #bdbdbd;
}

/* FOOTER LINKS (kalau ada) */
.footer-column a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    background: #ffffff;
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 12px 10px;
    border-top: 1px solid #e5e5e5;
}

/* =====================
   SOCIAL ICONS
===================== */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.social.facebook { background: #1877f2; }
.social.tiktok { background: #000; }

.social.instagram {
    background: radial-gradient(circle at 30% 110%,
        #fdf497 0%, #fdf497 5%, #fd5949 45%,
        #d6249f 60%, #285aeb 90%);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }
}