
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    min-height: 85vh;
    object-fit: cover;
    object-position: center;
    max-height: 735px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.85) 0%, rgba(26, 32, 44, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.hero-text-container {
    max-width: 800px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #f7fafc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description-secondary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #cbd5e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f7fafc;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-item i {
    color: #90cdf4;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description,
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Block 2 */
.customer-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating .fas {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.author-location {
    color: #6c757d;
    margin: 0 0 8px 0;
    font-size: 0.95rem;
}

.purchase-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.stat-description, .stat-stars {
    color: #6c757d;
    font-size: 0.9rem;
}

.stat-stars .fas {
    color: #ffc107;
    margin: 0 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #dee2e6, transparent);
}

.testimonials-cta {
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonials-stats {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Block 3 */
.craftsmanship-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    margin-bottom: 80px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-reverse {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 0 0 45%;
    position: relative;
}

.step-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.step-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #90caf9;
}

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

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

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.metric-description {
    font-size: 1rem;
    color: #6c757d;
}

.process-cta {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
    }
    
    .step-item,
    .step-reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .step-visual {
        flex: none;
        width: 100%;
    }
    
    .step-image {
        height: 300px;
    }
    
    .step-title {
        font-size: 1.8rem;
    }
    
    .process-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .process-cta {
        padding: 40px 20px;
    }
}

/* Block 4 */
.sustainability-commitment {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sustainability-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sustainability-header {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.header-content {
    max-width: 600px;
}

.sustainability-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a5f4f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sustainability-subtitle {
    font-size: 1.2rem;
    color: #4a7c59;
    line-height: 1.7;
    margin-bottom: 0;
}

.header-visual {
    position: relative;
}

.sustainability-hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 95, 79, 0.15);
}

.sustainability-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(26, 95, 79, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 95, 79, 0.15);
    border-color: #7fb69e;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7fb69e, #5a9b7a);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-icon i {
    font-size: 1.8rem;
    color: white;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5f4f;
    margin-bottom: 1rem;
}

.pillar-description {
    color: #4a7c59;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pillar-stats {
    display: flex;
    gap: 2rem;
}

.stat-point {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7fb69e;
}

.stat-text {
    font-size: 0.8rem;
    color: #6b8e75;
    text-align: center;
}

.impact-metrics {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(26, 95, 79, 0.1);
}

.metrics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a5f4f;
    margin-bottom: 1rem;
}

.metrics-subtitle {
    color: #4a7c59;
    font-size: 1.1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fffe;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: #e8f5f3;
    transform: scale(1.02);
}

.metric-visual {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7fb69e, #5a9b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-visual i {
    font-size: 1.4rem;
    color: white;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f4f;
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: #4a7c59;
    margin-bottom: 0.2rem;
}

.metric-description {
    font-size: 0.85rem;
    color: #6b8e75;
}

.certifications-section {
    background: #1a5f4f;
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 4rem;
}

.certifications-content {
    text-align: center;
}

.certifications-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.certifications-description {
    color: #a3d5c7;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cert-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    padding: 1rem;
    border-radius: 50%;
}

.cert-name {
    color: #a3d5c7;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.sustainability-promise {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.promise-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a5f4f;
    margin-bottom: 1.5rem;
}

.promise-text {
    color: #4a7c59;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.promise-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.promise-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.promise-button.primary {
    background: linear-gradient(135deg, #7fb69e, #5a9b7a);
    color: white;
}

.promise-button.primary:hover {
    background: linear-gradient(135deg, #5a9b7a, #4a8165);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 182, 158, 0.3);
    color: white;
}

.promise-button.secondary {
    background: transparent;
    color: #4a7c59;
    border: 2px solid #7fb69e;
}

.promise-button.secondary:hover {
    background: #7fb69e;
    color: white;
    transform: translateY(-2px);
}

.promise-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 95, 79, 0.15);
}

@media (max-width: 768px) {
    .sustainability-header,
    .sustainability-promise {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sustainability-title {
        font-size: 2.5rem;
    }
    
    .sustainability-pillars {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-stats {
        justify-content: center;
    }
    
    .promise-actions {
        justify-content: center;
    }
    
    .promise-button {
        flex: 1;
        justify-content: center;
        min-width: 200px;
    }
}

/* Block 5 */
.product-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.categories-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-badge {
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.category-content {
    padding: 2rem;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.category-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #495057;
    font-size: 0.9rem;
}

.feature-item i {
    color: #28a745;
    width: 16px;
    font-size: 0.9rem;
}

.category-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-range {
    color: #6c757d;
    font-size: 0.9rem;
}

.category-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.categories-benefits {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.benefits-header {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.benefit-item:hover {
    background: #f8f9fa;
}

.benefit-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.benefit-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.categories-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: #667eea;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
    color: #667eea;
}

.cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 768px) {
    .categories-container {
        padding: 0 1rem;
    }
    
    .categories-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-content {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 6 */
.workshop-experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.workshop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.workshop-header {
    text-align: center;
    margin-bottom: 60px;
}

.workshop-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.workshop-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.workshop-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.workshop-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.workshop-image-gallery {
    position: relative;
}

.main-workshop-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.workshop-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-workshop-image:hover .workshop-hero-image {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

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

.thumbnail-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail-image:hover {
    transform: translateY(-3px);
    border-color: #e74c3c;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.workshop-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.details-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.details-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.experience-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.option-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.option-card:hover {
    border-color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.1);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.option-header i {
    color: #e74c3c;
    font-size: 1.3rem;
}

.option-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.option-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.option-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 600;
}

.detail-item i {
    color: #e74c3c;
    font-size: 0.8rem;
}

.workshop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.booking-subtitle {
    color: #6c757d;
    font-weight: 500;
}

.booking-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f3f4;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-top: 3px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.info-value {
    color: #6c757d;
    font-size: 0.95rem;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.booking-button.primary {
    background: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
}

.booking-button.primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    color: white;
}

.booking-button.secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.booking-button.secondary:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
}

.testimonial-highlight {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid #e74c3c;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.author-note {
    color: #6c757d;
    font-size: 0.9rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #f39c12;
    font-size: 0.9rem;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.workshop-features {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-description {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .workshop-title {
        font-size: 2.2rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .workshop-experience {
        padding: 60px 0;
    }
    
    .workshop-container {
        padding: 0 15px;
    }
    
    .workshop-title {
        font-size: 1.8rem;
    }
    
    .workshop-subtitle {
        font-size: 1.1rem;
    }
    
    .workshop-details {
        padding: 25px;
    }
    
    .booking-card {
        padding: 25px;
    }
    
    .experience-options {
        gap: 15px;
    }
    
    .option-card {
        padding: 20px;
    }
}

/* Block 7 */
.care-maintenance-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
}

.care-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.care-header {
    text-align: center;
    margin-bottom: 60px;
}

.care-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.care-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.care-content {
    display: grid;
    gap: 50px;
}

.care-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.care-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.care-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 40px 30px 30px;
}

.care-tip-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.care-tip-highlight i {
    font-size: 1.3rem;
    color: #fbbf24;
}

.care-sections {
    display: grid;
    gap: 40px;
}

.care-method {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.8rem;
    color: white;
}

.method-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.method-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.method-steps {
    display: grid;
    gap: 12px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.step-number {
    width: 28px;
    height: 28px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: #334155;
    font-weight: 500;
}

.drying-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.tip-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.tip-card i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip-card:first-child i {
    color: #dc2626;
}

.tip-card:last-child i {
    color: #059669;
}

.tip-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.tip-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f1f5f9;
    border-radius: 10px;
    color: #334155;
    font-weight: 500;
}

.storage-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.care-troubleshooting {
    padding: 50px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.troubleshooting-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.faq-question i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.faq-question h4 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.faq-answer {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.care-guarantee {
    padding: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border-radius: 20px;
    text-align: center;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge i {
    font-size: 2rem;
    color: white;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.guarantee-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.guarantee-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.guarantee-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #1e40af;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.guarantee-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: #1e40af;
    text-decoration: none;
}

.guarantee-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.guarantee-link:hover {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .care-title {
        font-size: 2rem;
    }
    
    .care-method {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .drying-tips {
        grid-template-columns: 1fr;
    }
    
    .storage-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .care-guarantee {
        padding: 40px 30px;
    }
    
    .guarantee-title {
        font-size: 1.6rem;
    }
}

/* Block 8 */
.order-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 80px;
}

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.form-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.form-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.consultation-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 60px 40px 40px;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.benefit-point i {
    color: #10b981;
    font-size: 1.2rem;
}

.form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.form-input {
    width: 100%;
    padding: 20px 0;
    border: none;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 1.1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    outline: none;
    padding-left: 24px;
    padding-right: 24px;
}

.form-input:focus {
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.input-underline {
    height: 2px;
    background: #e5e7eb;
    margin-top: 8px;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.form-input:focus + .input-underline {
    background: #3b82f6;
    transform: scaleX(1.02);
}

.submit-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 24px 40px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: -0.01em;
    margin-top: 16px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

.button-text {
    display: flex;
    align-items: center;
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(4px);
}

.form-assurance {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 0.95rem;
}

.assurance-item i {
    color: #10b981;
    font-size: 1rem;
}

.form-testimonial {
    grid-column: 1 / -1;
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.author-location {
    color: #6b7280;
    font-size: 0.95rem;
}

.consultation-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-guarantee {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.guarantee-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.guarantee-text {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-testimonial {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .consultation-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .form-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-container {
        padding: 0 16px;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .form-testimonial {
        padding: 40px 30px;
    }
    
    .consultation-stats {
        flex-direction: column;
    }
    
    .consultation-image {
        height: 400px;
    }
    
    .visual-overlay {
        padding: 40px 30px 30px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .submit-button {
        padding: 20px 32px;
        font-size: 1.1rem;
    }
    
    .consultation-image {
        height: 300px;
    }
}
