
/* =====================================================
   SOUTH INDIA PREMIUM TRAVEL BROCHURE
   ===================================================== */
.south-india-premium,
.south-india-premium * {
    box-sizing: border-box;
}
.south-india-premium {
    --green: #17483d;
    --green-dark: #10352d;
    --gold: #b89452;
    --cream: #f7f4ed;
    --text: #4d5753;
    --border: #dddcd4;
    width: 100%;
    padding: 50px 20px  10px 20px;
    background: #f3f3ef;
    
    color: var(--text);
}
.sip-container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}
/* =====================================================
   HERO
   ===================================================== */
.sip-hero {
    height: 560px;
    position: relative;
    overflow: hidden;
    margin-bottom: 85px;
    background: #173c34;
}
.sip-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sip-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 35, 29, .92) 0%,
            rgba(10, 35, 29, .68) 43%,
            rgba(10, 35, 29, .08) 100%);
}
.sip-hero-content {
    position: absolute;
    left: 65px;
    bottom: 60px;
    width: calc(100% - 130px);
    color: #fff;
}
.sip-overline {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.sip-hero h1 {
    margin: 0 0 40px;
    color: #fff;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
}
.sip-hero h1 span {
    font-weight: 400;
}
.sip-hero-bottom {
    display: flex;
    align-items: flex-end;
    gap: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .35);
}
.sip-duration {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sip-duration small {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}
.sip-duration strong {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.sip-route {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    font-weight: 500;
}
/* =====================================================
   DAY
   ===================================================== */
.sip-day {
    position: relative;
    margin-bottom: 0px;
}
.sip-day-heading {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}
.sip-day-no {
    position: relative;
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}
.sip-day-no::after {
    content: "";
    position: absolute;
    left: 7px;
    right: -7px;
    top: 7px;
    bottom: -7px;
    border: 1px solid var(--gold);
    z-index: -1;
}
.sip-day-heading>div:last-child {
    flex: 1;
}
.sip-day-heading span {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 7px;
}
.sip-day-heading h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 25px;
    line-height: 1.35;
    font-weight: 800;
}
/* =====================================================
   MAIN GRID
   ===================================================== */
.sip-main-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    background: #fff;
    min-height: 450px;
    box-shadow:
        0 18px 50px rgba(26, 47, 41, .07);
}
.sip-main-grid.sip-reverse {
    grid-template-columns: 58% 42%;
}
/* =====================================================
   IMAGE
   ===================================================== */
.sip-image-box {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}
.sip-image-box img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}
.sip-image-box:hover img {
    transform: scale(1.04);
}
.sip-image-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 10px 16px;
    background: rgba(16, 53, 45, .9);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}
/* =====================================================
   CONTENT
   ===================================================== */
.sip-content {
    padding: 45px 50px;
}
.sip-intro-text {
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.85;
}
/* =====================================================
   DAY 1 TIMELINE
   ===================================================== */
.sip-timeline {
    position: relative;
    border-top: 1px solid var(--border);
}
.sip-time-block {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 19px 0;
    border-bottom: 1px solid var(--border);
}
.sip-time {
    color: var(--green);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 800;
}
.sip-time-content h3 {
    margin: 0 0 5px;
    color: var(--green-dark);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}
.sip-time-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
}
.sip-end-box {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding: 17px 18px;
    background: var(--cream);
    font-size: 15px;
    line-height: 1.5;
}
.sip-end-box strong {
    color: var(--green);
    white-space: nowrap;
}
/* =====================================================
   HIGHLIGHT
   ===================================================== */
.sip-highlight {
    display: flex;
    gap: 8px;
    padding: 16px 18px;
    margin-bottom: 28px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    font-size: 15px;
    line-height: 1.75;
}
.sip-highlight strong {
    color: var(--green);
    white-space: nowrap;
}
.sip-activities-title {
    margin: 30px 0 20px;
    color: var(--green-dark);
    font-size: 17px;
    font-weight: 800;
}
.sip-place {
    margin-bottom: 26px;
}
.sip-place h3 {
    margin: 0 0 6px;
    color: var(--green);
    font-size: 16px;
    font-weight: 800;
}
.sip-place p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}
.sip-evening {
    margin-top: 25px;
}
.sip-overnight {
    display: flex;
    gap: 8px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.5;
}
.sip-overnight strong {
    color: var(--green);
}
/* =====================================================
   TOUR END
   ===================================================== */
