/* ==========================================================
   StayInKerala
   Keralam Hospitality Registry
========================================================== */

:root {
    --green: #1f5d3a;
    --green-dark: #16452b;
    --gold: #b68a3d;
    --bg: #f8f8f5;
    --white: #ffffff;
    --text: #2b2b2b;
    --muted: #6c6c6c;
    --radius: 16px;
    --shadow: 0 8px 30px rgba(0,0,0,.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}



/* ===========================
   Header
=========================== */

.sk-header {
    max-width: 1400px;
    margin: auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sk-logo-main {
    font-family: Georgia,serif;
    font-size: 46px;
    line-height: 1;
}

    .sk-logo-main span {
        color: var(--green);
        font-weight: 700;
    }

    .sk-logo-main em {
        color: #8fa28b;
        font-style: normal;
        margin: 0 8px;
        font-weight: 400;
    }

    .sk-logo-main strong {
        color: var(--gold);
        font-weight: 700;
    }

.sk-logo-sub {
    margin-top: 8px;
    letter-spacing: 4px;
    font-size: 12px;
    color: #777;
}



/* ===========================
   Navigation
=========================== */

.sk-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

    .sk-nav a {
        text-decoration: none;
        color: #333;
        font-size: 15px;
    }

        .sk-nav a:hover {
            color: var(--green);
        }

.sk-btn-dark {
    background: var(--green);
    color: white !important;
    padding: 12px 22px;
    border-radius: 10px;
}



/* ===========================
   Hero
=========================== */

.sk-hero {
    max-width: 1500px;
    margin: auto;
    padding: 85px 34px 55px;
}

.sk-hero-content {
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
    gap: 80px;
    align-items: center;
}

.sk-kicker {
    color: #1d5d38;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.sk-hero h1 {
    font-size: 66px;
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin: 0 0 28px;
    color: #20282d;
}

.sk-hero p {
    max-width: 700px;
    font-size: 21px;
    line-height: 1.8;
    color: #60666b;
    margin-bottom: 36px;
}

.sk-search-box {
    max-width: 680px;
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    border: 1px solid rgba(0,0,0,.06);
}

    .sk-search-box input {
        flex: 1;
        border: 0;
        padding: 22px 24px;
        font-size: 17px;
        outline: none;
    }

    .sk-search-box button {
        border: 0;
        background: #0f4a2c;
        color: white;
        padding: 0 42px;
        font-weight: 700;
        cursor: pointer;
    }

.sk-popular-searches {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: #6d756f;
    font-size: 14px;
}

    .sk-popular-searches span {
        font-weight: 700;
        color: #313b35;
    }

    .sk-popular-searches a {
        text-decoration: none;
        color: #1d5d38;
        background: #edf5ee;
        padding: 7px 12px;
        border-radius: 999px;
    }

.sk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

    .sk-hero-actions a {
        text-decoration: none;
        color: #0f4a2c;
        background: #fff;
        padding: 15px 22px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,.08);
        font-weight: 700;
    }

    .sk-hero-actions .sk-action-dark {
        background: #0f4a2c;
        color: #fff;
    }

.sk-hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,.14);
}

@media(max-width:1100px) {
    .sk-hero-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sk-hero h1 {
        font-size: 48px;
    }

    .sk-hero-image img {
        height: 360px;
    }
}

@media(max-width:650px) {
    .sk-hero {
        padding: 55px 20px 35px;
    }

    .sk-search-box {
        flex-direction: column;
    }

        .sk-search-box button {
            padding: 18px;
        }
}



/* ===========================
   Search
=========================== */

