/* Hero section overrides - main layout (cacheable) */
:root {
    --primary-blue: #4169E1;
    --dark-blue: #182f61;
    --accent-blue: #4169E1;
    --accent-white: #fff;
    --text-white: #fff;
}
/* Hero section – fullscreen, rasm nisbatini buzmasdan cover */
.ispi-hero-wrapper {
    position: relative;
    height: 91vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}
.hero-slider, .swiper-wrapper, .swiper-slide { height: 100% !important; position: relative; }
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 47, 97, 0.95) 0%, rgba(24, 47, 97, 0.7) 50%, rgba(24, 47, 97, 0.4) 100%);
    z-index: 2;
}
.static-content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
/* Hero matni faqat Almarai shriftida */
.ispi-hero-content {
    font-family: 'Almarai', sans-serif;
    text-align: center;
    padding: 0 20px;
    color: var(--text-white);
    max-width: 900px;
    pointer-events: auto;
}
.ispi-hero-content h1 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(52px, 7vw, 70px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.ispi-hero-content p {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.4);
}
.ispi-hero-wrapper .theme-btn {
    font-family: 'Almarai', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-white);
    background: transparent;
    border: 2px solid var(--accent-white);
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: 0.25s ease;
}
.ispi-hero-wrapper .theme-btn i { font-size: 14px; }
.ispi-hero-wrapper .theme-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: none;
    box-shadow: none;
}
.array-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: flex;
    gap: 12px;
}
.array-button button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.array-button button:hover { background: var(--primary-blue); transform: scale(1.1); }
.swiper-pagination-bullet-active {
    background: var(--primary-blue) !important;
    width: 30px;
    border-radius: 5px;
}
.social-icons {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.social-icons a { color: #fff; font-size: 20px; transition: color 0.3s ease; }
.social-icons a:hover { color: var(--primary-blue); }
@media (max-width: 991px) { .social-icons { display: none; } }
@media (max-width: 767px) {
    .array-button {
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
    }
}
