/* Existing styles retained, only modifying gallery-specific styles */
.preload-images {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    left: -9999px;
    top: -9999px;
}

/* Sheet Component Styles */
.sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sheet-content {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 500px;
    background-color: var(--white-color);
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sheet-overlay.active .sheet-content {
    transform: translateX(0);
}

.sheet-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    flex-shrink: 0;
}

.sheet-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.sheet-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.sheet-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sheet-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.sheet-body {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.sheet-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background-color: var(--white-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    flex: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 1.5rem 0 0.5rem;
}

.footer-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.hero-scroll-indicator,
.carousel-arrow {
    display: none;
}

/* Updated Gallery Styles */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    position: relative;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tagline {
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 10px 0;
}

.section-header p {
    font-size: 1rem;
    color: #777;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: #28a745;
    margin: 20px auto;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 10px 30px;
    box-sizing: border-box;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    flex-shrink: 0;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    max-width: 360px;
    height: 240px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: #fff;
    font-size: 2rem;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-shadow: none !important;
}

.gallery-overlay i,
.gallery-overlay svg {
    background: transparent !important;
    border: none !important;
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #28a745;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .gallery-container {
        max-width: 960px;
    }
    .swiper-container {
        max-width: 940px;
    }
    .gallery-item {
        max-width: 300px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .gallery-container {
        max-width: 720px;
    }
    .swiper-container {
        max-width: 700px;
    }
    .gallery-item {
        max-width: 220px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        max-width: 540px;
        padding: 15px;
    }
    .swiper-container {
        max-width: 520px;
        padding: 0 5px 20px;
    }
    .gallery-item {
        max-width: 240px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        max-width: 100%;
        padding: 10px;
    }
    .swiper-container {
        max-width: 100%;
        padding: 0 5px 15px;
    }
    .gallery-item {
        max-width: 100%;
        height: 200px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .section-tagline {
        font-size: 1rem;
    }
}

#ourCustomers {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 40px;
}

.customer-logo img {
    max-width: 150px;
    height: auto;
    /*filter: grayscale(100%);*/
    /*transition: filter 0.3s ease;*/
}

/*.customer-logo img:hover {*/
/*    filter: grayscale(0);*/
/*}*/



/* Bespoke Services Section */
.bespoke-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.bespoke-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 30px;
}

.bespoke-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 40px;
}

.bespoke-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bespoke-image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bespoke-image-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bespoke-image-item:hover img {
    transform: scale(1.03);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

.bespoke-swiper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.swiper-title {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.prints-swiper, .features-swiper {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.prints-swiper .swiper-slide, 
.features-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.prints-swiper img, 
.features-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bespoke-grid {
        grid-template-columns: 1fr;
    }
    
    .prints-swiper, 
    .features-swiper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .bespoke-title {
        font-size: 2rem;
    }
    
    .swiper-title {
        font-size: 1.3rem;
    }
}