.sk-search-box {
    margin-top: 40px;
    display: flex;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .sk-search-box input {
        flex: 1;
        padding: 22px;
        border: none;
        font-size: 18px;
    }

        .sk-search-box input:focus {
            outline: none;
        }

    .sk-search-box button {
        background: var(--green);
        color: white;
        border: none;
        padding: 0 40px;
        cursor: pointer;
    }



/* ===========================
   Buttons
=========================== */

.sk-hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

    .sk-hero-actions a {
        background: white;
        text-decoration: none;
        color: var(--green);
        padding: 16px 28px;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }



/* ===========================
   Stats
=========================== */

.sk-stats {
    max-width: 1300px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

    .sk-stats div {
        background: white;
        padding: 35px;
        text-align: center;
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .sk-stats strong {
        display: block;
        font-size: 42px;
        color: var(--green);
    }

    .sk-stats span {
        color: #666;
    }



/* ===========================
   Sections
=========================== */

.sk-section {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

    .sk-section h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }



/* ===========================
   Category Cards
=========================== */

.sk-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.sk-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: .25s;
}

.sk-category-card {
    background: #fff;
    border-radius: 18px;
    padding: 34px 28px;
    text-decoration: none;
    color: #20282d;
    box-shadow: 0 16px 35px rgba(0,0,0,.07);
    transition: .25s ease;
    border: 1px solid rgba(0,0,0,.04);
}

    .sk-category-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 45px rgba(0,0,0,.11);
        color: #0f4a2c;
    }

    .sk-category-card i {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #edf5ee;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #0f4a2c;
        margin-bottom: 22px;
    }

    .sk-category-card h3 {
        font-size: 24px;
        margin: 0 0 10px;
    }

    .sk-category-card p {
        color: #6d756f;
        margin: 0 0 18px;
    }

    .sk-category-card span {
        color: #0f4a2c;
        font-weight: 700;
    }

.sk-card:hover {
    transform: translateY(-5px);
}



/* ===========================
   District Cards
=========================== */

.sk-district-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.sk-district-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    text-decoration: none;
    color: #20282d;
    box-shadow: 0 14px 32px rgba(0,0,0,.07);
    display: grid;
    grid-template-columns: 44px 1fr 24px;
    align-items: center;
    gap: 16px;
    min-height: 100px;
    border: 1px solid rgba(0,0,0,.04);
    transition: .25s ease;
    overflow: hidden;
}

    .sk-district-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 45px rgba(0,0,0,.11);
        color: #0f4a2c;
    }

    .sk-district-card i {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #edf5ee;
        color: #0f4a2c;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .sk-district-card span {
        display: block;
        font-size: 19px;
        font-weight: 800;
        line-height: 1.2;
    }

    .sk-district-card small {
        display: block;
        color: #6d756f;
        margin-top: 5px;
        font-size: 13px;
    }

.sk-district-arrow {
    color: #0f4a2c;
    font-size: 20px !important;
    font-weight: 800 !important;
    text-align: right;
}

@media(max-width:1000px) {
    .sk-district-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:650px) {
    .sk-district-grid {
        grid-template-columns: 1fr;
    }
}
.sk-district-hero {
    max-width: 1300px;
    margin: 70px auto 40px;
    padding: 0 24px;
}

.sk-breadcrumb {
    color: #0f4a2c;
    text-decoration: none;
    font-weight: 700;
}

.sk-district-hero h1 {
    font-size: 64px;
    margin: 25px 0 15px;
    color: #20282d;
}

.sk-district-hero p {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.8;
    color: #60666b;
}

.sk-district-count {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0,0,0,.07);
}

    .sk-district-count strong {
        font-size: 34px;
        color: #0f4a2c;
    }

.sk-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
}

.sk-property-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 32px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.04);
}

    .sk-property-card h3 {
        margin: 0 0 8px;
        font-size: 22px;
    }

    .sk-property-card p {
        color: #0f4a2c;
        font-weight: 700;
        margin: 0 0 12px;
    }

    .sk-property-card small {
        display: block;
        color: #6d756f;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .sk-property-card a {
        color: #0f4a2c;
        font-weight: 800;
        text-decoration: none;
    }
/* ===========================
   CTA
=========================== */

.sk-cta-grid {
    max-width: 1300px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.sk-cta-card {
    background: #fff;
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.04);
}

    .sk-cta-card i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #edf5ee;
        color: #0f4a2c;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 24px;
    }

    .sk-cta-card h3 {
        margin: 0 0 14px;
        font-size: 26px;
    }

    .sk-cta-card p {
        color: #6d756f;
        line-height: 1.7;
    }

    .sk-cta-card a {
        display: inline-block;
        margin-top: 18px;
        background: #0f4a2c;
        color: #fff;
        text-decoration: none;
        padding: 14px 22px;
        border-radius: 12px;
        font-weight: 700;
    }

