/* =========================================================
   KALAPANI HOLIDAYS
   DESTINATION PAGES
   Havelock Island
   ========================================================= */


/* =========================================================
   HAVELOCK - TOP PLACES TO VISIT
   ========================================================= */

.kh-havelock-places {
    padding: 110px 0;
    background: #f6f9fd;
}

.kh-havelock-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.kh-havelock-section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.kh-havelock-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #10a9ed;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.kh-havelock-section-heading h2 {
    margin: 0 0 18px;
    color: #071b36;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
}

.kh-havelock-section-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #58708d;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   PLACES GRID
   ========================================================= */

.kh-havelock-places-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}


/* =========================================================
   PLACE CARD
   ========================================================= */

.kh-havelock-place-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2eaf2;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(7, 27, 54, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.kh-havelock-place-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 27, 54, 0.12);
}


/* =========================================================
   PLACE IMAGE
   ========================================================= */

.kh-havelock-place-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.kh-havelock-place-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kh-havelock-place-card:hover .kh-havelock-place-image img {
    transform: scale(1.05);
}


/* =========================================================
   PLACE CONTENT
   ========================================================= */

.kh-havelock-place-content {
    padding: 30px;
}

.kh-havelock-place-number {
    display: block;
    margin-bottom: 8px;
    color: #10a9ed;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kh-havelock-place-content h3 {
    margin: 0 0 12px;
    color: #071b36;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.kh-havelock-place-content p {
    margin: 0 0 20px;
    color: #60758e;
    font-size: 16px;
    line-height: 1.75;
}

.kh-havelock-place-highlight {
    padding-top: 18px;
    border-top: 1px solid #e5ebf1;
    color: #087fc1;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .kh-havelock-places {
        padding: 80px 0;
    }

    .kh-havelock-places-grid {
        grid-template-columns: 1fr;
    }

    .kh-havelock-place-image {
        height: 300px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .kh-havelock-container {
        width: min(100% - 30px, 1180px);
    }

    .kh-havelock-places {
        padding: 65px 0;
    }

    .kh-havelock-section-heading {
        margin-bottom: 35px;
    }

    .kh-havelock-section-heading h2 {
        font-size: 34px;
    }

    .kh-havelock-section-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .kh-havelock-place-image {
        height: 230px;
    }

    .kh-havelock-place-content {
        padding: 24px;
    }

    .kh-havelock-place-content h3 {
        font-size: 24px;
    }
}