/**
 * KKeyQik — True Full-Screen Skeleton Preloader
 * Mirrors actual Elementor homepage layout extracted from post-21.css + post-25.css
 *
 * @package KKeyQik
 */

/* ═══════════════════════════════════════════
   Overlay
   ═══════════════════════════════════════════ */
#kkeyqik-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#kkeyqik-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   Shimmer Keyframe
   ═══════════════════════════════════════════ */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ═══════════════════════════════════════════
   Shimmer Utilities
   ═══════════════════════════════════════════ */
.sk {
    background: linear-gradient(90deg, #f0f0f0 25%, #e3e3e3 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.sk-green {
    background: linear-gradient(90deg, #d9eade 25%, #c2d9c7 50%, #d9eade 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.sk-dark {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.sk-yellow {
    background: linear-gradient(90deg, #f0e580 25%, #ffe500 50%, #f0e580 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.sk-footer {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.10) 50%, rgba(255, 255, 255, 0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   1. NAVBAR — post-21 → Logo 15% | Nav 45% | CTAs 40%
   ═══════════════════════════════════════════ */
.sk-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sk-nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.sk-nav-logo {
    width: 15%;
    display: flex;
    align-items: center;
}

.sk-nav-logo-box {
    width: 100px;
    height: 38px;
    border-radius: 6px;
}

.sk-nav-menu {
    width: 45%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.sk-nav-item {
    height: 38px;
    border-radius: 15px;
    padding: 0 15px;
}

.sk-nav-item:nth-child(1) {
    width: 80px;
}

.sk-nav-item:nth-child(2) {
    width: 60px;
    border: 2px solid #F9E44F;
    background: #F9E44F !important;
}

.sk-nav-item:nth-child(3) {
    width: 62px;
}

.sk-nav-item:nth-child(4) {
    width: 78px;
}

.sk-nav-ctas {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.sk-nav-btn {
    height: 42px;
    border-radius: 15px;
    box-shadow: -3px 5px 0px 0px #000;
}

.sk-nav-btn--green {
    width: 145px;
}

.sk-nav-btn--yellow {
    width: 195px;
}

@media (max-width: 1024px) {
    .sk-nav-menu {
        display: none;
    }

    .sk-nav-logo {
        width: 30%;
    }

    .sk-nav-ctas {
        width: 70%;
    }
}

@media (max-width: 640px) {
    .sk-nav-ctas {
        display: none;
    }

    .sk-nav-logo {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════
   2. HERO — 80vh, padding-left 100px, 60/40 split
   ═══════════════════════════════════════════ */
.sk-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 0 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #fdfef9 0%, #f5f8f2 50%, #f0f5ee 100%);
}

.sk-hero-left {
    width: 60%;
    padding-right: 2rem;
}

.sk-hero-right {
    width: 40%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 420px;
}

/* Tagline */
.sk-hero-tag {
    width: 420px;
    max-width: 100%;
    height: 14px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

/* H1 lines — Lora 75px */
.sk-hero-h1 {
    height: 48px;
    border-radius: 6px;
    margin-bottom: 0.6rem;
}

.sk-hero-h1:nth-child(2) {
    width: 100%;
}

.sk-hero-h1:nth-child(3) {
    width: 92%;
}

.sk-hero-h1:nth-child(4) {
    width: 68%;
}

.sk-hero-h1:nth-child(5) {
    width: 50%;
}

/* Buttons */
.sk-hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.sk-hero-btn {
    height: 50px;
    border-radius: 15px;
    box-shadow: -3px 5px 0px 0px #000;
}

.sk-hero-btn--services {
    width: 180px;
}

.sk-hero-btn--whatsapp {
    width: 210px;
}

/* Right person image */
.sk-hero-person {
    width: 340px;
    height: 420px;
    border-radius: 12px 12px 0 0;
    position: relative;
    z-index: 2;
}

/* Green deco circles */
.sk-hero-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.sk-hero-deco--1 {
    width: 280px;
    height: 280px;
    background: rgba(47, 109, 70, 0.08);
    top: 15%;
    right: 0%;
}

.sk-hero-deco--2 {
    width: 170px;
    height: 170px;
    background: rgba(47, 109, 70, 0.05);
    top: 5%;
    right: 30%;
}

/* Quote bubble */
.sk-hero-quote {
    position: absolute;
    width: 140px;
    height: 95px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    top: 25%;
    left: 5%;
    z-index: 3;
}

@media (max-width: 1024px) {
    .sk-hero {
        flex-direction: column;
        padding: 3rem 1.5rem 0;
        min-height: auto;
        text-align: center;
    }

    .sk-hero-left,
    .sk-hero-right {
        width: 100%;
        padding-right: 0;
    }

    .sk-hero-btns {
        justify-content: center;
    }

    .sk-hero-person {
        width: 240px;
        height: 300px;
    }

    .sk-hero-deco,
    .sk-hero-quote {
        display: none;
    }

    .sk-hero-tag {
        margin: 0 auto 1.5rem;
    }

    .sk-hero-h1 {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .sk-hero-h1 {
        height: 2rem;
    }

    .sk-hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ═══════════════════════════════════════════
   3. SERVICE MARQUEE — #C6F806 bg, 30px items, 42s
   ═══════════════════════════════════════════ */
.sk-marquee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
    overflow: hidden;
}

.sk-marquee--1 {
    background: #C6F806;
}

.sk-marquee--2 {
    background: #b8e800;
}

.sk-mq-item {
    flex-shrink: 0;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(23, 1, 44, 0.10) 25%, rgba(23, 1, 44, 0.20) 50%, rgba(23, 1, 44, 0.10) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.sk-mq-star {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: rgba(23, 1, 44, 0.15);
    border-radius: 3px;
}

.sk-mq--w1 {
    width: 85px;
}

.sk-mq--w2 {
    width: 165px;
}

.sk-mq--w3 {
    width: 70px;
}

.sk-mq--w4 {
    width: 180px;
}

.sk-mq--w5 {
    width: 200px;
}

.sk-mq--w6 {
    width: 110px;
}

.sk-mq--w7 {
    width: 130px;
}

.sk-mq--w8 {
    width: 155px;
}

/* ═══════════════════════════════════════════
   4. SECTION w/ TAG PILL + HEADING — reusable
   Matches: Services, About, Case Studies, Portfolio, Blog
   ═══════════════════════════════════════════ */
.sk-section {
    max-width: 1410px;
    margin: 0 auto;
    padding: 80px 15px;
}

.sk-section-header {
    margin-bottom: 2rem;
}

.sk-tag-pill {
    display: inline-block;
    width: 120px;
    height: 32px;
    border-radius: 22px;
    background: #F5FEF6;
    margin-bottom: 0.75rem;
}

.sk-tag-pill-inner {
    width: 80px;
    height: 13px;
    border-radius: 4px;
    margin: 9px auto;
}

.sk-sec-title {
    width: 350px;
    max-width: 100%;
    height: 2.5rem;
    border-radius: 6px;
}

/* Service cards grid */
.sk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .sk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sk-grid {
        grid-template-columns: 1fr;
    }
}

.sk-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(18px);
    animation: skCardIn 0.4s ease forwards;
}

.sk-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sk-card:nth-child(2) {
    animation-delay: 0.17s;
}

.sk-card:nth-child(3) {
    animation-delay: 0.24s;
}

.sk-card:nth-child(4) {
    animation-delay: 0.31s;
}

.sk-card:nth-child(5) {
    animation-delay: 0.38s;
}

.sk-card:nth-child(6) {
    animation-delay: 0.45s;
}

@keyframes skCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sk-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.sk-card-ln {
    height: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.sk-card-ln--w90 {
    width: 90%;
}

.sk-card-ln--w70 {
    width: 70%;
}

.sk-card-ln--w50 {
    width: 50%;
}

.sk-card-ln--w40 {
    width: 40%;
}

/* ═══════════════════════════════════════════
   5. ABOUT SECTION — 50/50 split
   ═══════════════════════════════════════════ */
.sk-about {
    max-width: 1410px;
    margin: 0 auto;
    padding: 80px 15px;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.sk-about-left {
    width: 50%;
}

.sk-about-right {
    width: 50%;
}

.sk-about-img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
}

.sk-about-pill {
    width: 80px;
    height: 28px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 0.75rem;
}

.sk-about-h2 {
    width: 300px;
    max-width: 100%;
    height: 2rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.sk-about-p {
    height: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.sk-about-p--w100 {
    width: 100%;
}

.sk-about-p--w85 {
    width: 85%;
}

.sk-about-p--w60 {
    width: 60%;
}

.sk-about-btn {
    width: 160px;
    height: 48px;
    border-radius: 15px;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .sk-about {
        flex-direction: column;
    }

    .sk-about-left,
    .sk-about-right {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════
   6. TEXT MARQUEE — white bg, 60px text
   ═══════════════════════════════════════════ */
.sk-text-marquee {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    background: #fff;
}

.sk-text-mq-item {
    flex-shrink: 0;
    height: 2.5rem;
    border-radius: 6px;
}

.sk-text-mq--w1 {
    width: 180px;
}

.sk-text-mq--w2 {
    width: 250px;
}

.sk-text-mq--w3 {
    width: 120px;
}

.sk-text-mq--w4 {
    width: 200px;
}

.sk-text-mq--w5 {
    width: 160px;
}

/* ═══════════════════════════════════════════
   7. CTA / TESTIMONIALS SECTION — #F5FEF6 bg
   ═══════════════════════════════════════════ */
.sk-cta {
    background: #F5FEF6;
    border-radius: 0 0 30px 30px;
    padding: 80px 15px;
    box-shadow: -17px 41px 47px -1px rgba(0, 0, 0, 0.08);
}

.sk-cta-inner {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.sk-cta-tag {
    display: inline-block;
    width: 140px;
    height: 32px;
    border-radius: 22px;
    margin-bottom: 0.75rem;
}

.sk-cta-h2 {
    width: 400px;
    max-width: 90%;
    height: 2.5rem;
    border-radius: 6px;
    margin: 0 auto 2rem;
}

.sk-review-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.sk-review-card {
    width: 300px;
    height: 180px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #2F6D46, #F9E44F) border-box;
}

@media (max-width: 1024px) {
    .sk-review-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .sk-review-card {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════
   8. FOOTER — #17012C, 3 cols
   ═══════════════════════════════════════════ */
.sk-footer {
    background: #17012C;
    padding: 3rem 0;
}

.sk-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sk-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .sk-footer-cols {
        grid-template-columns: 1fr;
    }
}

.sk-footer-col-t {
    width: 100px;
    height: 14px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.sk-footer-ln {
    height: 10px;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.sk-footer-ln--w70 {
    width: 70%;
}

.sk-footer-ln--w50 {
    width: 50%;
}

.sk-footer-ln--w85 {
    width: 85%;
}

.sk-footer-ln--w60 {
    width: 60%;
}

.sk-footer-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.sk-footer-copy {
    width: 280px;
    height: 12px;
    border-radius: 3px;
}

/* ═══════════════════════════════════════════
   9. INNER PAGE SKELETON — generic for non-homepage
   ═══════════════════════════════════════════ */
.sk-page-title-bar {
    background: linear-gradient(135deg, #f5f8f2, #edf3ea);
    padding: 3rem 1rem;
    text-align: center;
}

.sk-page-title-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.sk-page-title {
    width: 320px;
    max-width: 80%;
    height: 2.5rem;
    border-radius: 6px;
    margin: 0 auto 1rem;
}

.sk-page-breadcrumb {
    width: 200px;
    max-width: 60%;
    height: 0.75rem;
    border-radius: 4px;
    margin: 0 auto;
}

.sk-page-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.sk-page-block {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.sk-page-line {
    height: 0.85rem;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.sk-page-spacer {
    height: 1.5rem;
}