.sk-cta-grid div {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.sk-cta-grid h3 {
    font-size: 28px;
}

.sk-cta-grid a {
    display: inline-block;
    margin-top: 20px;
    background: var(--green);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
}



/* ===========================
   Responsive
=========================== */

@media(max-width:1000px) {

    .sk-header {
        flex-direction: column;
        gap: 25px;
    }

    .sk-hero-content {
        width: 100%;
    }

    .sk-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .sk-cta-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================
   GLOBAL HEADER
========================================================== */

.sk-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 2px 15px rgba(0,0,0,.04);
}

.sk-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.sk-brand {
    text-decoration: none;
    flex-shrink: 0;
}

.sk-brand-main {
    font-family: Georgia,serif;
    font-size: 46px;
    line-height: 1;
}

    .sk-brand-main span {
        color: #1d5d38;
        font-weight: 700;
    }

    .sk-brand-main em {
        font-style: normal;
        color: #8aa67e;
        font-weight: 700;
        margin: 0;
    }

    .sk-brand-main strong {
        color: #b5852d;
        font-weight: 700;
    }

.sk-brand-sub {
    margin-top: 3px;
    letter-spacing: 3px;
    font-size: 10px;
    color: #666;
}

/* ==========================================================
   NAVIGATION
========================================================== */

.sk-main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 20px;
}

    .sk-main-nav a {
        color: #333;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        position: relative;
        white-space: nowrap;
    }

        .sk-main-nav a:hover {
            color: #1d5d38;
        }

        .sk-main-nav a.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 100%;
            height: 3px;
            border-radius: 3px;
            background: #1d5d38;
        }

.sk-soon {
    background: #7ca15b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    margin-left: 4px;
}

/* ==========================================================
   FACEBOOK
========================================================== */

.sk-social {
    margin-left: auto;
    display: flex;
    align-items: center;
    border-left: 1px solid #ddd;
    padding-left: 24px;
}

    .sk-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #1877f2;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
    }

/* ==========================================================
   FOOTER
========================================================== */

.sk-footer {
    background: #0d4b2d;
    color: #fff;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.sk-footer {
    background: #0d4b2d;
    color: #fff;
    padding: 70px 0 30px;
    margin-top: 80px;
}

    .sk-footer .sk-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

.sk-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
}

.sk-footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 56px;
}

.sk-footer h4 {
    color: #d7a53d;
    margin-bottom: 20px;
}

.sk-footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 14px;
}

    .sk-footer a:hover {
        color: #d7a53d;
    }

.sk-footer p {
    color: #d8d8d8;
    line-height: 1.8;
}

.sk-fb-link {
    margin-top: 25px;
    line-height: 1.8;
}



/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.sk-footer-bottom {
    max-width: 1400px;
    margin: auto;
    padding: 25px 30px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d6d6d6;
}

    .sk-footer-bottom span {
        color: #9fb0a3;
        font-size: 14px;
    }



/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1000px) {

    .sk-header-inner {
        flex-direction: column;
        gap: 20px;
    }

    .sk-main-nav {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }

    .sk-footer-inner {
        grid-template-columns: 1fr;
    }

    .sk-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.sk-hero {
    max-width: 1400px;
    margin: auto;
    padding: 70px 30px 40px;
}

.sk-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.sk-hero-left {
    width: 100%;
}

.sk-hero h1 {
    font-size: 58px;
    line-height: 1.15;
    margin: 0 0 25px;
    color: #20282d;
}

.sk-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #60666b;
    margin-bottom: 35px;
}

.sk-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

@media(max-width:1000px) {
    .sk-hero-content {
        grid-template-columns: 1fr;
    }

    .sk-hero-image img {
        height: 300px;
    }
}

@media (max-width:900px) {

    .sk-header-inner {
        padding: 12px 18px;
    }

    .sk-brand-main {
        font-size: 34px;
    }

    .sk-brand-sub {
        display: none;
    }

    .sk-main-nav {
        display: none;
    }

    .sk-social {
        margin-left: auto;
        border-left: none;
        padding-left: 0;
    }

        .sk-social a {
            width: 36px;
            height: 36px;
            font-size: 18px;
        }
}

@media(max-width:700px) {

    .sk-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sk-search-box {
        flex-direction: column;
    }

        .sk-search-box button {
            padding: 18px;
        }

    .sk-stats {
        grid-template-columns: 1fr;
    }

    .sk-district-grid {
        grid-template-columns: 1fr;
    }

    .sk-hero h1 {
        font-size: 42px;
    }

    .sk-logo-main {
        font-size: 34px;
    }
}
/* ===========================
   FINAL HOMEPAGE POLISH
=========================== */

