/* =========================================================
   KASHI HOLIDAY
   FRESH RESPONSIVE HEADER + HERO
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Inter", Arial, sans-serif;

    background: #ffffff;
    color: #211814;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.khs-container {
    width: 100%;
    max-width: 1536px;

    margin: 0 auto;

    padding-left: 55px;
    padding-right: 55px;
}


/* =========================================================
   HEADER
========================================================= */

.khs-header {
    width: 100%;

    background: #fffaf1;
}


/* =========================================================
   TOP HEADER
========================================================= */

.khs-top-header {
    width: 100%;

    min-height: 77px;

    background: #fffaf1;

    border-top: 1px solid #ddd5c8;
    border-bottom: 1px solid #eadfce;
}


.khs-top-inner {
    min-height: 77px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.khs-logo {
    flex-shrink: 0;
}

.khs-logo a {
    display: block;
}

.khs-logo img {
    display: block;

    width: 205px;
    height: auto;

    max-width: 100%;
}


/* =========================================================
   DESKTOP CONTACT AREA
========================================================= */

.khs-desktop-contacts {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 48px;
}


.khs-contact-box {
    display: flex;

    align-items: center;

    gap: 10px;

    white-space: nowrap;
}


.khs-contact-icon {
    width: 35px;
    height: 35px;

    min-width: 35px;

    border-radius: 50%;

    background: #ef8b0d;
    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;
}


.khs-contact-content {
    display: flex;

    flex-direction: column;

    line-height: 1.15;
}


.khs-contact-content strong {
    display: block;

    font-size: 11px;

    font-weight: 700;

    color: #211814;

    white-space: nowrap;
}


.khs-contact-content small {
    display: block;

    margin-top: 4px;

    font-size: 9px;

    color: #756c63;

    white-space: nowrap;
}


/* =========================================================
   MOBILE ICONS
   HIDDEN BY DEFAULT
========================================================= */

.khs-mobile-icons {
    display: none;
}


/* =========================================================
   MOBILE HAMBURGER
   HIDDEN BY DEFAULT
========================================================= */

.khs-mobile-menu {
    display: none;

    border: 0;

    padding: 0;

    background: transparent;

    cursor: pointer;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.khs-navigation {
    width: 100%;

    height: 43px;

    background: #fffaf1;

    border-bottom: 1px solid #eadfce;
}


.khs-nav-inner {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: flex-end;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.khs-desktop-menu {
    height: 100%;

    display: flex;

    align-items: stretch;
}


.khs-desktop-menu a {
    height: 100%;

    padding-left: 18px;
    padding-right: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #211814;

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.khs-desktop-menu a:hover,
.khs-desktop-menu a.khs-active {
    background: #8d1118;

    color: #ffffff;
}


/* =========================================================
   BOOK NOW
========================================================= */

.khs-book-button {
    height: 30px;

    min-width: 105px;

    margin-left: 28px;

    padding-left: 16px;
    padding-right: 16px;

    border-radius: 18px;

    background: #8d1118;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 10px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.khs-book-button:hover {
    background: #701017;

    transform: translateY(-1px);
}


.khs-book-button i {
    font-size: 9px;
}


/* =========================================================
   HERO
========================================================= */

.khs-hero {
    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    line-height: 0;
}


.khs-hero img {
    width: 100%;
    height: auto;

    display: block;

    margin: 0;
    padding: 0;
}


/* =========================================================
   LAPTOP
========================================================= */

@media screen and (max-width: 1200px) {

    .khs-container {
        padding-left: 30px;
        padding-right: 30px;
    }


    .khs-desktop-contacts {
        gap: 25px;
    }


    .khs-logo img {
        width: 190px;
    }


    .khs-desktop-menu a {
        padding-left: 11px;
        padding-right: 11px;

        font-size: 10px;
    }


    .khs-book-button {
        margin-left: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .khs-top-header {
        min-height: auto;

        padding-top: 10px;
        padding-bottom: 10px;
    }


    .khs-top-inner {
        width: 100%;

        min-height: auto;

        padding-left: 8px;
        padding-right: 8px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 10px;
    }


    /* -----------------------------------------
       LOGO
    ----------------------------------------- */

    .khs-logo {
        width: 100%;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .khs-logo img {
        width: 170px;

        max-width: 170px;

        height: auto;
    }


    /* -----------------------------------------
       HIDE DESKTOP CONTACT
    ----------------------------------------- */

    .khs-desktop-contacts {
        display: none !important;
    }


    /* -----------------------------------------
       MOBILE ICON ROW

       ☰  PHONE  WHATSAPP  EMAIL  LOCATION
    ----------------------------------------- */

    .khs-mobile-icons {
        width: 100%;

        display: flex !important;

        align-items: center;
        justify-content: center;

        gap: 25px;

        margin: 0;

        padding: 0;
    }


    /* -----------------------------------------
       ALL MOBILE ICONS
    ----------------------------------------- */

    .khs-mobile-icons > a,
    .khs-mobile-icons > .khs-mobile-menu {

        width: 46px;
        height: 46px;

        min-width: 46px;

        flex: 0 0 46px;

        display: flex;

        align-items: center;
        justify-content: center;

        margin: 0;
        padding: 0;
    }


    /* -----------------------------------------
       PHONE / WHATSAPP / EMAIL / LOCATION
    ----------------------------------------- */

    .khs-mobile-icons > a {

        border: none;

        border-radius: 50%;

        background: #ef8b0d;

        color: #ffffff;

        font-size: 14px;

        transition:
            transform 0.2s ease,
            background 0.2s ease;
    }


    .khs-mobile-icons > a:active {
        transform: scale(0.94);
    }


    /* -----------------------------------------
       HAMBURGER
    ----------------------------------------- */

    .khs-mobile-icons > .khs-mobile-menu {

        border: 1px solid #cfc3b2;

        border-radius: 4px;

        background: #fffaf1;

        color: #8d1118;

        font-size: 17px;

        cursor: pointer;
    }


    /* -----------------------------------------
       COMPLETELY REMOVE DESKTOP NAV
    ----------------------------------------- */

    .khs-navigation {
        display: none !important;
    }


    .khs-desktop-menu {
        display: none !important;
    }


    .khs-book-button {
        display: none !important;
    }


    .khs-nav-inner {
        display: none !important;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .khs-hero {
        width: 100%;

        margin: 0;
        padding: 0;

        overflow: hidden;

        line-height: 0;
    }


    .khs-hero img {
        width: 100%;

        height: auto;

        display: block;

        margin: 0;
        padding: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .khs-top-header {
        padding-top: 9px;
        padding-bottom: 9px;
    }


    .khs-logo img {
        width: 165px;

        max-width: 165px;
    }


    .khs-mobile-icons {
        gap: 11px;
    }


    .khs-mobile-icons > a,
    .khs-mobile-icons > .khs-mobile-menu {

        width: 34px;
        height: 34px;

        min-width: 34px;

        flex-basis: 34px;
    }


    .khs-mobile-icons > a {
        font-size: 13px;
    }


    .khs-mobile-icons > .khs-mobile-menu {
        font-size: 16px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media screen and (max-width: 360px) {

    .khs-top-inner {
        padding-left: 5px;
        padding-right: 5px;
    }


    .khs-logo img {
        width: 155px;

        max-width: 155px;
    }


    .khs-mobile-icons {
        gap: 8px;
    }


    .khs-mobile-icons > a,
    .khs-mobile-icons > .khs-mobile-menu {

        width: 32px;
        height: 32px;

        min-width: 32px;

        flex-basis: 32px;
    }


    .khs-mobile-icons > a {
        font-size: 12px;
    }


    .khs-mobile-icons > .khs-mobile-menu {
        font-size: 15px;
    }

}
@media screen and (max-width: 768px) {

    .khs-mobile-icons {
        gap: 22px;
    }

    .khs-mobile-icons > a,
    .khs-mobile-icons > .khs-mobile-menu {
        width: 36px;
        height: 36px;

        min-width: 36px;
        flex-basis: 36px;
    }

    .khs-mobile-icons > a {
        font-size: 14px;
    }

    .khs-mobile-icons > .khs-mobile-menu {
        font-size: 15px;
    }

}


/* =========================================================
   KASHI HOLIDAY
   OUR TAXI SERVICES SECTION
   FULL RESPONSIVE CSS
========================================================= */


/* =========================================================
   MAIN SERVICES SECTION
========================================================= */

.khs-services {
    position: relative;

    width: 100%;

    height: 470px;
    min-height: 470px;


    margin: 0;
    padding: 0;
  margin-bottom: 40px;
    overflow: hidden;

    background-color: #f5e6c8;

    background-image: url("https://kashiholiday.com/images/services/taxi-services-bg.png?v=20260924-5");

    background-repeat: no-repeat;

    background-position: center top;

    background-size: 100% 100%;
}


/* =========================================================
   SERVICE CARDS WRAPPER
========================================================= */

.khs-service-cards {
    position: absolute;
    left: 45px;
    right: 285px;
    top: 145px;
    bottom: 40px;


    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;

    z-index: 10;
}
/* =========================================================
   SERVICE CARD
========================================================= */

.khs-service-card {

    position: relative;

    width: 100%;

    height: 290px;

    min-width: 0;

    overflow: hidden;

    background: rgba(250, 248, 240, 0.97);

    border-radius: 7px;

    box-shadow:
        0 3px 10px rgba(50, 30, 10, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* CARD HOVER */

.khs-service-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 7px 18px rgba(50, 30, 10, 0.25);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.khs-service-image {

    width: 100%;

    height: 200px;

    overflow: hidden;

    background: #ddd;
}


.khs-service-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 0.35s ease;
}


/* IMAGE HOVER */

.khs-service-card:hover
.khs-service-image img {

    transform: scale(1.04);
}


/* =========================================================
   ORANGE SERVICE ICON
========================================================= */

.khs-service-icon {

    position: relative;

    z-index: 5;

    width: 38px;
    height: 38px;

    min-width: 38px;

    margin-top: -19px;
    margin-left: 10px;

    border: 2px solid #f8f5ed;

    border-radius: 50%;

    background: #ef8b0d;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 15px;

    line-height: 1;

    box-shadow:
        0 2px 5px rgba(60, 30, 10, 0.15);
}


/* =========================================================
   CARD TEXT AREA
========================================================= */

.khs-service-text {

    width: 100%;

    padding:
        5px
        11px
        14px;
}


/* CARD TITLE */

.khs-service-text h3 {

    margin: 0 0 6px;

    padding: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 18px;

    line-height: 1.05;

    font-weight: 700;

    color: #24150e;
}


/* CARD DESCRIPTION */

.khs-service-text p {

    margin: 0;

    padding: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 9.5px;

    line-height: 1.4;

    font-weight: 400;

    color: #4c4038;
}


/* =========================================================
   LAPTOP
   1100px
========================================================= */

@media screen and (max-width: 1100px) {

    .khs-services {

        height: 370px;
        min-height: 370px;

    }


    .khs-service-cards {

        left: 30px;

        right: 220px;

        bottom: 22px;

        gap: 10px;

    }


    .khs-service-card {

        height: 240px;

    }


    .khs-service-image {

        height: 135px;

    }


    .khs-service-text h3 {

        font-size: 16px;

    }


    .khs-service-text p {

        font-size: 9px;

    }

}


/* =========================================================
   TABLET
   768px
========================================================= */

@media screen and (max-width: 768px) {

    /* -----------------------------------------
       SECTION
    ----------------------------------------- */

    .khs-services {

        height: auto;

        min-height: 0;

        padding:
            70px
            15px
            25px;

        background-position:
            center top;

        background-size:
            auto 100%;

    }


    /* -----------------------------------------
       CARD WRAPPER
    ----------------------------------------- */

    .khs-service-cards {

        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;

    }


    /* -----------------------------------------
       CARD
    ----------------------------------------- */

    .khs-service-card {

        height: 245px;

    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .khs-service-image {

        height: 130px;

    }


    /* -----------------------------------------
       ICON
    ----------------------------------------- */

    .khs-service-icon {

        width: 36px;
        height: 36px;

        min-width: 36px;

        margin-top: -18px;

        margin-left: 9px;

        font-size: 14px;

    }


    /* -----------------------------------------
       TEXT
    ----------------------------------------- */

    .khs-service-text {

        padding:
            5px
            10px
            12px;

    }


    .khs-service-text h3 {

        font-size: 16px;

    }


    .khs-service-text p {

        font-size: 9px;

        line-height: 1.4;

    }

}


/* =========================================================
   MOBILE
   480px
========================================================= */

@media screen and (max-width: 480px) {

    /* -----------------------------------------
       SECTION
    ----------------------------------------- */

    .khs-services {

        padding:
            60px
            10px
            20px;

        background-position:
            center top;

        background-size:
            auto 100%;

    }


    /* -----------------------------------------
       CARDS
    ----------------------------------------- */

    .khs-service-cards {

        grid-template-columns:
            1fr;

        gap: 12px;

    }


    /* -----------------------------------------
       CARD
    ----------------------------------------- */

    .khs-service-card {

        height: 245px;

        border-radius: 7px;

    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .khs-service-image {

        height: 135px;

    }


    /* -----------------------------------------
       ICON
    ----------------------------------------- */

    .khs-service-icon {

        width: 37px;
        height: 37px;

        min-width: 37px;

        margin-top: -18px;

        margin-left: 10px;

        font-size: 14px;

    }


    /* -----------------------------------------
       TEXT
    ----------------------------------------- */

    .khs-service-text {

        padding:
            5px
            10px
            12px;

    }


    .khs-service-text h3 {

        font-size: 17px;

    }


    .khs-service-text p {

        font-size: 9px;

        line-height: 1.4;

    }

}


/* =========================================================
   VERY SMALL MOBILE
   360px
========================================================= */

@media screen and (max-width: 360px) {

    .khs-services {

        padding:
            55px
            8px
            18px;

    }


    .khs-service-cards {

        gap: 10px;

    }


    .khs-service-card {

        height: 230px;

    }


    .khs-service-image {

        height: 125px;

    }


    .khs-service-icon {

        width: 34px;
        height: 34px;

        min-width: 34px;

        margin-top: -17px;

        margin-left: 8px;

        font-size: 13px;

    }


    .khs-service-text {

        padding:
            4px
            9px
            10px;

    }


    .khs-service-text h3 {

        font-size: 15px;

    }


    .khs-service-text p {

        font-size: 8px;

        line-height: 1.35;

    }

}

/* =========================================================
   KASHI HOLIDAY FOOTER
========================================================= */

.khs-footer {
    width: 100%;

    margin: 0;

    background:
        linear-gradient(
            135deg,
            #fff8e9 0%,
            #f8ead0 50%,
            #f3dfbc 100%
        );

    color: #302019;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.khs-footer-main {
    position: relative;

    width: 100%;

    padding: 45px 45px 35px;

    border-top: 4px solid #8d1118;

    overflow: hidden;
}


/* subtle decorative background */

.khs-footer-main::before {
    content: "ॐ";

    position: absolute;

    right: 60px;
    bottom: -55px;

    font-family:
        Georgia,
        serif;

    font-size: 180px;

    color: rgba(141, 17, 24, 0.045);

    pointer-events: none;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.khs-footer-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.15fr
        1.25fr;

    gap: 55px;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.khs-footer-logo {
    margin-bottom: 15px;
}


.khs-footer-logo img {
    width: 190px;

    height: auto;

    display: block;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.khs-footer-about p {
    max-width: 330px;

    margin: 0;

    font-size: 12px;

    line-height: 1.65;

    color: #62534a;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.khs-footer-column h3 {
    position: relative;

    margin: 3px 0 18px;

    padding-bottom: 9px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 22px;

    line-height: 1;

    font-weight: 700;

    color: #8d1118;
}


.khs-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 3px;

    background: #ef8b0d;

    border-radius: 3px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.khs-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.khs-footer-column li {
    margin-bottom: 9px;
}


.khs-footer-column li a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 11px;

    color: #4d4038;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.khs-footer-column li a i {
    color: #ef8b0d;

    font-size: 8px;
}


.khs-footer-column li a:hover {
    color: #8d1118;

    transform: translateX(3px);
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.khs-footer-social {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;
}


.khs-footer-social a {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #8d1118;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.khs-footer-social a:hover {
    background: #ef8b0d;

    transform: translateY(-3px);
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.khs-footer-contact-item {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 15px;

    color: inherit;
}


.khs-footer-contact-icon {
    width: 34px;
    height: 34px;

    min-width: 34px;

    border-radius: 50%;

    background: #ef8b0d;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;
}


.khs-footer-contact-item > span:last-child {
    display: flex;

    flex-direction: column;
}


.khs-footer-contact-item strong {
    font-size: 11px;

    line-height: 1.2;

    color: #302019;
}


.khs-footer-contact-item small {
    margin-top: 3px;

    font-size: 9px;

    line-height: 1.2;

    color: #74665c;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.khs-footer-bottom {
    width: 100%;

    background: #7e1017;

    color: #ffffff;
}


.khs-footer-bottom-inner {
    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    padding: 13px 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.khs-footer-bottom p {
    margin: 0;

    font-size: 9px;

    line-height: 1.4;

    color: rgba(255,255,255,0.9);
}


.khs-footer-bottom strong {
    color: #ffffff;
}


/* =========================================================
   LAPTOP
========================================================= */

@media screen and (max-width: 1100px) {

    .khs-footer-main {
        padding-left: 30px;
        padding-right: 30px;
    }

    .khs-footer-container {
        grid-template-columns:
            1.3fr
            1fr
            1fr
            1.2fr;

        gap: 30px;
    }

    .khs-footer-logo img {
        width: 170px;
    }

    .khs-footer-bottom-inner {
        padding-left: 30px;
        padding-right: 30px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 768px) {

    .khs-footer-main {
        padding:
            35px
            25px
            25px;
    }

    .khs-footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            30px
            35px;
    }

    .khs-footer-about p {
        max-width: 100%;
    }

    .khs-footer-column h3 {
        font-size: 20px;
    }

    .khs-footer-bottom-inner {
        padding:
            12px
            25px;

        flex-direction: column;

        text-align: center;

        gap: 5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .khs-footer-main {
        padding:
            30px
            18px
            22px;
    }

    .khs-footer-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .khs-footer-logo img {
        width: 175px;
    }

    .khs-footer-about p {
        font-size: 11px;

        line-height: 1.6;
    }

    .khs-footer-column h3 {
        font-size: 21px;

        margin-bottom: 14px;
    }

    .khs-footer-column li {
        margin-bottom: 8px;
    }

    .khs-footer-column li a {
        font-size: 11px;
    }

    .khs-footer-social {
        margin-top: 16px;
    }

    .khs-footer-bottom-inner {
        padding:
            12px
            15px;
    }

    .khs-footer-bottom p {
        font-size: 8.5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media screen and (max-width: 360px) {

    .khs-footer-main {
        padding:
            25px
            15px
            20px;
    }

    .khs-footer-logo img {
        width: 160px;
    }

    .khs-footer-column h3 {
        font-size: 19px;
    }

}