/* ==================== PHOTO SHOWCASE SECTION ==================== */
.photo-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.showcase-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
    padding: 30px 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.showcase-overlay p {
    color: var(--yellow);
    font-size: 1rem;
    margin: 0;
}

/* ==================== PROFESSIONAL SERVICE VISUAL SECTION ==================== */
.professional-service-visual {
    padding: 80px 0;
    background: var(--white);
}

.service-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.visual-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.visual-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.3);
}

.visual-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(230, 57, 70, 0.95), rgba(255, 107, 53, 0.9));
    padding: 25px;
    text-align: center;
}

.visual-caption h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.visual-caption p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

/* ==================== ABOUT PAGE IMAGES ==================== */
.mission-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.mission-image img:hover {
    transform: scale(1.05);
}

.about-showcase {
    margin: 60px 0;
    text-align: center;
}

.about-showcase h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 40px;
    font-weight: 900;
}

.about-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-showcase-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.about-showcase-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-showcase-item:hover img {
    transform: scale(1.08);
}

/* ==================== RESPONSIVE STYLES FOR NEW SECTIONS ==================== */
@media (max-width: 768px) {
    .showcase-grid,
    .service-visual-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-item img,
    .visual-item img {
        height: 250px;
    }

    .visual-caption h4 {
        font-size: 1.4rem;
    }

    .about-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-showcase-item img {
        height: 250px;
    }

    .showcase-overlay h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .photo-showcase,
    .professional-service-visual {
        padding: 50px 0;
    }

    .showcase-item img,
    .visual-item img,
    .about-showcase-item img {
        height: 200px;
    }

    .visual-caption {
        padding: 15px;
    }

    .visual-caption h4 {
        font-size: 1.2rem;
    }

    .visual-caption p {
        font-size: 0.9rem;
    }
}

/* ==================== TRANSFORMATION SECTION ==================== */
.transformation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--yellow) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

.transformation-section .section-header h2,
.transformation-section .section-header p {
    color: var(--white);
}

.transformation-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.transformation-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.transformation-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.transformation-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.transformation-card:hover img {
    transform: scale(1.08);
}

.transformation-caption {
    padding: 25px;
    text-align: center;
    background: linear-gradient(to right, var(--primary-red), var(--primary-orange));
}

.transformation-caption h4 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.transformation-caption p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

/* ==================== DOOR STYLES GALLERY SECTION ==================== */
.door-styles-gallery {
    padding: 80px 0;
    background: var(--gray-bg);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.style-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

.style-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.35);
}

.style-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.style-card:hover .style-image img {
    transform: scale(1.12);
}

.style-info {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 100%);
}

.style-info h4 {
    color: var(--gray-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.style-info p {
    color: var(--gray-dark);
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

/* ==================== RESPONSIVE STYLES FOR NEW SECTIONS ==================== */
@media (max-width: 768px) {
    .transformation-gallery,
    .styles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .transformation-card img,
    .style-image {
        height: 280px;
    }

    .transformation-caption h4,
    .style-info h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .transformation-section,
    .door-styles-gallery {
        padding: 50px 0;
    }

    .transformation-card img,
    .style-image {
        height: 220px;
    }

    .transformation-caption,
    .style-info {
        padding: 18px;
    }

    .transformation-caption h4,
    .style-info h4 {
        font-size: 1.1rem;
    }

    .transformation-caption p,
    .style-info p {
        font-size: 0.9rem;
    }
}

/* ==================== SERVICES GALLERY SHOWCASE ==================== */
.services-gallery-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
    padding: 25px;
    text-align: center;
    transform: translateY(5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--yellow);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
}

/* ==================== COUPON INSPIRATION GALLERY ==================== */
.coupon-inspiration-gallery {
    padding: 80px 0;
    background: var(--white);
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.inspiration-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.inspiration-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.35);
}

.inspiration-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.inspiration-card:hover img {
    transform: scale(1.1);
}

.inspiration-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--primary-red), var(--primary-orange));
    padding: 20px;
    text-align: center;
}

.inspiration-label span {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
}

.inspiration-cta {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--primary-orange) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.inspiration-cta .cta-text {
    color: var(--gray-dark);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

/* ==================== RESPONSIVE STYLES FOR NEW GALLERIES ==================== */
@media (max-width: 768px) {
    .gallery-grid,
    .inspiration-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-item img,
    .inspiration-card img {
        height: 280px;
    }

    .gallery-overlay h4,
    .inspiration-label span {
        font-size: 1.2rem;
    }

    .inspiration-cta .cta-text {
        font-size: 1.4rem;
    }

    .about-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-gallery-showcase,
    .coupon-inspiration-gallery {
        padding: 50px 0;
    }

    .gallery-item img,
    .inspiration-card img {
        height: 220px;
    }

    .gallery-overlay,
    .inspiration-label {
        padding: 15px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .inspiration-label span {
        font-size: 1rem;
    }

    .inspiration-cta {
        padding: 20px;
        margin-top: 30px;
    }

    .inspiration-cta .cta-text {
        font-size: 1.2rem;
    }
}

/* ==================== COUPON CARD IMAGES ==================== */
.coupon-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.coupon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.coupon-card-full:hover .coupon-image img {
    transform: scale(1.08);
}

/* Responsive coupon images */
@media (max-width: 768px) {
    .coupon-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .coupon-image {
        height: 180px;
    }
}
