/* Location landing pages (sirkali.html, vaitheeswarankoil.html) — scoped redesign.
   Brand colors match scss/app.scss ($brand:#ff4f9d, $yellow:#f8c802). */

.sk {
    --brand: #ff4f9d;
    --brand-dark: #b3196a;
    --yellow: #f8c802;
    --ink: #1d1d1f;
    --muted: #6b6b70;
    --card-bg: #ffffff;
    --page-bg: #f6f6f6;
    background: var(--page-bg);
}

.sk * {
    box-sizing: border-box;
}

.sk a {
    text-decoration: none;
}

.sk img {
    max-width: 100%;
    display: block;
}

.sk .sk-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.sk .sk-eyebrow {
    display: inline-block;
    color: var(--brand-dark);
    background: rgba(255, 79, 157, .12);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.sk h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.25;
}

.sk .sk-lead {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
    max-width: 620px;
}

.sk .sk-head {
    text-align: center;
    padding: 48px 0 28px;
}

.sk .sk-head .sk-lead {
    margin: 0 auto;
}

/* ---------- Hero ---------- */
.sk-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.sk-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sk-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20, 6, 15, .82) 0%, rgba(179, 25, 106, .72) 55%, rgba(255, 79, 157, .55) 100%);
    z-index: 1;
}

.sk-hero-inner {
    position: relative;
    z-index: 2;
    padding: 90px 20px 40px;
}

.sk-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    max-width: 640px;
}

.sk-hero p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
    color: rgba(255, 255, 255, .92);
    margin: 0 0 26px;
}

.sk-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.sk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .92rem;
    line-height: 1;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.sk-btn:active {
    transform: scale(.97);
}

.sk-btn-primary {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.sk-btn-primary:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
}

.sk-btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .6);
}

.sk-btn-ghost:hover {
    background: rgba(255, 255, 255, .22);
}

.sk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.sk-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
}

.sk-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Intro / local trust section ---------- */
.sk-intro {
    padding: 52px 0;
}

.sk-intro .sk-container {
    display: flex;
    align-items: center;
    gap: 46px;
}

.sk-intro-text {
    flex: 1.1;
    min-width: 0;
}

.sk-intro-text p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
    margin: 0 0 16px;
}

.sk-intro-media {
    flex: .9;
    position: relative;
    min-width: 0;
}

.sk-intro-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}

.sk-intro-tag {
    position: absolute;
    left: -14px;
    bottom: 22px;
    background: #fff;
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 220px;
}

.sk-intro-tag .sk-star {
    color: var(--yellow);
    font-size: 1rem;
    line-height: 1;
}

/* ---------- Services grid ---------- */
.sk-services {
    padding: 20px 0 56px;
}

.sk-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sk-service-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sk-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.sk-service-card .sk-service-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sk-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-service-card .sk-service-body {
    padding: 16px 18px 20px;
}

.sk-service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}

.sk-service-card p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Portfolio gallery ---------- */
.sk-gallery {
    padding: 20px 0 56px;
}

.sk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sk-gallery-grid a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.sk-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.sk-gallery-grid a:hover img {
    transform: scale(1.06);
}

/* ---------- Location / hours / CTA band ---------- */
.sk-band {
    background: linear-gradient(120deg, var(--brand-dark), var(--brand));
    color: #fff;
    padding: 44px 0;
}

.sk-band .sk-container {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: space-between;
}

.sk-band-col {
    flex: 1;
    min-width: 260px;
}

.sk-band h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 14px;
}

.sk-band address {
    font-style: normal;
    line-height: 1.7;
    font-size: .92rem;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 10px;
}

.sk-band .sk-map-link {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, .6);
}

.sk-hours {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .88rem;
}

.sk-hours li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.sk-hours li:last-child {
    border-bottom: none;
    color: rgba(255, 255, 255, .75);
}

.sk-band-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
}

.sk-band-cta .sk-btn-primary {
    width: 100%;
    justify-content: center;
}

.sk-band-cta .sk-btn-ghost {
    width: 100%;
    justify-content: center;
}

.sk-band-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sk-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .6);
    color: #fff;
    transition: background .15s ease, transform .15s ease;
}

.sk-social-link:hover {
    background: rgba(255, 255, 255, .28);
    transform: translateY(-2px);
}

.sk-social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ---------- Image placeholder (used until real photos are supplied) ---------- */
.sk-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    background: repeating-linear-gradient(135deg,
            rgba(255, 79, 157, .08),
            rgba(255, 79, 157, .08) 10px,
            rgba(255, 79, 157, .14) 10px,
            rgba(255, 79, 157, .14) 20px);
    border: 1.5px dashed rgba(255, 79, 157, .35);
    color: var(--brand-dark);
}

.sk-placeholder svg {
    width: 30px;
    height: 30px;
    stroke: var(--brand-dark);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .7;
}

.sk-placeholder span {
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.35;
    padding: 0 10px;
    opacity: .85;
}

.sk-intro-media .sk-placeholder {
    border-radius: 18px;
}

.sk-gallery-grid .sk-placeholder {
    border-radius: 12px;
}

/* ---------- Quick service icon strip ---------- */
.sk-icon-strip {
    padding: 20px 0 12px;
}

.sk-icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.sk-icon-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 110px;
    text-align: center;
}

.sk-icon-tile .sk-icon-media {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.sk-icon-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sk-icon-tile span {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
}

/* ---------- Detailed service cards (image + full description + list) ---------- */
.sk-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.sk-detail-card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
}

.sk-detail-card .sk-detail-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.sk-detail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-detail-body {
    padding: 20px 22px 26px;
}

.sk-detail-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
}

.sk-detail-body p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 12px;
}

.sk-detail-body h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--brand-dark);
    margin: 0 0 8px;
    font-weight: 700;
}

.sk-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 12px;
}

.sk-detail-list li {
    font-size: .82rem;
    color: var(--ink);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.sk-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

/* ---------- Hours panel (light background variant) ---------- */
.sk-hours-panel {
    background: var(--card-bg);
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
    padding: 28px 30px;
    max-width: 480px;
    margin: 0 auto;
}

.sk-hours-panel .sk-hours {
    font-size: .92rem;
}

.sk-hours-panel .sk-hours li {
    color: var(--ink);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.sk-hours-panel .sk-hours li:last-child {
    color: var(--muted);
    font-weight: 700;
}

/* ---------- Responsive ---------- */
@media only screen and (max-width: 900px) {
    .sk-intro .sk-container {
        flex-direction: column;
    }

    .sk-intro-media {
        width: 100%;
        max-width: 360px;
    }

    .sk-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sk-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sk-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 640px) {
    .sk-hero {
        min-height: 400px;
    }

    .sk-hero-inner {
        padding: 70px 18px 34px;
    }

    .sk-hero h1 {
        font-size: 1.5rem;
    }

    .sk-head {
        padding: 36px 0 20px;
    }

    .sk h2 {
        font-size: 1.35rem;
    }

    .sk-service-grid {
        grid-template-columns: 1fr;
    }

    .sk-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sk-band .sk-container {
        gap: 28px;
    }

    .sk-icon-tile {
        width: 78px;
    }

    .sk-icon-tile .sk-icon-media {
        width: 64px;
        height: 64px;
        padding: 14px;
    }

    .sk-icon-row {
        gap: 18px;
    }

    .sk-detail-list {
        grid-template-columns: 1fr;
    }

    .sk-hours-panel {
        padding: 22px 20px;
    }
}

@media only screen and (max-width: 1100px) {
    .sk-band {
        padding-bottom: 74px;
        /* clear the fixed bottom mobile nav bar */
    }
}
