@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --dark-green: #063f43;
    --deep-green: #022f33;
    --gold: #d8ad45;
    --light-gold: #f1cf77;
    --cream: #fffaf0;
    --white: #ffffff;
    --text: #263238;
    --light-bg: #f6f3eb;
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

.header {
    width: 100%;
    min-height: 88px;
    padding: 8px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 105px;
    height: 72px;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.navbar a {
    color: var(--deep-green);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
}

.navbar a::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.navbar a:hover {
    color: var(--gold);
}

.navbar a:hover::after {
    width: 100%;
}

.header-call {
    padding: 11px 19px;
    color: var(--white);
    background: var(--dark-green);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.header-call i {
    margin-right: 6px;
}

.header-call:hover {
    background: var(--gold);
    color: var(--deep-green);
    transform: translateY(-2px);
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 150px 8% 80px;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 34, 38, 0.86) 0%,
            rgba(0, 45, 49, 0.65) 45%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        url("image/hero.png"); background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.home::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 33, 37, 0.45), transparent);
}

.home-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: var(--white);
}

.welcome-text {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    color: var(--light-gold);
    border: 1px solid rgba(241, 207, 119, 0.75);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(7px);
}

.home h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 7vw, 90px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.45);
}

.home h1::first-line {
    color: var(--white);
}

.journey-line {
    max-width: 680px;
    font-size: 19px;
    margin-bottom: 34px;
    color: #fff8e7;
}

.home-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 175px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    color: var(--deep-green);
    background: linear-gradient(135deg, var(--light-gold), var(--gold));
    box-shadow: 0 7px 22px rgba(216, 173, 69, 0.35);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 28px rgba(216, 173, 69, 0.5);
}

.whatsapp-btn {
    color: var(--white);
    background: #20b85a;
    box-shadow: 0 7px 22px rgba(32, 184, 90, 0.3);
}

.whatsapp-btn:hover {
    background: #159947;
    transform: translateY(-3px);
}

.section {
    padding: 90px 8%;
    text-align: center;
}

.section h2 {
    font-family: "Playfair Display", serif;
    color: var(--deep-green);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 22px;
}

.section h2::after {
    content: "";
    display: block;
    width: 75px;
    height: 3px;
    margin: 15px auto 0;
    border-radius: 5px;
    background: linear-gradient(to right, var(--dark-green), var(--gold));
}

.section > p {
    max-width: 900px;
    margin: 0 auto;
    color: #58666a;
    font-size: 16px;
}

.light-section {
    background:
        radial-gradient(circle at top right, rgba(216, 173, 69, 0.12), transparent 35%),
        var(--light-bg);
}

