.header {
    padding: 12px 0;
}

.header .logo {
    gap: 10px;
}

.header .logo .brand-name {
    font-size: clamp(28px, 2vw, 22px) !important;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.header .logo img {
    height: clamp(45px, 6vw, 60px);
    width: auto;
    max-height: none;
    object-fit: contain;
    transition: 0.3s;
}

.header .logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brand-name {
    font-size: clamp(28px, 2vw, 22px);
    font-weight: 700;
    color: var(--heading-color);
}

.brand-sub {
    font-size: clamp(13px, 1.5vw, 12px);
    color: #ce1212;
}

@media (max-width: 576px) {
    .header {
        padding: 8px 0;
    }

    .header .logo {
        gap: 6px;
    }
}

.gallery-card {
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

@media (hover: hover) {
    .gallery-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: clamp(180px, 25vw, 260px);
    object-fit: cover;
    transition: transform 0.35s ease;
}

@media (hover: hover) {
    .gallery-card:hover img {
        transform: scale(1.05);
    }
}

.gallery-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: 0.3s;
}

@media (hover: hover) {
    .gallery-card:hover .gallery-img-wrapper::after {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .gallery-card {
        border-radius: 10px;
    }

    .gallery-img-wrapper img {
        height: 140px;
    }
}

.custom-img {
    width: 746px;
    height: 560px;
    object-fit: cover;
    border-radius: 10px;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.video-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 5% auto;
}

.video-content iframe {
    width: 100%;
    height: 450px;
}

.close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    max-width: 223px;
    aspect-ratio: 223 / 188;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-img {
        max-width: 100%;
    }
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    background: rgba(206, 18, 18, 0.8);
    border-radius: 50%;
    padding: 10px 20px;
    transition: 0.3s;
}

.video-thumbnail:hover .play-button {
    background: rgba(206, 18, 18, 1);
}
