/* ====================================
   Textile Printing Page - Modern Design
   ==================================== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(214, 69, 69, 0.95) 0%, rgba(44, 62, 80, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    margin-top: 0 !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    color: white;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #F0C869, #D64545);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(240, 200, 105, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(214, 69, 69, 0.4);
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

/* Section Styling */
.service-description,
.benefits-section,
.process-section,
.materials-techniques-section,
.customization-section,
.gallery-section,
.pricing-section,
.testimonials-section,
.contact-section {
    padding: 5rem 0;
}

.service-description {
    background: #f8f9fa;
}

.benefits-section {
    background: white;
}

.process-section {
    background: #f8f9fa;
}

.materials-techniques-section {
    background: white;
}

.customization-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-section {
    background: white;
}

.pricing-section {
    background: #f8f9fa;
}

.testimonials-section {
    background: white;
}

.contact-section {
    background: linear-gradient(135deg, #D64545 0%, #2C3E50 100%);
    color: white;
}

/* Section Headings */
section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2C3E50;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F0C869, #D64545);
    border-radius: 2px;
}

.contact-section h2 {
    color: white;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6c757d;
}

.contact-section .section-intro {
    color: rgba(255, 255, 255, 0.95);
}

/* Description Content */
.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.text-column {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.text-column p {
    margin-bottom: 1.5rem;
}

.text-column strong {
    color: #D64545;
    font-weight: 600;
}

.image-column img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-column img:hover {
    transform: scale(1.03);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(214, 69, 69, 0.15);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 200, 105, 0.1), transparent);
    transition: left 0.6s;
}

.benefit:hover::before {
    left: 100%;
}

.benefit-icon {
    font-size: 3.5rem;
    color: #D64545;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
}

.benefit p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(214, 69, 69, 0.2);
}

.step-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, #D64545, #F0C869);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(214, 69, 69, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
}

.step p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Techniques Grid */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.technique-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #D64545;
    transition: all 0.3s ease;
}

.technique-item:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 40px rgba(214, 69, 69, 0.2);
    border-left-width: 8px;
}

.technique-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #D64545;
    font-weight: 600;
}

.technique-item p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.technique-item strong {
    display: block;
    margin-top: 1.5rem;
    color: #2C3E50;
    font-size: 1.1rem;
}

/* Customization List */
.customization-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.customization-list li {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.customization-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(214, 69, 69, 0.15);
}

.customization-list .icon {
    color: #D64545;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.customization-list strong {
    color: #2C3E50;
    font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 69, 69, 0.9), rgba(44, 62, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-empty,
.gallery-error {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
    font-size: 1.2rem;
}

/* Pricing Table */
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.price-table thead {
    background: linear-gradient(135deg, #2C3E50, #D64545);
    color: white;
}

.price-table th {
    padding: 1.8rem 1.5rem;
    font-weight: 600;
    text-align: left;
    font-size: 1.1rem;
}

.price-table tbody tr {
    background: white;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.price-table tbody tr:hover {
    background: rgba(240, 200, 105, 0.1);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table td {
    padding: 1.5rem;
    font-size: 1.05rem;
}

.price-note {
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.6;
}

.price-note a {
    color: #D64545;
    text-decoration: none;
    font-weight: 600;
}

.price-note a:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: #F0C869;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-item blockquote {
    margin: 0;
    font-style: italic;
    line-height: 1.9;
    color: #495057;
    font-size: 1.05rem;
    position: relative;
}

.testimonial-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 3px solid #F0C869;
}

.testimonial-footer cite {
    font-style: normal;
    font-weight: 600;
    color: #D64545;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info,
.contact-form-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3,
.contact-form-container h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p,
.contact-form-container p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details .icon {
    color: #F0C869;
    font-size: 1.5rem;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #F0C869;
}

.contact-details strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-right: 0.5rem;
}

.large-cta {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 1.5rem;
    margin-top: 1rem;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-description,
    .benefits-section,
    .process-section,
    .materials-techniques-section,
    .customization-section,
    .gallery-section,
    .pricing-section,
    .testimonials-section,
    .contact-section {
        padding: 3.5rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 1rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .benefits-grid,
    .process-steps,
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