.cards {
    max-width: 1200px;
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.card {
    padding: 35px 25px;
    background: var(--white);
    border: 1px solid rgba(216, 173, 69, 0.2);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: 0.35s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 18px 42px rgba(0, 63, 67, 0.16);
}

.card i {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    background: rgba(6, 63, 67, 0.08);
    border-radius: 50%;
    font-size: 30px;
}

.card h3 {
    color: var(--deep-green);
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin-bottom: 12px;
}

.card p {
    color: #667276;
    font-size: 14px;
}

.contact-section {
    color: var(--white);
    background:
        linear-gradient(rgba(2, 47, 51, 0.94), rgba(2, 47, 51, 0.94)),
        url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.contact-section h2 {
    color: var(--white);
}

.contact-section p {
    color: #e8f2ef;
    margin-bottom: 8px;
}

.contact-section a {
    color: var(--light-gold);
    font-weight: 600;
}

.social-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-buttons a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 50%;
    font-size: 21px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.social-buttons a:hover {
    transform: scale(1.12);
}

.whatsapp {
    background: #25d366;
}

.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook {
    background: #1877f2;
}

.youtube {
    background: #ff0000;
}

.footer {
    padding: 24px 7%;
    color: #dce8e6;
    background: #011f22;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .navbar {
        gap: 13px;
    }

    .navbar a {
        font-size: 12px;
    }

    .header {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (max-width: 850px) {
    .navbar {
        display: none;
    }

    .home {
        text-align: center;
        justify-content: center;
        background-attachment: scroll;
    }

    .home-content {
        margin: 0 auto;
    }

    .journey-line {
        margin-left: auto;
        margin-right: auto;
    }

    .home-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .header {
        min-height: 76px;
    }

    .logo img {
        width: 85px;
        height: 60px;
    }

    .header-call {
        padding: 10px 15px;
        font-size: 12px;
    }

    .home {
        padding-left: 6%;
        padding-right: 6%;
    }

    .home h1 {
        font-size: 44px;
    }

    .journey-line {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 70px 6%;
    }

    .social-buttons {
        right: 10px;
    }

    .social-buttons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}/* Final Selected Homepage Hero Design */

.home {
    background-image: url("image/hero.png");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    justify-content: flex-start;
}

.home::after,
.home-overlay {
    display: none;
}

.home-content {
    max-width: 780px;
    color: #262626;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home h1 {
    order: 1;
    font-family: "Playfair Display", serif;
    font-size: clamp(58px, 6vw, 88px);
    font-weight: 600;
    line-height: 1.06;
    color: #252525;
    text-transform: none;
    letter-spacing: -1.5px;
    text-shadow: none;
    margin-bottom: 18px;
}

.home h1::first-line {
    color: #252525;
}

.journey-line {
    order: 2;
    max-width: 650px;
    color: #333333;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    margin-bottom: 5px;
    padding-bottom: 16px;
    position: relative;
}

.journey-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 240px;
    height: 2px;
    background: linear-gradient(to right, #bd8d35, transparent);
}

.welcome-text {
    order: 3;
    display: block;
    align-self: flex-start;
    margin: 14px 0 28px;
    padding: 0;
    color: #594a3a;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    backdrop-filter: none;
}

.home-buttons {
    order: 4;
}

.primary-btn {
    color: #ffffff;
    background: #064b4d;
    box-shadow: 0 7px 20px rgba(6, 75, 77, 0.25);
}

.primary-btn:hover {
    color: #ffffff;
    background: #032f31;
}

.whatsapp-btn {
    color: #064b4d;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid #064b4d;
    box-shadow: none;
    backdrop-filter: blur(3px);
}

.whatsapp-btn:hover {
    color: #ffffff;
    background: #064b4d;
}

@media (max-width: 850px) {
    .home-content {
        align-items: center;
    }

    .welcome-text {
        align-self: center;
    }

    .journey-line::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .home h1 {
        font-size: 46px;
    }

    .journey-line {
        font-size: 20px;
    }
}/* Minimal Social Media Buttons */

.social-buttons {
    right: 14px;
    gap: 7px;
}

.social-buttons a {
    width: 34px;
    height: 34px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.social-buttons a:hover {
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .social-buttons {
        right: 8px;
    }

    .social-buttons a {
        width: 31px;
        height: 31px;
        font-size: 14px;
    }
}/* Smaller Homepage Buttons */

.home-buttons .btn {
    min-width: 145px;
    padding: 10px 18px;
    gap: 6px;
    font-size: 13px;
    border-radius: 25px;
}

.home-buttons .btn i {
    font-size: 14px;
}

@media (max-width: 600px) {
    .home-buttons .btn {
        width: auto;
        min-width: 140px;
        padding: 10px 15px;
        font-size: 12px;
    }
}/* Balanced Hero Typography */

.home-content {
    max-width: 650px;
}

.home h1 {
    font-size: clamp(44px, 4.8vw, 68px);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.journey-line {
    max-width: 520px;
    font-size: 19px;
    margin-bottom: 3px;
    padding-bottom: 12px;
}

.journey-line::after {
    width: 180px;
}

.welcome-text {
    margin: 10px 0 22px;
    font-size: 13px;
}

@media (max-width: 600px) {
    .home h1 {
        font-size: 39px;
    }

    .journey-line {
        font-size: 17px;
    }

    .welcome-text {
        font-size: 12px;
    }
}/* Compact Top Header */

html {
    scroll-padding-top: 72px;
}

.header {
    min-height: 70px;
    padding: 4px 6%;
    gap: 18px;
}

.logo img {
    width: 88px;
    height: 58px;
}

.navbar {
    gap: 20px;
}

.navbar a {
    font-size: 13px;
}

.header-call {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 22px;
}

.header-call i {
    margin-right: 4px;
    font-size: 11px;
}

@media (max-width: 600px) {
    .header {
        min-height: 64px;
        padding: 3px 4%;
    }

    .logo img {
        width: 76px;
        height: 52px;
    }

    .header-call {
        padding: 7px 11px;
        font-size: 11px;
    }
}/* Move Hero Buttons Slightly Down */

.home-buttons {
    margin-top: 22px;
    transform: translateY(12px);
}/* Final Hero Button Position */

.home-buttons {
    margin-top: 28px;
    transform: translate(-14px, 28px);
}

@media (max-width: 600px) {
    .home-buttons {
        transform: translateY(16px);
    }
}/* Move Hero Text Into Clear Sky Area */

.home h1,
.journey-line,
.welcome-text {
    transform: translateY(-42px);
}

.home h1 {
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.55);
}

.journey-line,
.welcome-text {
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.65);
}

@media (max-width: 600px) {
    .home h1,
    .journey-line,
    .welcome-text {
        transform: translateY(-22px);
    }
}/* Make Discover Line Clearly Visible */

.welcome-text {
    order: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    padding: 7px 14px;
    margin-bottom: 17px;
    color: #063f43;
    background: rgba(255, 255, 255, 0.78);
    border: none;
    border-left: 3px solid #c99a3d;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: none;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 3;
}

.home h1 {
    order: 2;
}

.journey-line {
    order: 3;
}

.home-buttons {
    order: 4;
}

@media (max-width: 600px) {
    .welcome-text {
        align-self: center;
        font-size: 10px;
        padding: 6px 11px;
    }
}/* Final Clean Hero Text Placement */

.welcome-text {
    display: none !important;
}

.home h1,
.journey-line {
    transform: translateY(-48px);
}

.journey-line {
    order: 3;
    max-width: 620px;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    line-height: 1.5;
    color: #2f302f;
    margin-bottom: 0;
}

.home-buttons {
    margin-top: 12px;
}

@media (max-width: 600px) {
    .home h1,
    .journey-line {
        transform: translateY(-28px);
    }

    .journey-line {
        font-size: 15px;
    }
}/* Keep Hero Buttons at Bottom */

.home-buttons {
    margin-top: 0;
    transform: translate(-14px, 105px) !important;
}

@media (max-width: 600px) {
    .home-buttons {
        transform: translateY(65px) !important;
    }
}/* Compact About Section */

#about {
    padding-top: 48px;
    padding-bottom: 55px;
}

#about h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

#about > p {
    max-width: 950px;
    font-size: 15px;
    line-height: 1.8;
}

#about h2::after {
    margin-top: 10px;
}/* Premium About Section */

