/* Home page styles */
.home-modern {
    background: #f5f7fb;
}

.home-modern .section-spacing {
    padding: 78px 0;
}

.home-modern .section-spacing.pt-0 {
    padding-top: 28px !important;
}

.home-modern .section-title-wrap {
    margin-bottom: 30px;
}

.home-modern .section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b37b2b;
    background: #fff2dd;
    padding: 6px 14px;
    border-radius: 25px;
    margin-bottom: 12px;
}

.home-modern .section-title {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #1e293b;
}

.home-modern .section-text {
    color: #64748b;
    text-align: justify;
}

/* ── Hero Swiper ── */
.home-hero-swiper-section {
    position: relative;
    background: #0f172a;
}

.home-hero-swiper {
    width: 100%;
    height: 92vh;
    min-height: 560px;
    max-height: 920px;
}

.home-hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.home-hero-slide {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 100px 0 120px;
}

.home-hero-bg {
    position: absolute;
    inset: -8%;
    z-index: 0;
}

.home-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-hero-swiper .swiper-slide-active .home-hero-bg img {
    transform: scale(1);
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 15% 40%, rgba(179, 123, 43, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 20%, rgba(232, 93, 140, 0.08), transparent 50%),
        linear-gradient(105deg, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.48) 45%, rgba(15, 23, 42, 0.22) 100%);
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.hero-decor.one {
    width: 280px;
    height: 280px;
    background: rgba(179, 123, 43, 0.3);
    top: -90px;
    right: 10%;
    animation: heroFloat 7s ease-in-out infinite;
}

.hero-decor.two {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.12);
    bottom: 18%;
    left: -60px;
    animation: heroFloat 9s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
}

.home-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 780px;
    padding: 0 20px 0 0;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-swiper-ready .swiper-slide-active .home-hero-content {
    opacity: 1;
    transform: translateY(0);
}

.home-hero-content .section-subtitle {
    background: rgba(255, 242, 221, 0.15);
    color: #f8d48a;
    border: 1px solid rgba(248, 212, 138, 0.35);
    backdrop-filter: blur(6px);
}

.home-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(15, 23, 42, 0.45);
}

.home-hero-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.65;
    color: #dbe6f6;
    margin-bottom: 30px;
    text-shadow: 0 1px 10px rgba(15, 23, 42, 0.4);
}

.home-hero-actions .btn {
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 12px;
    margin-bottom: 10px;
    transition: all 0.25s ease;
}

.btn-home-primary {
    background: linear-gradient(135deg, #c4892f 0%, #b37b2b 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(179, 123, 43, 0.35);
}

.btn-home-primary:hover {
    background: linear-gradient(135deg, #b37b2b 0%, #9d6920 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(179, 123, 43, 0.45);
}

.btn-home-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.btn-home-outline:hover {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
}

/* Hero controls bar */
.hero-swiper-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 max(24px, calc((100vw - 1140px) / 2 + 15px)) 32px;
    pointer-events: none;
}

.hero-swiper-nav {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.hero-swiper-prev,
.hero-swiper-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
    background: rgba(179, 123, 43, 0.92);
    border-color: #b37b2b;
    transform: scale(1.05);
}

.hero-swiper-pagination-wrap {
    flex: 1;
    max-width: 420px;
    pointer-events: auto;
}

.hero-swiper-pagination {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 36px;
    background: #b37b2b;
}

.hero-swiper-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.hero-swiper-progress span {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #b37b2b, #e85d8c);
    border-radius: 999px;
    transform-origin: left center;
    transform: scaleX(0);
}

.hero-swiper-fraction {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    pointer-events: none;
    min-width: 72px;
    text-align: right;
}

.hero-swiper-fraction .current {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: heroBounce 2s ease-in-out infinite;
    pointer-events: none;
}

.hero-scroll-hint::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Cards & sections ── */
.home-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    height: 100%;
    overflow: hidden;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(2, 8, 23, 0.08);
}

.category-card {
    text-align: center;
    padding: 28px 18px;
}

.category-card .category-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    margin: 0 auto 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.category-card .category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.category-card h5 {
    margin-bottom: 0;
    color: #1e293b;
    font-size: 18px;
}

/* ── Our Products grid ── */
.home-products-section {
    background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.home-products-row {
    align-items: stretch;
}

.home-product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-product-card:hover {
    transform: translateY(-5px);
    border-color: #b37b2b;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    text-decoration: none;
}

.home-product-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.home-product-card-img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
}

.home-product-card:hover .home-product-card-img img {
    transform: scale(1.04);
}

.home-product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
    padding: 16px 18px 18px;
    background: #fff;
}

.home-product-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #b37b2b;
}