.sip-tour-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
    color: var(--green);
    font-size: 20px;
    font-weight: 800;
}
.sip-tour-end span {
    width: 55px;
    height: 1px;
    background: var(--gold);
}
/* =====================================================
   TABLET
   ===================================================== */
@media (max-width: 900px) {
    .south-india-premium {
        padding: 45px 15px;
    }
    .sip-hero {
        height: 500px;
        margin-bottom: 60px;
    }
    .sip-hero-content {
        left: 40px;
        bottom: 45px;
        width: calc(100% - 80px);
    }
    .sip-hero h1 {
        font-size: 46px;
    }
    .sip-hero-bottom {
        gap: 35px;
    }
    .sip-main-grid,
    .sip-main-grid.sip-reverse {
        grid-template-columns: 1fr;
    }
    .sip-main-grid.sip-reverse .sip-image-box {
        order: -1;
    }
    .sip-image-box,
    .sip-image-box img {
        min-height: 320px;
    }
    .sip-content {
        padding: 35px;
    }
}
/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 600px) {
    .south-india-premium {
        padding: 25px 10px;
    }
    .sip-hero {
        height: 510px;
        margin-bottom: 50px;
    }
    .sip-hero-overlay {
        background:
            linear-gradient(0deg,
                rgba(10, 35, 29, .95),
                rgba(10, 35, 29, .15));
    }
    .sip-hero-content {
        left: 25px;
        bottom: 30px;
        width: calc(100% - 50px);
    }
    .sip-hero h1 {
        font-size: 38px;
        margin-bottom: 30px;
    }
    .sip-hero-bottom {
        display: block;
    }
    .sip-duration {
        margin-bottom: 18px;
    }
    .sip-route {
        font-size: 15px;
    }
    .sip-day {
        margin-bottom: 55px;
    }
    .sip-day-heading {
        align-items: flex-start;
        gap: 18px;
    }
    .sip-day-no {
        width: 58px;
        height: 58px;
        font-size: 17px;
    }
    .sip-day-heading h2 {
        font-size: 21px;
    }
    .sip-main-grid {
        display: block;
    }
    .sip-image-box,
    .sip-image-box img {
        min-height: 245px;
        height: 245px;
    }
    .sip-content {
        padding: 27px 20px;
    }
    .sip-time-block {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 17px 0;
    }
    .sip-time {
        font-size: 11px;
    }
    .sip-highlight,
    .sip-end-box,
    .sip-overnight {
        flex-direction: column;
        gap: 3px;
    }
    .sip-tour-end {
        font-size: 17px;
    }
    .sip-tour-end span {
        width: 35px;
    }
}
</style>
<style>
/* =========================================================
   MOBILE RESPONSIVE FIX
   Add this CSS after your existing South India CSS
   ========================================================= */