.sk-section {
    max-width: 1300px;
    margin: 90px auto;
    padding: 0 24px;
}

    .sk-section h2 {
        font-size: 38px;
        margin-bottom: 34px;
        letter-spacing: -0.5px;
    }

.sk-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 28px;
}

.sk-category-card {
    min-height: 190px;
}

.sk-district-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sk-district-card {
    min-height: 92px;
}

    .sk-district-card span {
        font-size: 18px;
    }

    .sk-district-card small {
        font-size: 12px;
    }

.sk-cta-grid {
    margin-top: 90px;
}
/* ===========================
   Property Details Page
=========================== */

.sk-property-hero {
    max-width: 1300px;
    margin: 60px auto 30px;
    padding: 0 24px;
}

.sk-property-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
    color: #6d756f;
}

    .sk-property-breadcrumb a {
        color: #0f4a2c;
        text-decoration: none;
        font-weight: 700;
    }

.sk-property-hero-card {
    background: #fff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 42px;
    align-items: center;
}

.sk-status-badge {
    display: inline-block;
    background: #edf5ee;
    color: #0f4a2c;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 20px;
}

.sk-property-hero h1 {
    font-size: 54px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #20282d;
}

.sk-property-meta {
    font-size: 18px;
    color: #0f4a2c;
    font-weight: 800;
}

.sk-property-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #60666b;
    max-width: 680px;
}

.sk-property-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

    .sk-property-actions a {
        background: #0f4a2c;
        color: #fff;
        padding: 14px 22px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 800;
    }

        .sk-property-actions a:nth-child(n+2) {
            background: #fff;
            color: #0f4a2c;
            border: 1px solid rgba(15,74,44,.2);
        }

.sk-property-placeholder {
    min-height: 320px;
    background: linear-gradient(135deg,#edf5ee,#ffffff);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0f4a2c;
    text-align: center;
}

    .sk-property-placeholder i {
        font-size: 72px;
        margin-bottom: 18px;
    }

.sk-property-layout {
    max-width: 1300px;
    margin: 32px auto 90px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 32px;
}

.sk-info-card,
.sk-claim-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 14px 35px rgba(0,0,0,.07);
    margin-bottom: 28px;
}

    .sk-info-card h2,
    .sk-claim-card h3 {
        margin-top: 0;
        color: #20282d;
    }

    .sk-info-card p,
    .sk-claim-card p {
        color: #60666b;
        line-height: 1.8;
    }

    .sk-claim-card i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #edf5ee;
        color: #0f4a2c;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .sk-claim-card a {
        display: block;
        text-align: center;
        background: #0f4a2c;
        color: #fff;
        text-decoration: none;
        padding: 16px 22px;
        border-radius: 12px;
        font-weight: 800;
        margin-top: 24px;
    }

@media(max-width:900px) {
    .sk-property-hero-card,
    .sk-property-layout {
        grid-template-columns: 1fr;
    }

    .sk-property-hero h1 {
        font-size: 38px;
    }
}
/* Property Information */

.sk-property-info {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 24px;
    margin-top: 28px;
}

    .sk-property-info div {
        padding: 18px;
        background: #f8faf8;
        border-radius: 14px;
    }

    .sk-property-info span {
        display: block;
        font-size: 12px;
        letter-spacing: 1px;
        color: #7a7a7a;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .sk-property-info strong {
        display: block;
        font-size: 17px;
        color: #20282d;
        line-height: 1.5;
    }

    .sk-property-info a {
        color: #0f4a2c;
        text-decoration: none;
        font-weight: 700;
    }
/* Booking Links */

.sk-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 18px;
    margin-top: 24px;
}

    .sk-booking-grid a,
    .sk-booking-grid div {
        background: #f8faf8;
        border-radius: 14px;
        padding: 18px;
        text-decoration: none;
        color: #20282d;
        font-weight: 800;
    }

    .sk-booking-grid span {
        display: block;
        margin-top: 8px;
        font-size: 13px;
        color: #6d756f;
        font-weight: 600;
    }
/* Traveller Signals */