#about {
    padding: 0 !important;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: stretch;
    background: #ffffff;
    overflow: hidden;
}

.about-image {
    min-height: 570px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-content {
    padding: 55px 7% 50px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-label {
    margin-bottom: 8px;
    color: #bd8d35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 20px;
    color: #063f43;
    font-family: "Playfair Display", serif;
    font-size: clamp(37px, 4vw, 51px);
    font-weight: 600;
    line-height: 1.12;
}

.about-content h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 14px;
    background: linear-gradient(to right, #bd8d35, transparent);
}

.about-content > p:not(.about-label) {
    margin-bottom: 13px;
    color: #566366;
    font-size: 14px;
    line-height: 1.75;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
    border-top: 1px solid #e7dcc6;
    border-left: 1px solid #e7dcc6;
}

.trust-item {
    min-height: 75px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e7dcc6;
    border-bottom: 1px solid #e7dcc6;
}

.trust-item i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #bd8d35;
    background: #fff8e9;
    border-radius: 50%;
    font-size: 17px;
}

.trust-item span {
    color: #263e40;
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 850px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 400px;
    }

    .about-content {
        padding: 50px 7%;
    }
}

@media (max-width: 500px) {
    .about-image {
        min-height: 310px;
    }

    .about-content {
        padding: 40px 6%;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}/* Show Complete About Image */

.about-image {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f1e5;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

/* =========================
   TOUR PACKAGES SECTION
========================= */

.tour-packages {
    padding: 90px 7%;
    background: #f8f5ef;
    position: relative;
    overflow: hidden;
}

.packages-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.packages-heading span {
    display: block;
    margin-bottom: 12px;
    color: #c28a2c;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
}

.packages-heading h2 {
    margin-bottom: 18px;
    color: #064b4d;
    font-family: Georgia, serif;
    font-size: 46px;
    line-height: 1.15;
}

.packages-heading p {
    color: #5d6666;
    font-size: 17px;
    line-height: 1.8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1350px;
    margin: 0 auto;
}

.package-card {
    min-height: 310px;
    padding: 35px 27px;
    background: #ffffff;
    border: 1px solid rgba(6, 75, 77, 0.1);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 55, 57, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 55, 57, 0.16);
}

.package-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 25px;
    background: #f5ead4;
    border-radius: 50%;
    font-size: 30px;
}