.home-product-card-body h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #b37b2b;
    transition: gap 0.2s ease;
}

.home-product-card:hover .home-product-link {
    gap: 10px;
}

.content-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 34px;
}

.highlight-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.highlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 285px;
    background: #0f172a;
    box-shadow: 0 15px 34px rgba(15, 23, 42, 0.12);
}

.highlight-card.tall {
    min-height: 460px;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.highlight-card:hover img {
    transform: scale(1.05);
}

.highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 23, 0.12) 20%, rgba(2, 8, 23, 0.84) 100%);
}

.highlight-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #f8fafc;
    margin-bottom: 10px;
}

.highlight-content h4 {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 9px;
}

.highlight-content p {
    color: #dbe6f6;
    margin-bottom: 12px;
    font-size: 14px;
}

.highlight-content a {
    color: #fff;
    font-weight: 600;
}

.marketplace-strip-section {
    background: #0b4a72;
    margin: 10px 0 18px;
}

.marketplace-strip-inner {
    padding: 20px 0 30px;
}

.marketplace-slider-wrap {
    position: relative;
    margin: 0;
    padding: 0 4px;
}

.marketplace-slide {
    outline: none;
}

.marketplace-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 12px 16px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.marketplace-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    background: transparent;
    border: 0;
}

.marketplace-logo-card img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    object-position: center;
}

.marketplace-slider-wrap .slick-list {
    margin: 0 -4px;
    padding: 4px 0 0 !important;
}

.marketplace-slider-wrap .slick-track {
    display: flex;
    align-items: stretch;
}

.marketplace-slider-wrap .slick-slide {
    height: auto;
}

.marketplace-slider-wrap .slick-slide > div {
    height: 100%;
}

.marketplace-slider-dots {
    margin-top: 14px;
}

.marketplace-slider-dots .slick-dots {
    position: static;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.marketplace-slider-dots .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.marketplace-slider-dots .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
}

.marketplace-slider-dots .slick-dots li button:before {
    display: none !important;
    content: none !important;
}

.marketplace-slider-dots .slick-dots li.slick-active button {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: #e85d8c;
}

.why-card {
    padding: 26px 22px;
    text-align: center;
}

.why-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 2px solid #e2e8f0;
}

.cta-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.cta-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.cta-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.5);
}

.cta-banner-content h2 {
    color: #fff;
    margin-bottom: 12px;
}

.testimonial-section-modern {
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), var(--home-testimonial-bg, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    height: 100%;
}

.testimonial-card .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card .name {
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-card .designation {
    color: #cbd5e1;
    margin-bottom: 10px;
}

.tour-video-wrap iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 14px;
}

.home-modern .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-modern .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.home-modern .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.28) !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px;
    overflow: hidden;
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

.home-modern .slick-dots li button::before {
    content: none !important;
    display: none !important;
}

.home-modern .slick-dots li.slick-active button {
    width: 30px !important;
    height: 6px !important;
    background: #e85d8c !important;
}

@media (max-width: 991px) {
    .home-modern .section-spacing {
        padding: 62px 0;
    }

    .home-modern .section-spacing.pt-0 {
        padding-top: 22px !important;
    }

    .home-hero-swiper {
        height: 78vh;
        min-height: 500px;
    }

    .home-hero-slide {
        padding: 90px 0 110px;
    }

    .home-hero-content {
        padding: 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-card.tall {
        grid-column: span 2;
        min-height: 360px;
    }

    .hero-swiper-controls {
        padding-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .home-hero-swiper {
        height: auto;
        min-height: 520px;
        max-height: none;
    }

    .home-hero-slide {
        padding: 80px 0 100px;
    }

    .home-modern .section-title-wrap {
        margin-bottom: 24px;
    }

    .home-modern .section-title {
        font-size: 28px;
    }

    .tour-video-wrap iframe {
        min-height: 240px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card.tall {
        grid-column: auto;
        min-height: 285px;
    }

    .highlight-content h4 {
        font-size: 20px;
    }

    .hero-swiper-nav {
        display: none;
    }

    .hero-swiper-fraction {
        display: none;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-swiper-controls {
        justify-content: center;
        padding-bottom: 20px;
    }

    .hero-swiper-pagination-wrap {
        max-width: 100%;
    }

    .home-product-card-img {
        padding: 18px;
    }
}

@media (max-width: 575px) {
    .home-hero-content .section-subtitle {
        margin-bottom: 10px;
    }

    .home-hero-actions .btn {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .home-modern .section-spacing {
        padding: 48px 0;
    }

    .home-modern .section-spacing.pt-0 {
        padding-top: 18px !important;
    }

    .content-block {
        padding: 24px 18px;
    }
}
