:root {
    --keina-black: #111111;
    --keina-dark: #1c1c1c;
    --keina-gold: #c9a24a;
    --keina-gold-light: #e4c873;
    --keina-cream: #f8f3e8;
    --keina-white: #ffffff;
    --keina-text: #333333;
    --keina-muted: #6f6f6f;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--keina-text);
    background: var(--keina-white);
}

.home-section {
    padding: 85px 0;
}

.home-section-cream {
    background: var(--keina-cream);
}

.home-section-dark {
    background: var(--keina-black);
    color: var(--keina-white);
}

.section-header {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-header .section-title {
    color: var(--keina-black);
    font-weight: 700;
    letter-spacing: .5px;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 18px;
}

.section-header .section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--keina-gold);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 10px;
}

.section-header p {
    color: var(--keina-muted);
    line-height: 1.8;
    font-size: 15px;
}

/* HERO */
#hero-banner {
    min-height: 690px;
    background-size: cover;
    background-position: center;
    position: relative;
}

#hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,.82), rgba(0,0,0,.48));
}

#hero-banner .banner-inner {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: flex;
    align-items: center;
}

.hero-content {
    margin-top: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(201, 162, 74, .8);
    color: var(--keina-gold-light);
    border-radius: 30px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: .6px;
}

#hero-banner h2 {
    color: var(--keina-white);
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .8px;
    margin-bottom: 20px;
}

#hero-banner p {
    color: #eeeeee;
    font-size: 18px;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--keina-gold);
    color: var(--keina-black) !important;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    border: 2px solid var(--keina-gold);
    transition: all .25s ease;
}

.btn-gold:hover {
    background: var(--keina-gold-light);
    border-color: var(--keina-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(201, 162, 74, .35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--keina-white) !important;
    border: 2px solid var(--keina-gold);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all .25s ease;
}

.btn-outline-gold:hover {
    background: var(--keina-gold);
    color: var(--keina-black) !important;
    transform: translateY(-3px);
}

/* SERVICE HOME */
.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.home-service-card {
    background: var(--keina-white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 74, .35);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: all .28s ease;
    height: 100%;
}

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
    border-color: var(--keina-gold);
}

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

.home-service-body {
    padding: 24px;
}

.home-service-body h4 {
    color: var(--keina-black);
    font-weight: 700;
    margin-bottom: 10px;
}

.home-service-body p {
    color: var(--keina-muted);
    line-height: 1.7;
    min-height: 72px;
}

.home-link {
    display: inline-block;
    color: var(--keina-gold);
    font-weight: 700;
    margin-top: 8px;
}

.home-link:hover {
    color: var(--keina-black);
    text-decoration: none;
}

/* PACKAGE */
.home-package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.home-package-card {
    background: var(--keina-white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 74, .35);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: all .28s ease;
}

.home-package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.home-package-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.home-package-body {
    padding: 22px;
}

.home-package-body h4 {
    font-weight: 700;
    color: var(--keina-black);
    margin-bottom: 10px;
}

.home-package-body p {
    color: var(--keina-muted);
    line-height: 1.7;
    min-height: 68px;
}

/* WHY */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 28px;
    border: 4px solid rgba(201, 162, 74, .45);
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.why-content h2 {
    font-weight: 800;
    color: var(--keina-black);
    margin-bottom: 18px;
}

