/* Portfolio item styles */
.portfolio-item .img-style {
    height: 450px;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
}
.portfolio-item .img-style img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.5s ease !important;
    transform: scale(1);
}
.portfolio-item:hover .img-style img {
    transform: scale(1.15) !important;
    filter: brightness(1.1);
}
@media (max-width: 767px) {
    .portfolio-item .img-style {
        height: 300px;
    }
}

/* Modal styles for gallery */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
}
.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}
.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}
.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
}
.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}
.gallery-modal-prev {
    left: 20px;
}
.gallery-modal-next {
    right: 20px;
}
.gallery-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
}
.portfolio-item {
    cursor: pointer;
}
.site-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.site-logo-text:hover {
    color: #fff;
}

/* Fixed order button */
.order-btn-fixed {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--Primary, #d1f801);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(209, 248, 1, 0.4);
    transition: all 0.3s ease;
}
.order-btn-fixed i {
    font-size: 24px;
    color: #000;
}
.order-btn-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(209, 248, 1, 0.6);
}

/* mt utilities */
.mt_60 {
    margin-top: 60px;
}
.mt_30 {
    margin-top: 30px;
}

/* Testimonial card */
.testimonial-card {
    background: rgba(36, 36, 36, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 40px;
}

/* Star icon color */
.ratings .icon-Star {
    color: var(--Primary);
}

/* Phone section spacing */
.phone + .phone {
    margin-top: 20px;
}

/* Footer gap */
.footer .bot {
    gap: 15px;
}

/* Heart icon */
.fa-heart-red {
    color: #e25555;
}

/* Map container */
.map-container {
    border-radius: 32px;
    overflow: hidden;
}
