
.price-label{
    text-transform: uppercase;
}
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-close:hover {
    background: #3B444B;
    transform: rotate(90deg);
}

.lightbox-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.lightbox-image-wrapper {
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

.lightbox-inquiry-btn {
    padding: 1.2rem 3rem;
    background: #3B444B;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.3);
}

.lightbox-inquiry-btn i {
    font-size: 1.2rem;
}

.lightbox-inquiry-btn:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.5);
}

/* ============================================
   INQUIRY FORM MODAL
   ============================================ */

.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10100; /* POVEĆAN Z-INDEX */
    display: none;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.inquiry-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.inquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10101;
}

.inquiry-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: rgba(17, 17, 17, 0.95);
    border-radius: 20px;
    padding: 3rem;
    z-index: 10102; /* POVEĆAN */
    border: 1px solid rgba(59, 68, 75, 0.3);
    backdrop-filter: blur(20px);
    overflow-y: auto;
}

.inquiry-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-close:hover {
    background: #3B444B;
    transform: rotate(90deg);
}

.inquiry-header {
    text-align: center;
    margin-bottom: 3rem;
}

.inquiry-header i {
    font-size: 3rem;
    color: #3B444B;
    margin-bottom: 1rem;
}

.inquiry-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.inquiry-header p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.inquiry-header p span {
    color: #3B444B;
    font-weight: 600;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.form-group label i {
    color: #3B444B;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.5rem;
    background: rgba(59, 68, 75, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B444B;
    background: rgba(59, 68, 75, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.inquiry-submit-btn {
    padding: 1.2rem 3rem;
    background: #3B444B;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.inquiry-submit-btn:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.5);
}

.inquiry-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.inquiry-success.active {
    display: block;
}

.inquiry-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.inquiry-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.inquiry-success p {
    opacity: 0.8;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .lightbox-container {
        width: 95%;
        max-height: 95vh;
        gap: 1.5rem;
    }
    
    .lightbox-close {
        top: -50px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
   
    
    .lightbox-inquiry-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .inquiry-container {
        padding: 2rem 1.5rem;
    }
    
    .inquiry-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lightbox-container {
        gap: 1rem;
    }
    
    .lightbox-close {
        top: -45px;
    }
    
    .lightbox-image-wrapper {
        max-height: 55vh;
    }
    
    
    
    .lightbox-inquiry-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .inquiry-container {
        padding: 2rem 1rem;
    }
}


/* Hidden Cards */
.hidden-card {
    display: none;
}

/* Load More Section */
.load-more-wrapper {
    text-align: center;
    padding: 80px 0;
}

.load-more-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(59, 68, 75, 0.5);
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(59, 68, 75, 0.3);
    transition: left 0.4s ease;
    z-index: 0;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    border-color: rgba(59, 68, 75, 0.8);
    transform: translateY(-2px);
}

.btn-text,
.btn-count {
    position: relative;
    z-index: 1;
}

.btn-count {
    margin-left: 10px;
    opacity: 0.6;
}

.load-more-btn.hidden {
    display: none;
}


/* ============================================
   PHOTO PRINT INFORMATION BANNER
   ============================================ */

.photo-info-banner {
    padding: 8rem 4rem 6rem;
    background: linear-gradient(135deg, rgba(59, 68, 75, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.photo-info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 68, 75, 0.3), transparent);
}

.photo-info-container {
    max-width: 1400px;
    margin: 0 auto;
}

.photo-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Left Side - Main Info */
.photo-info-main {
    opacity: 0;
    transform: translateX(-50px);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 68, 75, 0.1);
    border: 2px solid rgba(59, 68, 75, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    color: #3B444B;
    transition: all 0.5s ease;
}

.info-icon:hover {
    background: #3B444B;
    color: #fff;
    transform: rotate(360deg);
}

.info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.info-description {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.info-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.feature-item i {
    color: #3B444B;
    font-size: 1.2rem;
}

/* Right Side - Pricing Card */
.photo-info-pricing {
    opacity: 0;
    transform: translateX(50px);
}

.pricing-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}



.price-tag {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.3);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 4px;
    color: #3B444B;
    line-height: 1;
}

.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    letter-spacing: 1px;
    opacity: 0.9;
    border-bottom: 1px solid rgba(59, 68, 75, 0.1);
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.pricing-includes li i {
    color: #3B444B;
    font-size: 0.9rem;
}

.contact-info {
    background: rgba(59, 68, 75, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.contact-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #3B444B;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-email:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-email i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-email:hover i {
    transform: scale(1.2);
}

/* Banner Decoration */
.banner-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    opacity: 0.3;
}

.decoration-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3B444B, transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #3B444B;
    border-radius: 50%;
}

/* ============================================
   COMMISSIONS BANNER
   ============================================ */

.commissions-banner {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(59, 68, 75, 0.08) 0%, transparent 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commissions-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 68, 75, 0.3), transparent);
}

.commissions-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.commission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #3B444B;
    border-radius: 50%;
    font-size: 2rem;
    color: #3B444B;
    transition: all 0.5s ease;
}

.commission-icon:hover {
    background: #3B444B;
    color: #fff;
    transform: rotate(360deg);
}

.commission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.commission-description {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.commission-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: rgba(59, 68, 75, 0.2);
    border: 2px solid rgba(59, 68, 75, 0.4);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    font-size: 1rem;
}

.commission-email:hover {
    background: #3B444B;
    border-color: #3B444B;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.4);
}

.commission-email i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.commission-email:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .photo-info-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .photo-info-main,
    .photo-info-pricing {
        transform: none;
    }
}

@media (max-width: 768px) {
    .photo-info-banner {
        padding: 6rem 2rem 4rem;
    }
    
    .commissions-banner {
        padding: 4rem 2rem;
    }
    
    .info-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .info-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .commission-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .commission-email {
        padding: 1rem 2rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .photo-info-banner {
        padding: 4rem 1.5rem 3rem;
    }
    
    .info-icon,
    .commission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1.8rem;
    }
    
    .info-description,
    .commission-description {
        font-size: 0.95rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-email {
        font-size: 0.85rem;
        word-break: break-all;
    }
}