.package-card h3 {
    margin-bottom: 15px;
    color: #064b4d;
    font-family: Georgia, serif;
    font-size: 23px;
}

.package-card p {
    min-height: 92px;
    margin-bottom: 22px;
    color: #687272;
    font-size: 15px;
    line-height: 1.7;
}

.package-card a {
    color: #b77b1d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-card a:hover {
    color: #064b4d;
}

.special-card {
    background: linear-gradient(145deg, #07575a, #033c3e);
    border-color: transparent;
}

.special-card .package-icon {
    background: rgba(255, 255, 255, 0.14);
}

.special-card h3 {
    color: #ffffff;
}

.special-card p {
    color: rgba(255, 255, 255, 0.78);
}

.special-card a {
    color: #f3c777;
}

/* Tablet Responsive */
@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 650px) {
    .tour-packages {
        padding: 65px 20px;
    }

    .packages-heading h2 {
        font-size: 34px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        min-height: auto;
    }

    .package-card p {
        min-height: auto;
    }
}/* Tour package cards in one row */
@media (min-width: 1000px) {
    #packages .packages-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    #packages .package-card {
        min-height: 340px;
        padding: 42px 25px;
    }
}/* Tour package cards in one row */
@media (min-width: 1000px) {
    #packages .packages-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    #packages .package-card {
        min-height: 340px;
        padding: 42px 25px;
    }
}/* Fix three tour package cards in one row */
@media (min-width: 1000px) {
    #packages .cards {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 28px !important;
    }

    #packages .card {
        width: 100% !important;
        max-width: none !important;
        min-height: 340px;
        padding: 42px 25px;
    }
}#packages .cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
}

#packages .cards > .card {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
}

@media (max-width: 600px) {
    #packages .cards {
        grid-template-columns: 1fr !important;
    }
}/* Tour package photo cards */
#packages .card {
    padding: 0 0 30px !important;
    min-height: 420px !important;
    height: auto !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#packages .package-photo {
    display: block;
    width: 100% !important;
    height: 190px !important;
    margin: 0 0 24px !important;
    object-fit: cover;
    border-radius: 0;
}

#packages .card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    margin: 0 20px 12px;
    text-align: center;
    font-size: 27px;
}

#packages .card p {
    margin: 0 24px;
    text-align: center;
    line-height: 1.7;
}/* Package WhatsApp enquiry buttons */
#packages .package-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 11px 24px;
    background: #064b4d;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 7px 18px rgba(6, 75, 77, 0.18);
    transition: all 0.3s ease;
}

#packages .package-enquiry-btn:hover {
    background: #d3a33c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(211, 163, 60, 0.28);
}/* =========================
   TRAVEL SERVICES SECTION
========================= */

#services .cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
    max-width: 1100px;
    margin: 0 auto;
}

#services .service-card {
    min-height: 315px;
    padding: 38px 32px;
    background: #ffffff;
    border: 1px solid rgba(211, 163, 60, 0.28);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(6, 75, 77, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s ease;
}

#services .service-card:hover {
    transform: translateY(-8px);
    border-color: #d3a33c;
    box-shadow: 0 18px 42px rgba(6, 75, 77, 0.15);
}

#services .service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    background: #f5ead4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#services .service-icon i {
    color: #d3a33c;
    font-size: 29px;
}