.south-luxury-tour {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.slt-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}
/* ---------- TABLET ---------- */
@media (max-width: 900px) {
    .south-luxury-tour {
        padding: 45px 15px !important;
    }
    .slt-hero {
        width: 100%;
        height: auto !important;
        min-height: 520px;
        position: relative;
    }
    .slt-hero-content {
        left: 35px !important;
        right: 35px;
        bottom: 40px !important;
        width: auto !important;
    }
    .slt-hero h1 {
        font-size: 46px !important;
        line-height: 1.08 !important;
    }
    .slt-content-layout,
    .slt-day-reverse .slt-content-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
    }
    .slt-day-reverse .slt-visual {
        order: -1;
    }
    .slt-visual {
        width: 100%;
        min-height: 390px !important;
        height: 390px;
        padding: 25px;
    }
    .slt-photo-frame {
        width: 75%;
        height: 340px;
        min-height: 0;
    }
    .slt-information {
        width: 100%;
        padding: 35px;
    }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 600px) {
    /* Main section */
    .south-luxury-tour {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 10px !important;
        margin: 0 !important;
        overflow-x: hidden !important;
    }
    .slt-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    /* =====================================================
       HERO
       ===================================================== */
    .slt-hero {
        width: 100% !important;
        height: 500px !important;
        min-height: 500px !important;
        margin: 0 0 45px !important;
        overflow: hidden !important;
    }
    .slt-hero-image,
    .slt-hero-image img {
        width: 100% !important;
        height: 100% !important;
    }
    .slt-hero-image img {
        object-fit: cover !important;
        object-position: center !important;
    }
    .slt-hero::after {
        background:
            linear-gradient(0deg,
                rgba(10, 38, 31, .96) 0%,
                rgba(10, 38, 31, .72) 42%,
                rgba(10, 38, 31, .10) 100%) !important;
    }
    .slt-hero-content {
        position: absolute !important;
        left: 20px !important;
        right: 20px !important;
        bottom: 25px !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
    }
    .slt-label {
        font-size: 10px !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 13px !important;
    }
    .slt-hero h1 {
        font-size: 34px !important;
        line-height: 1.08 !important;
        margin: 0 0 28px !important;
    }
    .slt-hero h1 em {
        display: block !important;
    }
    .slt-hero-info {
        display: block !important;
        width: 100% !important;
        padding-top: 17px !important;
    }
    .slt-hero-info>div {
        width: 100% !important;
        margin: 0 0 13px !important;
    }
    .slt-hero-info>div:last-child {
        margin-bottom: 0 !important;
    }
    .slt-hero-info small {
        font-size: 9px !important;
    }
    .slt-hero-info strong {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    .slt-hero-line {
        display: none !important;
    }
    /* =====================================================
       DAY HEADER
       ===================================================== */
    .slt-day {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 55px !important;
        padding: 0 !important;
    }
    .slt-day-top {
        width: 100% !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 17px !important;
        margin-bottom: 22px !important;
    }
    .slt-number {
        width: 55px !important;
        min-width: 55px !important;
        height: 55px !important;
        font-size: 16px !important;
        flex-shrink: 0 !important;
    }
    .slt-number::before {
        width: 55px !important;
        height: 55px !important;
        left: 5px !important;
        top: 5px !important;
    }
    .slt-title {
        min-width: 0 !important;
        width: calc(100% - 72px) !important;
    }
    .slt-title span {
        font-size: 9px !important;
        letter-spacing: 2px !important;
        margin-bottom: 5px !important;
    }
    .slt-title h2 {
        width: 100% !important;
        font-size: 19px !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }
    /* =====================================================
       CONTENT
       ===================================================== */
    .slt-content-layout,
    .slt-day-reverse .slt-content-layout {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    /* =====================================================
       IMAGE
       ===================================================== */
    .slt-visual {
        position: relative !important;
        width: 100% !important;
        height: 320px !important;
        min-height: 320px !important;
        padding: 20px !important;
        overflow: hidden !important;
    }
    .slt-photo-frame {
        width: 78% !important;
        height: 275px !important;
        min-height: 275px !important;
        border-radius: 48% 48% 12px 12px !important;
        overflow: hidden !important;
    }
    .slt-photo-frame img {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    .slt-location {
        left: 10px !important;
        bottom: 25px !important;
        padding: 8px 11px !important;
        gap: 7px !important;
        font-size: 8px !important;
        letter-spacing: 1.5px !important;
    }
    .slt-location span {
        width: 22px !important;
        height: 22px !important;
        font-size: 8px !important;
    }
    .slt-vertical-text {
        right: -12px !important;
        font-size: 7px !important;
        letter-spacing: 2px !important;
    }
    /* =====================================================
       INFORMATION
       ===================================================== */
    .slt-information {
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 18px !important;
        overflow: hidden !important;
    }
    .slt-opening {
        width: 100% !important;
        font-size: 14px !important;
        line-height: 1.8 !important;
        margin: 0 0 24px !important;
    }
    /* =====================================================
       DAY 1 TIMELINE
       ===================================================== */
    .slt-schedule {
        width: 100% !important;
    }
    .slt-schedule-item {
        width: 100% !important;
        display: block !important;
        padding: 16px 0 !important;
    }
    .slt-schedule-item time {
        display: block !important;
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }
    .slt-schedule-item h3 {
        font-size: 15px !important;
        line-height: 1.45 !important;
        margin-bottom: 5px !important;
    }
    .slt-schedule-item p {
        font-size: 13px !important;
        line-height: 1.75 !important;
        margin: 0 !important;
    }
    /* =====================================================
       FINISH BOX
       ===================================================== */
    .slt-finish {
        width: 100% !important;
        display: block !important;
        padding: 14px 15px !important;
        margin-top: 22px !important;
        font-size: 12px !important;
        line-height: 1.7 !important;
    }
    .slt-finish strong {
        display: block !important;
        margin-bottom: 3px !important;
    }
    /* =====================================================
       MORNING / EVENING / AFTERNOON
       ===================================================== */
    .slt-morning,
    .slt-evening,
    .slt-afternoon {
        width: 100% !important;
        display: block !important;
        padding: 13px 15px !important;
        font-size: 13px !important;
        line-height: 1.75 !important;
        margin-bottom: 22px !important;
    }
    .slt-morning strong,
    .slt-evening strong,
    .slt-afternoon strong {
        display: block !important;
        margin-bottom: 2px !important;
    }
    /* =====================================================
       ACTIVITIES
       ===================================================== */
    .slt-activity-heading {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin: 25px 0 18px !important;
    }
    .slt-place {
        width: 100% !important;
        margin-bottom: 23px !important;
    }
    .slt-place h3 {
        font-size: 15px !important;
        line-height: 1.45 !important;
        margin-bottom: 5px !important;
    }
    .slt-place p {
        font-size: 13px !important;
        line-height: 1.8 !important;
        margin: 0 !important;
    }
    /* =====================================================
       OVERNIGHT
       ===================================================== */
    .slt-overnight {
        width: 100% !important;
        display: block !important;
        margin-top: 18px !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
    .slt-overnight strong {
        display: block !important;
        margin-bottom: 2px !important;
    }
    /* =====================================================
       TOUR END
       ===================================================== */
    .slt-tour-end {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 35px !important;
        font-size: 16px !important;
    }
    .slt-tour-end span {
        width: 30px !important;
        height: 1px !important;
        flex-shrink: 0 !important;
    }
}
/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */
@media (max-width: 380px) {
    .south-luxury-tour {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }
    .slt-hero {
        height: 480px !important;
        min-height: 480px !important;
    }
    .slt-hero-content {
        left: 17px !important;
        right: 17px !important;
    }
    .slt-hero h1 {
        font-size: 30px !important;
    }
    .slt-day-top {
        gap: 14px !important;
    }
    .slt-number {
        width: 50px !important;
        min-width: 50px !important;
        height: 50px !important;
    }
    .slt-number::before {
        width: 50px !important;
        height: 50px !important;
    }
    .slt-title {
        width: calc(100% - 64px) !important;
    }
    .slt-title h2 {
        font-size: 18px !important;
    }
    .slt-visual {
        height: 295px !important;
        min-height: 295px !important;
    }
    .slt-photo-frame {
        height: 250px !important;
        min-height: 250px !important;
    }
    .slt-information {
        padding: 22px 15px !important;
    }
}
</style>

<style>
    /* =========================================================
   SOUTH INDIA TOUR — PACKAGE DETAILS
   COMPLETE CSS
   FONT FAMILY: Raleway
   ========================================================= */


/* =========================================================
   GLOBAL / BOX SIZING
   ========================================================= */

.south-package-section,
.south-package-section *,
.south-package-section *::before,
.south-package-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.south-package-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 70px 20px;
    background: #f0f0eb;
    font-family: "Raleway", Sans-serif;
    color: #555e5a;
    overflow: hidden;
}

.south-package-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   PACKAGE MAIN HEADING
   ========================================================= */

.south-package-heading {
    width: 100%;
    margin: 0 0 40px;
    text-align: center;
}

.south-package-heading > span {
    display: block;
    margin: 0 0 10px;
    color: #b79a60;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.south-package-heading h2 {
    margin: 0;
    padding: 0;
    color: #102f28;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}

.south-package-heading h2 em {
    color: #17483d;
    font-style: normal;
    font-weight: 400;
}

.south-package-line {
    width: 50px;
    height: 2px;
    margin: 14px auto 0;
    background: #b79a60;
}


/* =========================================================
   HOTEL PACKAGE CARDS
   ========================================================= */

.south-package-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin: 0 0 48px;
}

.south-package-card {
    position: relative;
    width: 100%;
    padding: 30px 34px;
    background: #ffffff;
    border: 1px solid #dedfd9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.south-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(20, 40, 34, 0.08);
}

.south-package-featured {
    border-color: #b79a60;
}

.south-package-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #b79a60;
}


/* =========================================================
   PACKAGE CARD TOP
   ========================================================= */

.south-package-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 0 0 17px;
    margin: 0 0 20px;
    border-bottom: 1px solid #e4e4df;
}

.south-package-card-top > span {
    color: #17483d;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: right;
}

.south-package-stars {
    flex-shrink: 0;
    color: #b79a60;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 2px;
}


/* =========================================================
   PRICE
   ========================================================= */

.south-package-price {
    width: 100%;
}

.south-package-price small {
    display: block;
    margin: 0 0 6px;
    color: #8a928e;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 1px;
}

.south-package-price strong {
    display: block;
    margin: 0;
    color: #102f28;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.south-package-price p {
    margin: 7px 0 0;
    padding: 0;
    color: #555e5a;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   INCLUDED BOX
   ========================================================= */

.south-inclusion-box {
    width: 100%;
    margin: 0 0 30px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #dedfd9;
}


/* =========================================================
   INCLUDED HEADING
   ========================================================= */

.south-inclusion-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0 0 23px;
    margin: 0;
    border-bottom: 1px solid #dedfd9;
}

.south-inclusion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    background: #17483d;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.south-inclusion-heading > div:last-child {
    min-width: 0;
}

