/* ==========================================================================
   Sumit Bird Net - custom additions on top of the Deskot theme
   ========================================================================== */

:root {
    --kbn-base: #ff5a1e;
    --kbn-dark: #072f3e;
}

/* Top bar address text (no link) */
.topbar__info li span {
    color: #ffffff;
}

/* Keep service/listing card images a consistent height */
.service-card__image,
.listing-grid__card .service-card__image {
    height: 260px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   About section image fix.
   The Deskot theme floats a duplicate image out of its column (right: -130px)
   for a layered portrait look. Admin images here are wide banners, so that
   duplicate overlaps the content text. Show one clean image instead and keep
   everything inside its column.
   -------------------------------------------------------------------------- */
.about-one {
    padding-bottom: var(--section-space, 120px);
}

.about-one__image {
    display: block;
    width: 100%;
}

.about-one__image__one {
    width: 100%;
    height: auto;
    border-radius: 18px;
    -webkit-mask: none;
    mask: none;
}

/* Hide the overflowing duplicate image + decorative shapes */
.about-one__image__inner,
.about-one__image__shape {
    display: none;
}

.about-one__content__inner {
    padding-left: 0;
}

@media (min-width: 992px) {
    .about-one__content {
        padding-left: 30px;
    }
}

/* About list with simple check icons */
.about-one__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--kbn-dark);
    font-weight: 600;
}

.about-one__list li i {
    color: var(--kbn-base);
}

.about-one__list li a {
    color: inherit;
}

.about-one__list li a:hover {
    color: var(--kbn-base);
}

/* --------------------------------------------------------------------------
   Home gallery carousel
   -------------------------------------------------------------------------- */
.gallery-home__card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 300px;
}

.gallery-home__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-home__card:hover img {
    transform: scale(1.07);
}

.gallery-home__icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    background: rgba(7, 47, 62, 0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-home__card:hover .gallery-home__icon {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Testimonials carousel
   -------------------------------------------------------------------------- */
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--deskot-border-color, #dddddd);
    border-radius: 18px;
    padding: 36px 32px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(7, 47, 62, 0.06);
}

.testimonial-card__stars {
    color: #ffb400;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-card__text {
    color: var(--deskot-text, #636363);
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author-copy h3 {
    margin: 0;
    font-size: 18px;
    color: var(--kbn-dark);
}

.testimonial-card__author-copy span {
    color: var(--kbn-base);
    font-size: 14px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Listing pages (categories / products / gallery)
   -------------------------------------------------------------------------- */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-grid__item {
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
    position: relative;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid__item:hover img {
    transform: scale(1.07);
}

.listing-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--deskot-text, #636363);
}

@media (max-width: 991px) {
    .listing-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .listing-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */
.product-detail__gallery {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-detail__gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail__body {
    color: var(--deskot-text, #636363);
    line-height: 1.85;
}

.product-detail__body h1,
.product-detail__body h2,
.product-detail__body h3 {
    color: var(--kbn-dark);
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-info-card {
    background: var(--kbn-dark);
    color: #ffffff;
    border-radius: 18px;
    padding: 40px;
    height: 100%;
}

.contact-info-card h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-info-card__list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 20px;
}

.contact-info-card__list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-card__list i {
    color: var(--kbn-base);
    font-size: 20px;
    margin-top: 4px;
}

.contact-info-card__list a,
.contact-info-card__list span {
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-box {
    background: #ffffff;
    border: 1px solid var(--deskot-border-color, #dddddd);
    border-radius: 18px;
    padding: 40px;
}

.contact-form-box .form-control,
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: 1px solid var(--deskot-border-color, #dddddd);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 18px;
    background: #f7f7f7;
}

.contact-form-box textarea {
    min-height: 150px;
}

.contact-map {
    margin-top: 40px;
    border-radius: 18px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

/* --------------------------------------------------------------------------
   Video grid
   -------------------------------------------------------------------------- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.video-grid__embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    background: var(--kbn-dark);
}

.video-grid__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-grid__title {
    margin-top: 14px;
    color: var(--kbn-dark);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Floating contact buttons
   -------------------------------------------------------------------------- */
.floating-contact {
    position: fixed;
    right: 22px;
    z-index: 99;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease;
}

.floating-contact:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.floating-contact--whatsapp {
    bottom: 86px;
    background: #25d366;
}

.floating-contact--call {
    bottom: 26px;
    background: var(--kbn-base);
}

/* --------------------------------------------------------------------------
   Vision / Mission (about2)
   -------------------------------------------------------------------------- */
.vision-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.vision-tabs__btn {
    border: 1px solid var(--deskot-border-color, #dddddd);
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    color: var(--kbn-dark);
    cursor: pointer;
    transition: all 0.25s ease;
}

.vision-tabs__btn.is-active {
    background: var(--kbn-base);
    border-color: var(--kbn-base);
    color: #ffffff;
}

.vision-panel {
    display: none;
}

.vision-panel.is-active {
    display: block;
}

.vision-panel ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.vision-panel li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--deskot-text, #636363);
}

.vision-panel li::before {
    content: "\2714";
    color: var(--kbn-base);
    font-weight: 700;
}