#services .service-card h3 {
    margin-bottom: 14px;
    color: #064b4d;
    font-size: 27px;
}

#services .service-card p {
    max-width: 390px;
    margin-bottom: 22px;
    color: #687272;
    font-size: 16px;
    line-height: 1.7;
}

#services .service-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 23px;
    background: #064b4d;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

#services .service-card a:hover {
    background: #d3a33c;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    #services .cards {
        grid-template-columns: 1fr !important;
    }
}/* Service card photos with overlapping icons */
#services .service-card {
    position: relative;
    min-height: 500px;
    padding: 0 32px 32px !important;
    overflow: hidden;
}

#services .service-photo {
    display: block;
    flex-shrink: 0;
    width: calc(100% + 64px) !important;
    height: 220px !important;
    margin: 0 -32px -36px !important;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

#services .service-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    margin: 0 auto 16px !important;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 20px rgba(6, 75, 77, 0.14);
}

#services .service-card h3 {
    margin-top: 0;
}

@media (max-width: 600px) {
    #services .service-photo {
        height: 190px !important;
    }
}/* =========================
   TRAVEL GALLERY
========================= */

#gallery .gallery-intro {
    max-width: 760px;
    margin: -20px auto 42px;
    color: #687272;
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

#gallery .gallery-item {
    position: relative;
    height: 270px;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(6, 75, 77, 0.14);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#gallery .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3, 55, 57, 0.9) 0%,
        rgba(3, 55, 57, 0.15) 60%,
        transparent 100%
    );
}

#gallery .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#gallery .gallery-item figcaption {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    color: #ffffff;
}

#gallery .gallery-item figcaption span {
    display: block;
    margin-bottom: 5px;
    color: #f2c66d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#gallery .gallery-item figcaption h3 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
}

#gallery .gallery-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(6, 75, 77, 0.22);
}

#gallery .gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 600px) {
    #gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    #gallery .gallery-item {
        height: 240px;
    }
}/* Gallery Image Popup */
.gallery-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(2, 38, 40, 0.92);
    cursor: zoom-out;
}

.gallery-popup img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.gallery-popup-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: white;
    color: #064b4d;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}/* Customer Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #f5fbfb, #fffaf0);
    text-align: center;
}

.reviews-heading {
    max-width: 720px;
    margin: 0 auto 32px;
}

.reviews-heading .section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #d6a437;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.reviews-heading h2 {
    margin-bottom: 12px;
    color: #004f55;
}

.reviews-heading p {
    color: #5f6f72;
    line-height: 1.7;
}

.review-invitation {
    max-width: 720px;
    margin: 0 auto;
    padding: 38px 45px;
    background: #ffffff;
    border: 1px solid #ead8a8;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 79, 85, 0.12);
}

.review-stars {
    margin-bottom: 14px;
    color: #d6a437;
    font-size: 32px;
    letter-spacing: 5px;
}

.review-invitation h3 {
    margin-bottom: 14px;
    color: #004f55;
    font-size: 28px;
}

.review-invitation p {
    max-width: 580px;
    margin: 0 auto 28px;
    color: #5f6f72;
    font-size: 17px;
    line-height: 1.7;
}

.review-btn {
    display: inline-block;
    padding: 13px 25px;
    background: #005c63;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.review-btn:hover {
    background: #d6a437;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .review-invitation {
        padding: 30px 20px;
    }

    .review-invitation h3 {
        font-size: 24px;
    }

    .review-stars {
        font-size: 26px;
        letter-spacing: 3px;
    }
}

/* Enquiry Form */
.contact-section {
    height: auto;
    min-height: 500px;
    padding-bottom: 70px;
}

.enquiry-form {
    width: 90%;
    max-width: 760px;
    margin: 30px auto 0;
    padding: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    text-align: left;
}

.enquiry-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.enquiry-form .form-group {
    margin-bottom: 18px;
}

.enquiry-form label {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: #ffffff;
    color: #173f42;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #e2ad35;
    box-shadow: 0 0 0 3px rgba(226, 173, 53, 0.2);
}

.enquiry-form textarea {
    resize: vertical;
}