.sk-signal-box {
    margin-top: 24px;
    background: #edf5ee;
    border-radius: 16px;
    padding: 22px;
    color: #0f4a2c;
}

    .sk-signal-box strong {
        display: block;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .sk-signal-box span {
        color: #50685a;
    }
/* Traveller Experiences */

.sk-experience-list {
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

    .sk-experience-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 12px 0;
        color: #24523b;
        font-weight: 600;
    }

    .sk-experience-list i {
        color: #0f4a2c;
        font-size: 18px;
        width: 20px;
    }

.sk-signal-box small {
    display: block;
    margin-top: 18px;
    color: #6d756f;
    font-size: 13px;
}
.sk-claim-note {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #6d756f;
    font-weight: 600;
}
/* Digital Presence */

.sk-digital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 18px;
    margin-top: 24px;
}

.sk-digital-item {
    background: #f8faf8;
    border-radius: 15px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid rgba(0,0,0,.04);
}

    .sk-digital-item i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #edf5ee;
        color: #0f4a2c;
        font-size: 20px;
        flex-shrink: 0;
    }

    .sk-digital-item strong {
        display: block;
        margin-bottom: 5px;
        color: #20282d;
    }

    .sk-digital-item span,
    .sk-digital-item a {
        color: #6d756f;
        font-size: 14px;
        text-decoration: none;
    }

    .sk-digital-item.available {
        border-color: rgba(15,74,44,.20);
    }

        .sk-digital-item.available i {
            background: #0f4a2c;
            color: #fff;
        }

/* Location / Map */

.sk-map-placeholder {
    margin-top: 24px;
    min-height: 260px;
    border-radius: 18px;
    background: linear-gradient(135deg,#edf5ee,#ffffff);
    border: 1px dashed rgba(15,74,44,.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0f4a2c;
}

    .sk-map-placeholder i {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .sk-map-placeholder span {
        font-weight: 800;
    }
/* ==========================================================
   CLAIM PROPERTY
========================================================== */

.sk-claim-page {
    max-width: 760px;
    margin: 70px auto 100px;
    padding: 0 24px;
}

.sk-claim-main {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

    .sk-claim-main h1 {
        margin: 18px 0 16px;
        font-size: 42px;
        color: #20282d;
    }

    .sk-claim-main > p {
        color: #60666b;
        line-height: 1.8;
    }

.sk-claim-property-box {
    margin: 34px 0;
    padding: 24px;
    background: #f8faf8;
    border-left: 5px solid #0f4a2c;
    border-radius: 16px;
}

    .sk-claim-property-box strong {
        display: block;
        font-size: 24px;
        color: #20282d;
        margin-bottom: 8px;
    }

    .sk-claim-property-box span {
        color: #0f4a2c;
        font-weight: 700;
    }

.sk-claim-form {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

    .sk-claim-form label {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-weight: 700;
        color: #20282d;
    }

    .sk-claim-form input,
    .sk-claim-form select {
        padding: 16px;
        border: 1px solid #d9dfdb;
        border-radius: 12px;
        font-size: 16px;
        transition: .2s;
    }

        .sk-claim-form input:focus,
        .sk-claim-form select:focus {
            outline: none;
            border-color: #0f4a2c;
            box-shadow: 0 0 0 3px rgba(15,74,44,.08);
        }

    .sk-claim-form button {
        background: #0f4a2c;
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 18px;
        font-size: 17px;
        font-weight: 800;
        cursor: pointer;
        transition: .2s;
    }

        .sk-claim-form button:hover {
            background: #14653b;
        }

    .sk-claim-form small {
        display: block;
        text-align: center;
        color: #6d756f;
        font-size: 13px;
        margin-top: 4px;
    }

.sk-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #edf5ee;
    color: #0f4a2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

@media(max-width:768px) {

    .sk-claim-main {
        padding: 30px;
    }

        .sk-claim-main h1 {
            font-size: 34px;
        }
}
.sk-claim-form textarea {
    padding: 16px;
    border: 1px solid #d9dfdb;
    border-radius: 12px;
    font-size: 16px;
    resize: vertical;
    font-family: inherit;
}

    .sk-claim-form textarea:focus {
        outline: none;
        border-color: #0f4a2c;
        box-shadow: 0 0 0 3px rgba(15,74,44,.08);
    }
.sk-stat-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: #20282d;
}

    .sk-stat-card strong {
        display: block;
        font-size: 42px;
        color: var(--green);
    }

    .sk-stat-card span {
        color: #666;
    }

.sk-admin-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,0,.07);
}

.sk-admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

    .sk-admin-table th,
    .sk-admin-table td {
        padding: 16px;
        border-bottom: 1px solid #eef1ef;
        text-align: left;
        font-size: 14px;
    }

    .sk-admin-table th {
        background: #f8faf8;
        color: #0f4a2c;
        font-weight: 800;
    }

    .sk-admin-table td strong {
        color: #0f4a2c;
    }
.sk-form-group {
    margin-bottom: 24px;
}

    .sk-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #154734;
    }

.sk-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9e3db;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    box-sizing: border-box;
}

    .sk-input:focus {
        outline: none;
        border-color: #1c7c54;
        box-shadow: 0 0 0 3px rgba(28,124,84,.12);
    }

