/* Premium Homepage Styles - Extracted from head.blade.php */

/* Layout & Spacing */
.section-gap {
    padding: var(--section-padding) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-gap.wow-active {
    opacity: 1;
    transform: translateY(0);
}


.ecw-title {
    color: var(--primary-gold-dark);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Premium Image Treatment */
.ecw-img {
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ecw-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.why-choose-section {
    background-color: #000;
    position: relative;
}

.why-choose-section .small-title {
    color: #00A6DA !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-choose-section .wptb-item--title {
    color: #fff;
}

.why-choose-section .wptb-item--title span {
    color: #fded03;
}

.tight-grid {
    margin-right: -10px;
    margin-left: -10px;
}

.tight-grid>[class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

@media (max-width: 992px) {
    .wptb-item--title {
        font-size: 3rem;
    }

    .section-gap {
        padding: 60px 0;
    }

    .ecw-title {
        font-size: 2rem;
    }

    .journey-boxed-title .wptb-item--title {
        font-size: 2.5rem;
    }

    .journey-boxed-title {
        padding: 20px;
    }
}

/* Testimonial & Blog Polish */
.stars {
    display: inline-block;
    width: 100px;
    height: 20px;
    background: #fded03;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='20'><text y='16' font-size='20'>★★★★★</text></svg>") no-repeat center/contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='20'><text y='16' font-size='20'>★★★★★</text></svg>") no-repeat center/contain;
}

.blog-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--primary-gold-dark) !important;
    height: 100%;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--premium-shadow);
}

.blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-swiper-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.custom-swiper-btn:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.custom-swiper-btn::after {
    font-size: 20px;
    color: #000;
    font-weight: bold;
}

/* Lazy background support */
.lazy-bg {
    background-color: #111;
    background-size: cover;
    background-position: center;
}

.lazy-bg[data-bg] {
    background-image: none;
}

.lazy-bg.loaded {
    background-image: var(--bg-img);
}

/* Journey Section Fix */
.journey-section {
    background-color: #0b0b0b;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.journey-section .small-title {
    color: #fff !important;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.journey-section .wptb-item--title {
    color: #fded03;
    line-height: 1.1;
    margin-bottom: 20px;
}

.journey-section .wptb-item--description {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.journey-boxed-title {
    border: 2px solid #fded03;
    padding: 30px;
    display: inline-block;
    margin-bottom: 40px;
}

.journey-boxed-title .wptb-item--title {
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fded03 !important;
}

.wptb-features-author .wptb-item--name {
    color: #fded03;
    font-size: 1.5rem;
}

.wptb-features-author .wptb-item--designation {
    color: #fff;
    font-weight: 600;
}

/* Decorative Dot Grid */
.dot-grid {
    width: 120px;
    height: 120px;
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
    position: absolute;
    z-index: 5;
}

.dot-grid span {
    width: 6px;
    height: 6px;
    background-color: #D70006;
    border-radius: 50%;
    opacity: 0.8;
}

/* Red Chevrons */
.chevron-stack {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    bottom: 20px;
    right: -15px;
    z-index: 10;
}

/* Button Micro-interactions */
.btn-two,
.btn-three {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.btn-two:hover,
.btn-three:hover {
    transform: scale(1.05);
    letter-spacing: 0.5px;
}


/* Global Transition for smooth interaction */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Fix for existing star mask */
.stars {
    display: inline-block;
    width: 100px;
    height: 20px;
    background: #fded03;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='20'><text y='16' font-size='20' fill='black'>★★★★★</text></svg>") no-repeat center/contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='20'><text y='16' font-size='20' fill='black'>★★★★★</text></svg>") no-repeat center/contain;
}