.enquiry-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 9px;
    background: #e2ad35;
    color: #073f42;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-submit:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 650px) {
    .enquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enquiry-form {
        padding: 20px;
    }
}section {
    scroll-margin-top: 110px;
}/* Mobile Navigation Menu */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #f3e5c1;
    color: #073f42;
    font-size: 21px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .header {
        padding: 10px 15px;
        gap: 10px;
    }

    .logo img {
        width: 68px;
        height: auto;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-call {
        padding: 10px 13px;
        font-size: 13px;
        white-space: nowrap;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: #ffffff;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
        z-index: 1001;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        width: 100%;
        padding: 11px 13px;
        border-bottom: 1px solid #eeeeee;
        text-align: left;
    }

    .navbar a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: 58px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .header-call {
        padding: 9px 11px;
        font-size: 12px;
    }
}@media (max-width: 900px) {
    .header .navbar.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .header .navbar.active a {
        pointer-events: auto !important;
        cursor: pointer !important;
        position: relative;
        z-index: 1002;
    }
}@media (max-width: 600px) {
    .home {
        min-height: calc(100vh - 90px);
        padding: 35px 18px 25px;
    }

    .home-content {
        width: 100%;
        max-width: 100%;
        padding: 20px 8px 0;
        text-align: center;
    }

    .home-content h1 {
        font-size: 32px !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }

    .home-content p {
        max-width: 270px;
        margin: 0 auto 18px !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
}@media (max-width: 600px) {
    .home {
        height: auto !important;
        min-height: 650px !important;
        padding: 45px 15px 35px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .home-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto !important;
        padding: 0 8px !important;
    }

    .home-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 14px !important;
    }
}@media (max-width: 600px) {
    .home {
        padding-top: 110px !important;
        min-height: 700px !important;
    }
}@media (max-width: 600px) {
    .social-buttons {
        position: fixed !important;
        top: auto !important;
        left: auto !important;
        right: 50% !important;
        bottom: 12px !important;
        transform: translateX(50%) !important;
        flex-direction: row !important;
        gap: 8px !important;
        padding: 6px 10px !important;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 30px;
        z-index: 1500 !important;
    }

    .social-buttons a {
        width: 38px !important;
        height: 38px !important;
        margin: 0 !important;
        font-size: 18px !important;
    }
}@media (max-width: 600px) {
    .home-buttons {
        margin-top: 35px !important;
        margin-bottom: 90px !important;
    }
}@media (max-width: 600px) {
    .home-buttons {
        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        margin: 35px auto 100px !important;
    }
}@media (max-width: 600px) {
    .about-image {
        height: 230px !important;
        overflow: hidden;
    }

    .about-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .about-content {
        padding: 30px 20px !important;
    }

    .about-content h2 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }
}

/* Destination Package Posters */
.destination-packages-wrap {
    width: 100%;
    margin-top: 70px;
}

.destination-packages-title {
    margin: 0;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.15;
    color: #073f42;
}

.destination-packages-subtitle {
    max-width: 680px;
    margin: 12px auto 34px;
    text-align: center;
    font-size: 16px;
    color: #667274;
}

.destination-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.destination-package-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(201, 148, 39, 0.25);
    border-radius: 24px;
    background: #fffaf0;
    box-shadow: 0 14px 35px rgba(7, 63, 66, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(7, 63, 66, 0.23);
}

.destination-package-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

@media (max-width: 900px) {
    .destination-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 600px) {
    .destination-packages-wrap {
        margin-top: 50px;
    }

    .destination-packages-title {
        font-size: 32px;
    }

    .destination-packages-subtitle {
        margin-bottom: 26px;
        padding: 0 8px;
        font-size: 15px;
    }

    .destination-package-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .destination-package-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        border-radius: 20px;
    }
}

/* Services Section Size Fix */
#services .cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

#services .service-card {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

#services .service-photo {
    display: block !important;
    width: 100% !important;
    height: 230px !important;
    object-fit: cover !important;
}

#services .service-card h3 {
    font-size: 28px !important;
}

#services .service-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
}