.why-content p {
    color: var(--keina-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.why-list {
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.why-list li {
    margin-bottom: 14px;
    color: var(--keina-text);
    font-weight: 500;
}

.why-list i {
    color: var(--keina-gold);
    margin-right: 10px;
}

/* ORDER FLOW */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.flow-card {
    background: var(--keina-white);
    border-radius: 22px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid rgba(201, 162, 74, .35);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.flow-number {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    background: var(--keina-black);
    color: var(--keina-gold);
    font-weight: 800;
    margin: 0 auto 14px;
}

.flow-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--keina-black);
}

.flow-card p {
    font-size: 13px;
    color: var(--keina-muted);
    line-height: 1.6;
}

/* GALLERY PREVIEW */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-preview-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

.gallery-preview-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all .3s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.06);
}

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-preview-overlay i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--keina-gold);
    color: var(--keina-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TESTIMONI */
.home-testimonials-section {
    background: var(--keina-white);
    padding: 85px 0;
}

.home-testimonial-card {
    background: var(--keina-white);
    border: 1px solid rgba(201, 162, 74, .32);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: all .28s ease;
    height: 100%;
}

.home-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.testimonial-stars {
    color: var(--keina-gold);
}

/* CTA */
.home-cta {
    background: linear-gradient(135deg, var(--keina-black), #3a2b14);
    color: var(--keina-white);
    text-align: center;
    padding: 80px 0;
}

.home-cta h2 {
    font-weight: 800;
    margin-bottom: 14px;
}

.home-cta p {
    color: #dddddd;
    max-width: 720px;
    margin: 0 auto 26px;
    line-height: 1.8;
}

/* FOOTER */
#footer {
    background: var(--keina-black);
    color: #cccccc;
    padding: 30px 0;
}

#footer a,
#footer .social-icons li a {
    color: var(--keina-gold);
}

#footer .social-icons li a:hover {
    color: var(--keina-gold-light);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .home-service-grid,
    .home-package-grid,
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    #hero-banner,
    #hero-banner .banner-inner {
        min-height: 560px;
    }

    #hero-banner h2 {
        font-size: 34px;
    }

    #hero-banner p {
        font-size: 15px;
    }

    .home-service-grid,
    .home-package-grid,
    .gallery-preview-grid,
    .flow-grid {
        grid-template-columns: 1fr;
    }

    .home-section {
        padding: 65px 0;
    }
}
/* ==============================
   HOME LANDING STYLE - KEINA
================================ */

:root {
    --keina-black: #111111;
    --keina-dark: #1d1d1d;
    --keina-gold: #c9a24a;
    --keina-gold-light: #e4c873;
    --keina-cream: #f8f3e8;
    --keina-white: #ffffff;
    --keina-text: #333333;
    --keina-muted: #6f6f6f;
}

.home-section {
    padding: 85px 0;
}

.home-section-cream {
    background: var(--keina-cream);
}

.home-section-dark {
    background: var(--keina-black);
    color: var(--keina-white);
}

.section-header {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-header .section-subtitle {
    display: inline-block;
    color: var(--keina-gold);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .6px;
}

.section-header .section-title {
    color: var(--keina-black);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
}

.section-header .section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--keina-gold);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--keina-muted);
    line-height: 1.8;
}

/* HERO */
#hero-banner {
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

#hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,.82), rgba(0,0,0,.45));
}

#hero-banner .banner-inner {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-content {
    margin-top: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(201,162,74,.85);
    color: var(--keina-gold-light);
    border-radius: 30px;
    margin-bottom: 18px;
    font-weight: 600;
}

#hero-banner h2 {
    color: var(--keina-white);
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

#hero-banner p {
    color: #eeeeee;
    font-size: 18px;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--keina-gold);
    color: var(--keina-black) !important;
    border: 2px solid var(--keina-gold);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all .25s ease;
}

