/* ==========================================
   PORTABLE PHOTO WALL SECTION STYLES
   ========================================== */

.photowall-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.photowall-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(219, 39, 119, 0.05) 100%);
    z-index: 0;
}

.photowall-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.photowall-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.photowall-section .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #8b5cf6, #db2777);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.photowall-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.photowall-section .section-subtitle {
    font-size: 1.2rem;
    color: #718096;
}

/* Service Introduction */
.photowall-intro {
    margin-bottom: 80px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.feature-item p {
    color: #718096;
    line-height: 1.6;
}

/* Booking CTA */
.photowall-booking-cta {
    text-align: center;
    margin-top: 40px;
}

.photowall-booking-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8b5cf6, #db2777);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.photowall-booking-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.photowall-booking-cta .cta-button i {
    transition: transform 0.3s ease;
}

.photowall-booking-cta .cta-button:hover i {
    transform: translateX(5px);
}

/* Gallery Section */
.photowall-gallery-section {
    margin-bottom: 80px;
}

.photowall-gallery-section .gallery-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Noto Serif KR', serif;
}

.photowall-gallery-section .gallery-description {
    font-size: 1.1rem;
    color: #718096;
    text-align: center;
    margin-bottom: 50px;
}

.photowall-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.photowall-gallery .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.photowall-gallery .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.photowall-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.photowall-gallery .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.photowall-gallery .gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Pricing Section */
.photowall-pricing-section {
    margin-bottom: 80px;
}

.photowall-pricing-section .pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Noto Serif KR', serif;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card.main-price {
    border: 3px solid #8b5cf6;
    position: relative;
    overflow: hidden;
}

.pricing-card.main-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8b5cf6, #db2777);
}

.price-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.price-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #8b5cf6;
}

.price-amount .currency {
    font-size: 1.5rem;
    color: #4a5568;
}

.price-amount .period {
    font-size: 1.2rem;
    color: #718096;
}

/* Price Details */
.price-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.price-details h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.included-items h5 {
    color: #10b981;
}

.included-items h5 i {
    color: #10b981;
}

.excluded-items h5 {
    color: #ef4444;
}

.excluded-items h5 i {
    color: #ef4444;
}

.price-details ul {
    list-style: none;
    padding: 0;
}

.price-details li {
    padding: 8px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-details li::before {
    content: '•';
    color: #cbd5e0;
    font-size: 1.2rem;
}

/* Special Offers */
.special-offers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-badge {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #10b981;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-badge:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.offer-badge.combo {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.offer-badge.travel {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left-color: #3b82f6;
}

.offer-badge i {
    font-size: 1.8rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 3px;
}

.offer-badge.combo i {
    color: #f59e0b;
}

.offer-badge.travel i {
    color: #3b82f6;
}

.offer-content strong {
    display: block;
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 8px;
}

.offer-content p {
    margin: 5px 0;
    color: #4a5568;
    line-height: 1.6;
}

.offer-content .highlight {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-content .discount-price {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 15px;
    background: white;
    border-radius: 20px;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-content .additional-fee {
    color: #ef4444;
    font-weight: 600;
    margin-top: 5px;
}

/* FAQ Section */
.photowall-faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.photowall-faq-section .faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Noto Serif KR', serif;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i.fa-question-circle {
    color: #8b5cf6;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-question h4 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.faq-question i.fa-chevron-down {
    color: #cbd5e0;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 55px;
}

.faq-answer p {
    color: #1a202c;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .photowall-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .photowall-section {
        padding: 60px 15px;
    }

    .photowall-section .section-title {
        font-size: 2rem;
    }

    .photowall-section .section-subtitle {
        font-size: 1rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .photowall-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .price-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price-amount .price {
        font-size: 2.5rem;
    }

    .special-offers {
        gap: 15px;
    }

    .offer-badge {
        flex-direction: column;
        padding: 15px 20px;
    }

    .faq-answer {
        padding-left: 25px !important;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .photowall-section .section-title {
        font-size: 1.6rem;
    }

    .photowall-gallery {
        grid-template-columns: 1fr;
    }

    .photowall-booking-cta .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
