body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0B1F3A;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px; /* reduced side space */
    background: #0B1F3A;
}

/* LOGO */
.logo-container {
    width: 240px;  /* force area */
    overflow: hidden;
}

.logo-container img {
    height: 140px;
    transform: scale(1.2); /* zoom inside */
    transform-origin: left center;
}
/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: #0B1F3A;
    position: relative;
}

/* CENTER NAV */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* NAV LINKS STYLE */
/* NAV LINKS */
.nav-links a {

    color: white;

    text-decoration: none;

    margin: 0 10px;

    padding: 10px 18px;

    border-radius: 30px;

    transition: 0.3s ease;

    font-size: 15px;

    position: relative;
}

/* HOVER EFFECT */
.nav-links a:hover {

    background: rgba(212, 175, 55, 0.12);

    color: #D4AF37;

    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}
/* BOOK BUTTON */
.book-btn {
    background: #D4AF37;
    color: #0B1F3A;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Hover effect */
.book-btn:hover {
    background: #c49b2f;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #0B1F3A;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}
.hero-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
}

/* SLIDER */
.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 58, 0.7);
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 48px;
    color: #D4AF37;
}

.hero-content p {
    font-size: 28px;
    color: #faf7f5;
}
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .slide {
        object-fit: cover;
    }
}

/* WHY US SECTION */
.why-us {
    background: #081726;
    padding: 80px 20px;
    text-align: center;
}