.btn-gold:hover {
    background: var(--keina-gold-light);
    border-color: var(--keina-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(201,162,74,.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--keina-white) !important;
    border: 2px solid var(--keina-gold);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
}

.btn-outline-gold:hover {
    background: var(--keina-gold);
    color: var(--keina-black) !important;
}

/* INTRO */
.home-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.home-intro-image img {
    width: 100%;
    border-radius: 28px;
    border: 4px solid rgba(201,162,74,.45);
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.home-intro-content .small-title {
    color: var(--keina-gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.home-intro-content h2 {
    color: var(--keina-black);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 18px;
}

.home-intro-content p {
    color: var(--keina-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.home-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.home-feature-item {
    display: flex;
    gap: 16px;
}

.home-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--keina-black);
    color: var(--keina-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-feature-item h4 {
    color: var(--keina-black);
    font-weight: 700;
    margin-bottom: 5px;
}

.home-feature-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* SERVICE */
.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.home-service-card {
    background: var(--keina-white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201,162,74,.35);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: all .28s ease;
}

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

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

.home-service-body {
    padding: 24px;
}

.home-service-body h4 {
    font-weight: 800;
    color: var(--keina-black);
    margin-bottom: 10px;
}

.home-service-body p {
    color: var(--keina-muted);
    line-height: 1.7;
    min-height: 72px;
}

.home-link {
    display: inline-block;
    color: var(--keina-gold);
    font-weight: 700;
    margin-top: 8px;
}

.home-link:hover {
    color: var(--keina-black);
    text-decoration: none;
}

/* PACKAGE */
.home-package-offer {
    background: linear-gradient(135deg, var(--keina-black), #3b2b12);
    color: var(--keina-white);
    border-radius: 30px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.home-package-offer h2 {
    color: var(--keina-white);
    font-weight: 800;
    margin-bottom: 14px;
}

.home-package-offer p {
    color: #dddddd;
    line-height: 1.8;
}

.home-package-list {
    display: grid;
    gap: 14px;
}

.home-package-list div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(201,162,74,.35);
    border-radius: 18px;
    padding: 14px 18px;
    color: var(--keina-white);
}

/* CUSTOM PACKAGE */
.custom-package-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.custom-package-content h2 {
    color: var(--keina-black);
    font-weight: 800;
    margin-bottom: 18px;
}

.custom-package-content p {
    color: var(--keina-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.custom-package-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.custom-package-list div {
    background: var(--keina-white);
    border: 1px solid rgba(201,162,74,.35);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--keina-black);
}

.custom-package-list i {
    color: var(--keina-gold);
    margin-right: 8px;
}

.custom-package-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

/* VENDOR */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.vendor-card {
    background: var(--keina-white);
    border-radius: 22px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(201,162,74,.35);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.vendor-card i {
    font-size: 34px;
    color: var(--keina-gold);
    margin-bottom: 15px;
}

.vendor-card h4 {
    font-weight: 800;
    color: var(--keina-black);
    margin-bottom: 10px;
}

.vendor-card p {
    color: var(--keina-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* CHECK DATE */
.check-date-section {
    background: linear-gradient(135deg, var(--keina-black), #3b2b12);
    color: var(--keina-white);
    padding: 80px 0;
    text-align: center;
}

.check-date-section h2 {
    color: var(--keina-white);
    font-weight: 800;
    margin-bottom: 14px;
}

.check-date-section p {
    color: #dddddd;
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .home-intro-wrapper,
    .custom-package-wrapper,
    .home-package-offer {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    #hero-banner,
    #hero-banner .banner-inner {
        min-height: 560px;
    }

    #hero-banner h2 {
        font-size: 34px;
    }

    #hero-banner p {
        font-size: 15px;
    }

    .home-service-grid,
    .vendor-grid,
    .custom-package-list {
        grid-template-columns: 1fr;
    }

    .home-section {
        padding: 65px 0;
    }

    .home-package-offer {
        padding: 40px 24px;
    }
    .check-date-box {
        max-width: 720px;
        margin: 35px auto 0;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(201, 162, 74, .35);
        border-radius: 24px;
        padding: 28px;
    }

    .check-date-form {
        display: flex;
        gap: 14px;
        justify-content: center;
        align-items: center;
    }

    .check-date-form .form-control {
        height: 50px;
        border-radius: 30px;
        border: 1px solid rgba(201, 162, 74, .6);
        padding: 0 18px;
        max-width: 320px;
    }

    .check-date-result {
        margin-top: 20px;
        padding: 14px 18px;
        border-radius: 16px;
        font-weight: 600;
        line-height: 1.6;
    }

    .check-date-result.available {
        background: rgba(28, 200, 138, .15);
        color: #1cc88a;
        border: 1px solid rgba(28, 200, 138, .45);
    }

    .check-date-result.unavailable {
        background: rgba(231, 74, 59, .15);
        color: #ffb4aa;
        border: 1px solid rgba(231, 74, 59, .45);
    }

    .check-date-result.warning {
        background: rgba(246, 194, 62, .15);
        color: #f6c23e;
        border: 1px solid rgba(246, 194, 62, .45);
    }

    @media (max-width: 767px) {
        .check-date-form {
            flex-direction: column;
        }

        .check-date-form .form-control,
        .check-date-form .btn {
            width: 100%;
            max-width: 100%;
        }
    }
}