@media (max-width: 700px) {
    #services .cards {
        grid-template-columns: 1fr !important;
        max-width: 360px !important;
        gap: 24px !important;
    }

    #services .service-photo {
        height: 210px !important;
    }

    #services .service-card h3 {
        font-size: 24px !important;
    }
}/* Final Compact Services Fix */
.service-card {
    width: 100% !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.service-card > img,
.service-card .service-photo {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
}

.service-card h3 {
    font-size: 28px !important;
}

.service-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
}

@media (max-width: 700px) {
    .service-card {
        max-width: 340px !important;
    }

    .service-card > img,
    .service-card .service-photo {
        height: 190px !important;
    }

    .service-card h3 {
        font-size: 24px !important;
    }
}/* Extra Compact Desktop Services */
#services .cards {
    max-width: 900px !important;
    gap: 24px !important;
}

#services .service-card {
    max-width: 438px !important;
}

#services .service-photo {
    height: 165px !important;
}

#services .service-card h3 {
    font-size: 24px !important;
}

#services .service-card p {
    font-size: 15px !important;
}/* Show Flight Ticket Photo Properly */
#services .service-card:first-child .service-photo {
    object-position: center top !important;
}/* Quick Bus & Train Booking */
.quick-booking {
    max-width: 1180px;
    margin: 35px auto;
    padding: 30px 40px;
    background: linear-gradient(135deg, #fff8eb, #f3e4c8);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 74, 78, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 6px solid #c89532;
}

.quick-booking-text span {
    color: #c28a27;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.quick-booking-text h2 {
    color: #003f43;
    font-size: 32px;
    margin: 8px 0;
}

.quick-booking-text p {
    color: #555;
    margin: 0;
    font-size: 16px;
}

.quick-booking-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ticket-btn {
    padding: 14px 22px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}

.ticket-btn i {
    margin-right: 8px;
}

.bus-btn {
    background: #004b50;
}

.train-btn {
    background: #c89532;
}

.ticket-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .quick-booking {
        margin: 20px 15px;
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }

    .quick-booking-text h2 {
        font-size: 25px;
    }

    .quick-booking-buttons {
        width: 100%;
        flex-direction: column;
    }

    .ticket-btn {
        text-align: center;
    }
}/* Compact Ticket Booking Box */
.quick-booking {
    max-width: 760px;
    margin: 25px auto;
    padding: 20px 28px;
    border-radius: 14px;
    gap: 20px;
}

.quick-booking-text span {
    font-size: 12px;
}

.quick-booking-text h2 {
    font-size: 23px;
    margin: 5px 0;
}

.quick-booking-text p {
    font-size: 14px;
}

.quick-booking-buttons {
    gap: 10px;
}

.ticket-btn {
    padding: 11px 17px;
    font-size: 14px;
    white-space: nowrap;
}/* Ticket Enquiry Form */
.ticket-booking-section {
    padding: 30px 20px;
    background: #ffffff;
}

.ticket-booking-box {
    max-width: 1150px;
    margin: auto;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff8e9, #f4e4c5);
    border-left: 6px solid #d09a32;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 75, 80, 0.13);
}

.booking-heading {
    margin-bottom: 20px;
}

.booking-heading span {
    color: #c58a22;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-heading h2 {
    margin: 5px 0 0;
    color: #004b50;
    font-size: 27px;
}

.ticket-form {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.booking-field {
    display: flex;
    flex-direction: column;
}

.booking-field label {
    margin-bottom: 6px;
    color: #003f43;
    font-size: 13px;
    font-weight: 700;
}

.booking-field input,
.booking-field select {
    width: 100%;
    height: 47px;
    padding: 0 12px;
    border: 1px solid #d8c7a8;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    outline: none;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: #00565b;
}

.ticket-enquiry-btn {
    height: 47px;
    padding: 0 22px;
    border: none;
    border-radius: 8px;
    background: #00565b;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.ticket-enquiry-btn i {
    margin-right: 7px;
    font-size: 18px;
}

.ticket-enquiry-btn:hover {
    background: #d09a32;
}

@media (max-width: 900px) {
    .ticket-form {
        grid-template-columns: 1fr 1fr;
    }

    .ticket-enquiry-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .ticket-booking-box {
        padding: 22px 18px;
    }

    .booking-heading h2 {
        font-size: 23px;
    }

    .ticket-form {
        grid-template-columns: 1fr;
    }
}