.sk-btn-primary {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    background: #1c7c54;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

    .sk-btn-primary:hover {
        background: #176746;
    }
.sk-page-actions {
    margin: 20px 0 30px;
}

.sk-btn-secondary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #f3f6f4;
    color: #154734;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #d7e3dc;
    transition: .2s;
}

    .sk-btn-secondary:hover {
        background: #154734;
        color: #fff;
    }
.sk-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.sk-btn-danger {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #b42318;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #b42318;
    cursor: pointer;
}
.sk-status-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 14px;
    margin-top: 20px;
}

    .sk-status-timeline div {
        background: #f3f6f4;
        border: 1px solid #d7e3dc;
        border-radius: 14px;
        padding: 18px;
        color: #6d756f;
        font-weight: 700;
    }

        .sk-status-timeline div span {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #d7e3dc;
            color: #154734;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            font-size: 13px;
        }

        .sk-status-timeline div.active {
            background: #edf5ee;
            color: #154734;
            border-color: #1c7c54;
        }

        .sk-status-timeline div.success {
            background: #e9f8ef;
            border-color: #1c7c54;
        }

        .sk-status-timeline div.warning {
            background: #fff7e6;
            border-color: #d99a00;
            color: #7a5200;
        }

        .sk-status-timeline div.danger {
            background: #fff0f0;
            border-color: #b42318;
            color: #b42318;
        }
/* ==========================================================
   Footer
========================================================== */

.sk-footer {
    margin-top: 80px;
    background: #123b2a;
    color: #fff;
    padding: 60px 0 25px;
}

.sk-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4,1fr);
    gap: 40px;
}

.sk-footer-logo {
    width: 72px;
    height: auto;
    margin-bottom: 18px;
}

.sk-footer h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
}

.sk-footer h4 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
}

.sk-footer p {
    color: #d9e7df;
    line-height: 1.7;
    margin: 0 0 10px;
}

.sk-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sk-footer li {
    margin-bottom: 10px;
}

.sk-footer a {
    color: #d9e7df;
    text-decoration: none;
    transition: .2s;
}

    .sk-footer a:hover {
        color: #ffffff;
    }

.sk-footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #d9e7df;
    font-size: 14px;
}

.sk-powered-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .sk-powered-by span {
        color: #d9e7df;
    }

.sk-irn-logo {
    height: 34px;
    width: auto;
    transition: transform .2s;
}

    .sk-irn-logo:hover {
        transform: scale(1.08);
    }

/* ==========================================================
   Mobile
========================================================== */

@media (max-width:992px) {

    .sk-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width:640px) {

    .sk-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sk-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sk-powered-by {
        justify-content: center;
    }
}
.sk-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 420px;
}

    .sk-hero-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity .8s ease;
        transform: scale(1.03);
    }

        .sk-hero-image img.active {
            opacity: 1;
        }
.sk-slide.active {
    opacity: 1;
    animation: heroZoom 5s linear forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}
.sk-header-logo {
    height: 58px;
    width: auto;
    display: block;
}

.sk-footer-brand {
    padding-right: 40px;
}

.sk-footer-logo {
    width: 240px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

@media(max-width:768px) {
    .sk-header-logo {
        height: 46px;
    }

    .sk-footer-logo {
        width: 210px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width:650px) {

    .sk-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sk-district-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .sk-district-card {
        grid-template-columns: 44px 1fr 24px;
        width: 100%;
        min-height: 92px;
        padding: 20px;
        box-sizing: border-box;
    }

        .sk-district-card span {
            font-size: 18px;
            white-space: normal;
        }

        .sk-district-card small {
            font-size: 13px;
            white-space: normal;
        }

    .sk-card-grid {
        grid-template-columns: 1fr !important;
    }
}