/* =============================================
   BINTOT RESPONSIVE HERO SLIDER
============================================= */

.bintot-hero-slider,
.bintot-hero-slider * {
    box-sizing: border-box;
}

.bintot-hero-slider {
    --navy: #052b5c;
    --dark-navy: #031f43;
    --gold: #e79b12;
    --gold-dark: #c77e00;
    --white: #ffffff;
    --text: #112747;
    --muted: #536278;

    width: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    font-family: "Manrope", sans-serif;
}

.bintot-slider-stage {
    width: 100%;
    min-height: 650px;
    position: relative;
}

.bintot-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 46% 54%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.bintot-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.bintot-slide-content {
    position: relative;
    z-index: 3;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 70px 7vw 110px;
    background:
        radial-gradient(circle at 12% 50%, rgba(231, 155, 18, 0.08), transparent 35%),
        linear-gradient(90deg, #ffffff 0%, #ffffff 82%, #f3f6fa 100%);
}

.bintot-slide-content::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 120px;
    width: 65px;
    height: 190px;
    opacity: 0.25;
    background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 13px 13px;
}

.bintot-copy {
    width: 100%;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.bintot-eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: clamp(15px, 1.25vw, 21px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bintot-main-title {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: clamp(45px, 5.3vw, 82px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -2.8px;
    text-transform: uppercase;
}

.bintot-main-title span {
    display: block;
    color: var(--gold);
}

.bintot-subtitle {
    margin: 0 0 18px;
    color: var(--text);
    font-size: clamp(18px, 1.55vw, 25px);
    font-weight: 700;
    line-height: 1.35;
}

.bintot-description {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(14px, 1.05vw, 17px);
    font-weight: 500;
    line-height: 1.8;
}

.bintot-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.bintot-button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.bintot-button i {
    font-size: 20px;
}

.bintot-button-primary {
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 25px rgba(5, 43, 92, 0.18);
}

.bintot-button-primary:hover {
    color: var(--white);
    background: var(--gold);
    transform: translateY(-2px);
}

.bintot-button-secondary {
    color: var(--navy);
    background: transparent;
    border-color: var(--gold);
}

.bintot-button-secondary:hover {
    color: var(--white);
    background: var(--gold);
    transform: translateY(-2px);
}

.bintot-slide-image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #dfe7ef;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.bintot-slide-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.bintot-slide.is-active .bintot-slide-image img {
    transform: scale(1);
}

.bintot-slide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 31, 67, 0.08), rgba(3, 31, 67, 0));
}

.bintot-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    box-shadow: 0 10px 28px rgba(4, 31, 67, 0.17);
    transform: translateY(-50%);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bintot-slider-arrow:hover {
    color: var(--white);
    background: var(--gold);
    transform: translateY(-50%) scale(1.05);
}

.bintot-arrow-prev { left: 25px; }
.bintot-arrow-next { right: 25px; }

.bintot-contact-strip {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: 0;
    width: 74%;
    min-height: 93px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 0;
    padding: 12px 5vw 12px 7vw;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--dark-navy));
    clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
}

.bintot-contact-item {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.bintot-contact-item:last-child { border-right: 0; }

.bintot-contact-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 25px;
}

.bintot-contact-text { min-width: 0; }

.bintot-contact-text strong,
.bintot-contact-text span { display: block; }