/* TITLE */
.section-title h2 {
    color: #D4AF37;
    font-size: clamp(30px, 5vw, 42px);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.section-title p {
    color: #ccc;
    margin-bottom: 50px;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
}

/* CARD CONTAINER */
.why-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.why-card {
    background: linear-gradient(145deg, #10243f, #0B1F3A);
    width: 100%;
    max-width: 260px;
    padding: 30px 20px;
    border-radius: 18px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* HOVER */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* ICON */
.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* TEXT */
.why-card h3 {
    color: #D4AF37;
    margin-bottom: 12px;
    font-size: 20px;
}

.why-card p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {

    .why-us {
        padding: 60px 15px;
    }

    .why-container {
        gap: 20px;
    }

    .why-card {
        max-width: 100%;
        width: 100%;
    }

    .icon {
        font-size: 34px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 13px;
    }
}

/* TRAVEL SERVICES */
.travel-services {
    background: #081726;
    padding: 80px 20px;
}

/* TITLE */
.travel-title {
    text-align: center;
    margin-bottom: 50px;
}

.travel-title h2 {
    color: #D4AF37;
    font-size: clamp(30px, 5vw, 42px);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.travel-title p {
    color: #ccc;
    font-size: 16px;
}

/* GRID */
.travel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* CARD */
.travel-card {
    background: linear-gradient(145deg, #10243f, #0B1F3A);

    display: flex;
    gap: 18px;

    padding: 28px;
    border-radius: 18px;

    transition: 0.3s ease;

    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* HOVER */
.travel-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

/* ICON */
.travel-icon {
    font-size: 36px;
    color: #D4AF37;
}

/* TEXT */
.travel-text h3 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 22px;
}

.travel-text p {
    color: #ddd;
    line-height: 1.7;
    font-size: 14px;
}


/* CONTACT */
.contact {
    background: #6E0F1F;
    padding: 40px;
    text-align: center;
}





/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        padding: 10px 15px;
    }

    .logo-container img {
        height: 70px;
    }

    /* NAV LINKS */
    .nav-links {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .nav-links a {
        display: inline-block;
        margin: 10px;
        font-size: 14px;
    }

    /* BOOK BUTTON */
    .book-btn {
        margin-top: 10px;
    }

    /* HERO TEXT */
    .hero-content h1 {
        font-size: 28px;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 28px  
        
        ;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* ABOUT SECTION */
.about-section {
    background: #081726;
    padding: 90px 20px;
}

/* CONTAINER */
.about-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;

    flex-wrap: wrap;
}

/* IMAGE */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;

    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

/* CONTENT */
.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    color: #D4AF37;
    font-size: clamp(30px, 5vw, 42px);
    font-family: 'Playfair Display', serif;

    margin-bottom: 20px;
}

.about-content p {
    color: #ddd;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

/* BUTTON */
.about-btn {
    display: inline-block;

    padding: 14px 30px;

    background: linear-gradient(45deg, #D4AF37, #FFD700);

    color: #0B1F3A;
    text-decoration: none;

    font-weight: 600;

    border-radius: 40px;

    transition: 0.3s ease;
}

/* HOVER */
.about-btn:hover {
    transform: scale(1.05);

    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {

    .about-section {
        padding: 60px 15px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-btn {
        padding: 12px 24px;
    }
}

/* GALLERY SECTION */
.gallery-section {
    background: #0B1F3A;
    padding: 90px 20px;
}

/* TITLE */
.gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title h2 {
    color: #D4AF37;
    font-size: clamp(30px, 5vw, 42px);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.gallery-title p {
    color: #ccc;
    font-size: 16px;
}

/* GRID */
.gallery-container {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

/* IMAGE CARD */
.gallery-item {
    overflow: hidden;
    border-radius: 18px;

    position: relative;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: 0.4s ease;

    border-radius: 18px;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.08);
}
@media (max-width: 768px) {

    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-item img {
        height: 240px;
    }

    .gallery-title p {
        font-size: 14px;
    }
}


/* TARIFF TABLE SECTION */
.tariff-table-section {
    background: #081726;
    padding: 90px 20px;
}

/* TITLE */
.table-title {
    text-align: center;
    margin-bottom: 40px;
}

.table-title h2 {
    color: #D4AF37;
    font-size: clamp(30px, 5vw, 42px);
    font-family: 'Playfair Display', serif;

    margin-bottom: 15px;
}

.table-title p {
    color: #ccc;
    font-size: 16px;
}

/* WRAPPER */
.table-wrapper {
    overflow-x: auto;
}

/* TABLE */
.tariff-table {
    width: 100%;
    border-collapse: collapse;

    min-width: 900px;

    background: #0B1F3A;

    border-radius: 20px;
    overflow: hidden;
}

/* HEADER */
.tariff-table thead {
    background: #10243f;
}

.tariff-table th {
    color: #D4AF37;

    padding: 22px;

    text-align: center;

    font-size: 16px;
}

/* BODY */
.tariff-table td {
    padding: 22px;

    text-align: center;

    color: #ddd;

    border-top: 1px solid rgba(255,255,255,0.08);

    font-size: 15px;
}

/* PRICE COLOR */
.tariff-table td:nth-child(n+3) {
    color: #FFD700;
    font-weight: 600;
}

/* ROW HOVER */
.tariff-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* TARIFF ABOUT */
.tariff-about {

    background: #081726;

    padding: 100px 20px;
}

/* CONTAINER */
.tariff-about-container {

    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 60px;

    flex-wrap: wrap;
}

/* IMAGE */
.tariff-about-image {
    flex: 1;
    min-width: 300px;
}

.tariff-about-image img {

    width: 100%;

    border-radius: 20px;

    object-fit: cover;
}

/* CONTENT */
.tariff-about-content {
    flex: 1;
    min-width: 300px;
}

/* TITLE */
.tariff-about-content h2 {

    color: #D4AF37;

    font-size: clamp(32px, 5vw, 48px);

    font-family: 'Playfair Display', serif;

    margin-bottom: 25px;

    line-height: 1.3;
}

/* PARAGRAPH */
.tariff-about-content p {

    color: #ddd;

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 15px;
}

/* POINTS */
.tariff-points {

    margin: 30px 0;
}

.point {

    color: white;

    margin-bottom: 14px;

    font-size: 16px;
}

/* CALL TEXT */
.call-text {

    color: #D4AF37 !important;

    font-weight: 500;
}

/* BUTTON */
.tariff-btn {

    display: inline-block;

    margin-top: 20px;

    padding: 14px 32px;

    background: linear-gradient(45deg, #D4AF37, #FFD700);

    color: #0B1F3A;

    text-decoration: none;

    font-weight: 600;

    border-radius: 50px;

    transition: 0.3s ease;
}

/* HOVER */
.tariff-btn:hover {

    transform: scale(1.05);

    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* FOOTER */
.footer {

    background: linear-gradient(135deg, #081726, #2B0A12);

    padding-top: 70px;

    position: relative;

    overflow: hidden;

    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* CONTAINER */
.footer-container {

    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 50px;

    flex-wrap: wrap;

    padding: 0 20px 50px;

    position: relative;

    z-index: 1;
}

/* FOOTER BOX */
.footer-box {

    flex: 1;

    min-width: 250px;
}

/* LOGO */
.footer-logo {

    width: 180px;

    margin-bottom: 20px;
}

/* ABOUT */
.footer-about {

    color: #ddd;

    line-height: 1.9;

    font-size: 15px;
}

/* TITLE */
.footer-box h3 {

    color: #D4AF37;

    font-size: 24px;

    margin-bottom: 25px;
}

/* LINKS */
.footer-links {

    list-style: none;

    padding: 0;
}

.footer-links li {

    margin-bottom: 14px;
}

.footer-links li a {

    color: #ddd;

    text-decoration: none;

    transition: 0.3s ease;

    font-size: 15px;
}

/* HOVER */
.footer-links li a:hover {

    color: #D4AF37;

    padding-left: 6px;
}

/* CONTACT ITEM */
.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 22px;
}

/* ICON */
.footer-icon {

    min-width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(212, 175, 55, 0.12);

    border: 1px solid rgba(212, 175, 55, 0.2);

    border-radius: 50%;

    font-size: 18px;
}

/* CONTACT TEXT */
.footer-contact-item p {

    color: #ddd;

    margin: 0;

    line-height: 1.8;

    font-size: 15px;
}

/* BOTTOM */
.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    padding: 22px 15px;

    margin-top: 20px;
}

/* COPYRIGHT */
.footer-bottom p {

    color: #aaa;

    font-size: 14px;

    margin: 0;
}

@media (max-width: 768px) {

    .footer {

        padding-top: 50px;
    }

    .footer-container {

        flex-direction: column;

        text-align: center;

        gap: 45px;
    }

    .footer-logo {

        width: 160px;
    }

    .footer-box h3 {

        font-size: 22px;
    }

    .footer-about,
    .footer-links li a,
    .footer-contact-item p {

        font-size: 14px;
    }

    .footer-contact-item {

        justify-content: center;

        text-align: left;
    }

    .footer-icon {

        min-width: 42px;
        height: 42px;
    }
}

/* CONTACT SECTION */
.contact-section {

    background: #081726;

    padding: 90px 20px;

    display: flex;

    gap: 40px;

    justify-content: center;

    flex-wrap: wrap;
}

/* LEFT BOX */
.contact-form-box {

    flex: 1;

    min-width: 320px;

    max-width: 650px;

    background: linear-gradient(145deg, #10243f, #0B1F3A);

    padding: 45px;

    border-radius: 24px;
}

/* TITLE */
.contact-form-box h2 {

    color: #D4AF37;

    font-size: 42px;

    margin-bottom: 15px;
}

.contact-form-box p {

    color: #ccc;

    margin-bottom: 35px;
}

/* INPUT ROW */
.input-row {

    display: flex;

    gap: 20px;

    margin-bottom: 20px;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box textarea {

    width: 100%;

    background: #132845;

    border: none;

    padding: 16px;

    border-radius: 12px;

    color: white;

    outline: none;
}

/* TEXTAREA */
.contact-form-box textarea {

    height: 150px;

    resize: none;

    margin-bottom: 25px;
}

/* BUTTON */
.contact-btn {

    display: inline-block;

    width: 100%;

    text-align: center;

    padding: 16px;

    border-radius: 50px;

    background: linear-gradient(45deg, #D4AF37, #FFD700);

    color: #0B1F3A;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

/* HOVER */
.contact-btn:hover {

    transform: scale(1.02);

    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* RIGHT SIDE */
.contact-details {

    flex: 1;

    min-width: 300px;

    max-width: 450px;
}

/* DETAIL CARD */
.detail-card {

    background: linear-gradient(145deg, #10243f, #0B1F3A);

    display: flex;

    gap: 18px;

    padding: 25px;

    border-radius: 20px;

    margin-bottom: 20px;
}

/* ICON */
.detail-icon {

    font-size: 30px;
}

/* TITLE */
.detail-card h3 {

    color: #D4AF37;

    margin-bottom: 8px;
}

/* TEXT */
.detail-card p {

    color: #ddd;

    line-height: 1.7;
}

/* MAP */
.map-box {

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 0 20px rgba(0,0,0,0.25);

    border: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {

    .contact-section {

        padding: 60px 15px;
    }

    .input-row {

        flex-direction: column;
    }

    .contact-form-box {

        padding: 30px 20px;
    }

    .contact-form-box h2 {

        font-size: 32px;
    }
}

html {
    scroll-behavior: smooth;
}