.south-inclusion-heading span,
.south-exclusion-heading span {
    display: block;
    margin: 0 0 5px;
    color: #b79a60;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.south-inclusion-heading h3,
.south-exclusion-heading h3 {
    margin: 0;
    padding: 0;
    color: #102f28;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   INCLUDED LIST
   ========================================================= */

.south-inclusion-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    width: 100%;
}

.south-inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeea;
}

.south-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    min-width: 26px;
    height: 26px;
    margin-top: 1px;
    border: 1px solid #b79a60;
    color: #17483d;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.south-inclusion-item p {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #555e5a;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   EXCLUSION BOX
   ========================================================= */

.south-exclusion-box {
    width: 100%;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #dedfd9;
    border-top: 3px solid #17483d;
}


/* =========================================================
   EXCLUSION HEADING
   ========================================================= */

.south-exclusion-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0 0 23px;
    margin: 0;
    border-bottom: 1px solid #dedfd9;
}

.south-exclusion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    background: #102f28;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
}

.south-exclusion-heading > div:last-child {
    min-width: 0;
}


/* =========================================================
   EXCLUSION LIST
   ========================================================= */

.south-exclusion-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    width: 100%;
}

.south-exclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeea;
}

.south-exclusion-item > span {
    min-width: 26px;
    margin-top: 1px;
    color: #b79a60;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.south-exclusion-item p {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #555e5a;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .south-package-section {
        padding: 60px 15px;
    }

    .south-package-cards {
        gap: 18px;
    }

    .south-package-card {
        padding: 27px;
    }

    .south-inclusion-box,
    .south-exclusion-box {
        padding: 28px;
    }

    .south-inclusion-list,
    .south-exclusion-list {
        column-gap: 25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .south-package-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 50px 10px !important;
        margin: 0 !important;
        overflow-x: hidden !important;
    }

    .south-package-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }


    /* -----------------------------------------
       MAIN HEADING
       ----------------------------------------- */

    .south-package-heading {
        margin-bottom: 30px !important;
    }

    .south-package-heading > span {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
    }

    .south-package-heading h2 {
        font-size: 25px !important;
        line-height: 1.3 !important;
    }


    /* -----------------------------------------
       PACKAGE CARDS
       ----------------------------------------- */

    .south-package-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
        margin-bottom: 35px !important;
    }

    .south-package-card {
        width: 100% !important;
        padding: 23px 20px !important;
    }

    .south-package-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .south-package-card-top {
        gap: 10px !important;
        padding-bottom: 15px !important;
        margin-bottom: 18px !important;
    }

    .south-package-card-top > span {
        font-size: 13px !important;
        letter-spacing: 0.7px !important;
    }

    .south-package-stars {
        font-size: 13px !important;
        letter-spacing: 1px !important;
    }

    .south-package-price small {
        font-size: 13px !important;
    }

    .south-package-price strong {
        font-size: 28px !important;
    }

    .south-package-price p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }


    /* -----------------------------------------
       INCLUDED / EXCLUDED BOX
       ----------------------------------------- */

    .south-inclusion-box,
    .south-exclusion-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 22px 16px !important;
        margin-bottom: 17px !important;
    }


    /* -----------------------------------------
       BOX HEADINGS
       ----------------------------------------- */

    .south-inclusion-heading,
    .south-exclusion-heading {
        align-items: flex-start !important;
        gap: 11px !important;
        padding-bottom: 18px !important;
    }

    .south-inclusion-icon,
    .south-exclusion-icon {
        width: 39px !important;
        min-width: 39px !important;
        height: 39px !important;
        flex-shrink: 0 !important;
    }

    .south-inclusion-heading span,
    .south-exclusion-heading span {
        font-size: 13px !important;
        letter-spacing: 0.7px !important;
    }

    .south-inclusion-heading h3,
    .south-exclusion-heading h3 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }


    /* -----------------------------------------
       MOBILE LISTS
       ----------------------------------------- */

    .south-inclusion-list,
    .south-exclusion-list {
        display: block !important;
        width: 100% !important;
        column-gap: 0 !important;
    }


    /* -----------------------------------------
       INCLUDED ITEMS
       ----------------------------------------- */

    .south-inclusion-item {
        display: flex !important;
        width: 100% !important;
        gap: 10px !important;
        padding: 13px 0 !important;
    }

    .south-check {
        width: 26px !important;
        min-width: 26px !important;
        height: 26px !important;
        flex-shrink: 0 !important;
        font-size: 13px !important;
    }

    .south-inclusion-item p {
        width: calc(100% - 36px) !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }


    /* -----------------------------------------
       EXCLUDED ITEMS
       ----------------------------------------- */

    .south-exclusion-item {
        display: flex !important;
        width: 100% !important;
        gap: 10px !important;
        padding: 13px 0 !important;
    }

    .south-exclusion-item > span {
        min-width: 26px !important;
        flex-shrink: 0 !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .south-exclusion-item p {
        width: calc(100% - 36px) !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .south-package-section {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .south-package-card {
        padding: 21px 17px !important;
    }

    .south-package-price strong {
        font-size: 28px !important;
    }

    .south-inclusion-box,
    .south-exclusion-box {
        padding: 20px 14px !important;
    }

    .south-inclusion-heading,
    .south-exclusion-heading {
        gap: 9px !important;
    }

    .south-inclusion-heading h3,
    .south-exclusion-heading h3 {
        font-size: 20px !important;
    }

    .south-inclusion-item p,
    .south-exclusion-item p {
        font-size: 13px !important;
    }

}