.bintot-contact-text strong {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.bintot-contact-text span {
    color: rgba(255, 255, 255, 0.83);
    font-size: 13px;
    line-height: 1.4;
}

.bintot-slider-dots {
    position: absolute;
    z-index: 12;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.bintot-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: #c6c9cf;
    transition: width 0.25s ease, background 0.25s ease;
}

.bintot-dot.is-active {
    width: 30px;
    border-radius: 20px;
    background: var(--gold);
}

.bintot-slide.is-active .bintot-eyebrow,
.bintot-slide.is-active .bintot-main-title,
.bintot-slide.is-active .bintot-subtitle,
.bintot-slide.is-active .bintot-description,
.bintot-slide.is-active .bintot-actions {
    animation: bintotFadeUp 0.75s both;
}

.bintot-slide.is-active .bintot-main-title { animation-delay: 0.08s; }
.bintot-slide.is-active .bintot-subtitle { animation-delay: 0.15s; }
.bintot-slide.is-active .bintot-description { animation-delay: 0.22s; }
.bintot-slide.is-active .bintot-actions { animation-delay: 0.29s; }

@keyframes bintotFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TABLET */
@media (max-width: 1100px) {
    .bintot-slider-stage { min-height: 610px; }
    .bintot-slide { grid-template-columns: 50% 50%; }
    .bintot-slide-content,
    .bintot-slide-image,
    .bintot-slide-image img { min-height: 610px; }
    .bintot-slide-content { padding: 60px 45px 120px; }
    .bintot-main-title { font-size: clamp(46px, 6vw, 67px); }
    .bintot-contact-strip { width: 82%; padding-left: 7vw; padding-right: 25px; }
    .bintot-contact-item { gap: 11px; padding: 0 14px; }
    .bintot-contact-icon { flex-basis: 42px; width: 42px; height: 42px; font-size: 21px; }
    .bintot-contact-text strong { font-size: 12px; }
    .bintot-contact-text span { font-size: 11px; }
}

/* MOBILE */
@media (max-width: 767px) {
    .bintot-slider-stage { min-height: auto; padding-bottom: 0; }
    .bintot-slide { position: relative; inset: auto; display: none; grid-template-columns: 1fr; }
    .bintot-slide.is-active { display: flex; flex-direction: column-reverse; }
    .bintot-slide-image { width: 100%; min-height: 310px; height: 310px; clip-path: none; }
    .bintot-slide-image img { min-height: 310px; height: 310px; }
    .bintot-slide-image::after { background: linear-gradient(0deg, rgba(3, 31, 67, 0.2), rgba(3, 31, 67, 0)); }
    .bintot-slide-content { min-height: auto; padding: 38px 20px 40px; text-align: center; background: #ffffff; }
    .bintot-slide-content::before { display: none; }
    .bintot-copy { max-width: 100%; }
    .bintot-eyebrow { margin-bottom: 10px; font-size: 14px; }
    .bintot-main-title { margin-bottom: 13px; font-size: clamp(40px, 12vw, 58px); line-height: 1; letter-spacing: -1.8px; }
    .bintot-subtitle { font-size: 18px; }
    .bintot-description { font-size: 14px; line-height: 1.7; }
    .bintot-actions { justify-content: center; gap: 10px; margin-top: 25px; }
    .bintot-button { min-height: 50px; padding: 0 18px; font-size: 11px; }
    .bintot-slider-arrow { top: 155px; width: 43px; height: 43px; font-size: 22px; }
    .bintot-arrow-prev { left: 12px; }
    .bintot-arrow-next { right: 12px; }
    .bintot-contact-strip { position: relative; right: auto; bottom: auto; width: 100%; min-height: auto; grid-template-columns: 1fr; padding: 8px 18px; clip-path: none; }
    .bintot-contact-item { min-height: 68px; justify-content: flex-start; padding: 10px 5px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
    .bintot-contact-item:last-child { border-bottom: 0; }
    .bintot-contact-icon { flex-basis: 43px; width: 43px; height: 43px; font-size: 21px; }
    .bintot-contact-text strong { font-size: 13px; }
    .bintot-contact-text span { font-size: 12px; }
    .bintot-slider-dots { position: relative; left: auto; bottom: auto; justify-content: center; padding: 15px 0; transform: none; background: #ffffff; }
}

@media (max-width: 430px) {
    .bintot-slide-image,
    .bintot-slide-image img { min-height: 270px; height: 270px; }
    .bintot-slider-arrow { top: 135px; }
    .bintot-main-title { font-size: 39px; }
    .bintot-actions { flex-direction: column; }
    .bintot-button { width: 100%; max-width: 290px; }
}
