  /* Section 1 - Balinese Escape */
        .escape-section {
            background-color: #f5f5f5;
            padding: 80px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .escape-image-wrapper {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }

        .escape-landscape-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .escape-content-wrapper {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }

        .escape-main-heading {
            color: #c49b63;
            font-size: 2.5rem;
            letter-spacing: 0.05em;
            margin-bottom: 25px;
        }

        .escape-description-text {
            color: #333;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .escape-cta-button {
            background-color: transparent;
            color: #c49b63;
            border: 2px solid #c49b63;
            padding: 12px 35px;
            border-radius: 30px;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .escape-cta-button:hover {
            background-color: #c49b63;
            color: white;
        }

        /* Section 2 - Love Story */
        .story-section {
            background-color: #000;
            padding: 80px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .story-content-wrapper {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }

        .story-main-heading {
            color: #c49b63;
            font-size: 2.5rem;
            letter-spacing: 0.05em;
            margin-bottom: 25px;
        }

        .story-description-text {
            color: #fff;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .story-cta-button {
            background-color: transparent;
            color: #c49b63;
            border: 2px solid #c49b63;
            padding: 12px 35px;
            border-radius: 30px;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .story-cta-button:hover {
            background-color: #c49b63;
            color: #000;
        }

        .story-image-wrapper {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }

        .story-landscape-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(196, 155, 99, 0.3);
        }

        /* Section 3 - Guest Experiences */
        .testimonial-section {
            background-color: #f5f5f5;
            padding: 80px 40px;
            text-align: center;
        }

        .testimonial-main-heading {
            color: #c49b63;
            font-size: 2.5rem;
            letter-spacing: 0.08em;
            margin-bottom: 40px;
        }

        .testimonial-quote-text {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.9;
            max-width: 900px;
            margin: 0 auto 30px;
            font-style: italic;
        }

        .testimonial-author-name {
            color: #666;
            font-size: 1rem;
            font-style: italic;
        }

        /* Section 4 - Footer */
        .footer-section {
            background-color: #000;
            padding: 60px 40px 30px;
            color: #fff;
        }

        .footer-content-grid {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-logo-wrapper {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .footer-brand-logo {
            width: 250px;
            height: auto;
            border-radius: 50%;
        }

        .footer-newsletter-wrapper {
            flex: 1;
            min-width: 280px;
        }

        .newsletter-heading {
            color: #fff;
            font-size: 1.3rem;
            letter-spacing: 0.05em;
            margin-bottom: 15px;
        }

        .newsletter-description {
            color: #ccc;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .newsletter-form-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .newsletter-email-input {
            flex: 1;
            min-width: 200px;
            padding: 12px 20px;
            border: 1px solid #444;
            border-radius: 25px;
            background-color: transparent;
            color: #fff;
            font-size: 0.9rem;
        }

        .newsletter-email-input::placeholder {
            color: #888;
        }

        .newsletter-submit-btn {
            background-color: transparent;
            color: #c49b63;
            border: 2px solid #c49b63;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .newsletter-submit-btn:hover {
            background-color: #c49b63;
            color: #000;
        }

        .footer-links-wrapper {
            flex: 1;
            min-width: 200px;
        }

        .footer-company-title {
            color: #fff;
            font-size: 1.3rem;
            letter-spacing: 0.05em;
            margin-bottom: 15px;
        }

        .footer-nav-list {
            list-style: none;
        }

        .footer-nav-item {
            margin-bottom: 10px;
        }

        .footer-nav-link {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-nav-link:hover {
            color: #c49b63;
        }

        .footer-contact-info {
            margin-top: 15px;
        }

        .footer-contact-item {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .footer-copyright-bar {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
        }

        .footer-copyright-text {
            color: #888;
            font-size: 0.85rem;
        }

        .footer-copyright-link {
            color: #c49b63;
            text-decoration: none;
        }

        .footer-copyright-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .escape-section,
            .story-section {
                padding: 50px 20px;
                gap: 40px;
            }

            .escape-main-heading,
            .story-main-heading,
            .testimonial-main-heading {
                font-size: 2rem;
            }

            .story-section {
                flex-direction: column-reverse;
            }

            .escape-section > .escape-content-wrapper {
                order: 2;
            }

            .escape-section > .escape-image-wrapper {
                order: 1;
            }
        }



/* Global reset */

/* HERO WRAPPER */
.kejtour-hero-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url("../assets/info/in.png"); /* <-- change to your image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* DARK OVERLAY */
.kejtour-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 49, 55, 0.7); /* teal-ish dark overlay */
}

/* CONTENT */
.kejtour-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
}

/* MAIN HEADING */
.kejtour-hero-title {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #ff7a00; /* strong orange */
    margin-bottom: 20px;
}

/* SUB HEADING */
.kejtour-hero-subtitle {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #ffffff;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .kejtour-hero-title {
        font-size: 50px;
    }

    .kejtour-hero-subtitle {
        font-size: 28px;
        letter-spacing: 2px;
    }
}

@media (max-width: 600px) {
    .kejtour-hero-page {
        min-height: 80vh;
    }

    .kejtour-hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .kejtour-hero-subtitle {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
}


/* =========================================== */


        .travel__contact__wrapper {
            font-family: 'Arial', sans-serif;
            background-color: #000;
            color: #fff;
            min-height: 100vh;
        }

        .travel__hero__section {
            position: relative;
            height: 90vh;
            overflow: hidden;
        }

        .travel__hero__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .travel__hero__overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
        }

        .travel__hero__content {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            max-width: 600px;
            padding: 20px;
        }

        .travel__quote__name {
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        .travel__quote__text {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .travel__story__section {
            display: flex;
            align-items: center;
            padding: 60px 5%;
            gap: 40px;
        }

        .travel__story__text {
            flex: 1;
            font-size: 1.15em;
            line-height: 1.8;
        }

        .travel__map__container {
            flex: 1;
            position: relative;
        }

        .travel__map__image {
            width: 100%;
            height: auto;
            display: block;
        }

        .travel__contact__form__section {
            padding: 60px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .travel__section__title {
            color: #ff6b35;
            font-size: 2.5em;
            margin-bottom: 40px;
            text-align: center;
        }

        .travel__form__container {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 10px;
            max-width: 800px;
            margin: 0 auto;
        }

        .travel__form__group {
            margin-bottom: 25px;
        }

        .travel__form__label {
            display: block;
            margin-bottom: 8px;
            color: #ff6b35;
            font-weight: bold;
        }

        .travel__form__input,
        .travel__form__textarea {
            width: 100%;
            padding: 12px 15px;
            background: #2a2a2a;
            border: 2px solid #3a3a3a;
            border-radius: 5px;
            color: #fff;
            font-size: 1em;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s;
        }

        .travel__form__input:focus,
        .travel__form__textarea:focus {
            outline: none;
            border-color: #ff6b35;
        }

        .travel__form__textarea {
            resize: vertical;
            min-height: 150px;
        }

        .travel__form__submit {
            background: #ff6b35;
            color: #fff;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            display: block;
            margin: 30px auto 0;
        }

        .travel__form__submit:hover {
            background: #ff8555;
        }

        .travel__form__message {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            display: none;
        }

        .travel__form__message--success {
            background: #2d5f2d;
            color: #90ee90;
        }

        .travel__form__message--error {
            background: #5f2d2d;
            color: #ff9090;
        }

        @media (max-width: 968px) {
            .travel__story__section {
                flex-direction: column;
            }

            .travel__hero__content {
                right: 50%;
                transform: translate(50%, -50%);
                text-align: center;
            }

            .travel__form__container {
                padding: 25px;
            }
        }


        /* ////////////////// */

        .kej-hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1200') center/cover;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
        }