
/* Block 1 */
.hero-banner {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.8) 0%, rgba(52, 58, 64, 0.6) 50%, rgba(73, 80, 87, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 15px;
}

.hero-text-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 300;
    color: #f8f9fa;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 700px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-description-secondary {
    font-size: 1.1rem;
    color: #dee2e6;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 650px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #f8f9fa;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature-icon {
    color: #ffd700;
    font-size: 1.2rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: none;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: #ffffff;
    background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: none;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 75vh;
    }
    
    .hero-text-container {
        padding: 40px 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Block 2 */
.crafting-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

.process-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.process-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 600px;
}

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

.process-main-image:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
}

.showcase-stats {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 1.5rem;
    color: white;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-description {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

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

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

.benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-content {
    padding: 2rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-text {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.process-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    color: #667eea;
}

@media (max-width: 768px) {
    .crafting-process {
        padding: 3rem 0;
    }
    
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-benefits {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .showcase-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Block 3 */
.testimonials-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-badge {
    text-align: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4a574;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #d4a574;
    position: relative;
}

.testimonial-card.featured::before {
    content: "⭐ Featured Review";
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #d4a574;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

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

.customer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.customer-location {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1rem;
}

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

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.order-info {
    color: #6c757d;
    font-weight: 500;
}

.verified-badge {
    color: #28a745;
    font-weight: 600;
}

.verified-badge i {
    margin-right: 0.5rem;
}

.testimonials-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.summary-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.summary-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    color: #d4a574;
    font-size: 1.2rem;
    width: 20px;
}

.trust-text {
    font-weight: 600;
    color: #495057;
}

.testimonials-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.testimonials-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    color: white;
}

.customers-collage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-stats {
        gap: 1rem;
    }
    
    .stat-badge {
        padding: 1rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
    }
}

/* Block 4 */
.eco-sustainability {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
}

.eco-sustainability::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="leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23059669" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    pointer-events: none;
}

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

.header-content {
    position: relative;
    z-index: 2;
}

.sustainability-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sustainability-subtitle {
    font-size: 1.25rem;
    color: #047857;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.eco-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.eco-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
    border: 2px solid #d1fae5;
}

.eco-icon {
    color: #059669;
    font-size: 1.25rem;
}

.badge-text {
    font-weight: 600;
    color: #065f46;
    font-size: 0.95rem;
}

.header-image {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(5, 150, 105, 0.2);
}

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

.sustainability-hero:hover {
    transform: scale(1.05);
}

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

.sustainability-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(5, 150, 105, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #d1fae5;
}

.sustainability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.sustainability-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.overlay-icon {
    color: #059669;
    font-size: 1.25rem;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1rem;
}

.card-description {
    color: #047857;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #047857;
    font-weight: 500;
}

.impact-metrics {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(5, 150, 105, 0.1);
    border: 1px solid #d1fae5;
}

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

.metrics-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1rem;
}

.metrics-subtitle {
    font-size: 1.125rem;
    color: #047857;
}

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

.metric-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border: 1px solid #a7f3d0;
}

.metric-icon-wrapper {
    background: #059669;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.metric-icon {
    color: white;
    font-size: 1.5rem;
}

.metric-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #047857;
    margin-bottom: 0.75rem;
}

.metric-description {
    font-size: 0.9rem;
    color: #059669;
    line-height: 1.5;
    margin: 0;
}

.sustainability-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    color: #a7f3d0;
    font-size: 1.125rem;
}

.feature-text {
    font-weight: 500;
    font-size: 1rem;
}

.sustainability-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #065f46;
    padding: 1.25rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.sustainability-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: #047857;
}

.cta-image {
    border-radius: 1.5rem;
    overflow: hidden;
}

.cta-showcase {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .sustainability-header,
    .sustainability-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sustainability-title {
        font-size: 2.5rem;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-badges {
        justify-content: center;
    }
    
    .card-stats {
        justify-content: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        align-items: center;
    }
}

/* Block 5 */
.fragrance-collections {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

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

.collections-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.collection-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.collection-card.premium {
    border: 3px solid #f8d7da;
    background: linear-gradient(145deg, #fff, #f8f9fa);
}

.collection-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.8), rgba(52,73,94,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.collection-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.overlay-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.collection-content {
    padding: 40px;
}

.collection-header-section {
    margin-bottom: 24px;
}

.collection-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

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

.rating-text {
    color: #6c757d;
    font-size: 0.95rem;
}

.collection-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 32px;
}

.fragrance-list {
    margin-bottom: 32px;
}

.fragrance-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.fragrance-item:hover {
    background: #e9ecef;
    transform: translateX(8px);
}

.fragrance-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fragrance-details {
    flex: 1;
}

.fragrance-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.fragrance-notes {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.fragrance-mood {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mood-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mood-tag.passionate { background: #fde2e7; color: #e91e63; }
.mood-tag.elegant { background: #f3e5f5; color: #9c27b0; }
.mood-tag.mysterious { background: #e8eaf6; color: #3f51b5; }
.mood-tag.sensual { background: #fce4ec; color: #e91e63; }
.mood-tag.celebratory { background: #fff8e1; color: #ff9800; }
.mood-tag.luxurious { background: #f1f8e9; color: #689f38; }
.mood-tag.refreshing { background: #e0f2f1; color: #00796b; }
.mood-tag.clarifying { background: #e8f5e8; color: #4caf50; }
.mood-tag.calming { background: #e3f2fd; color: #1976d2; }
.mood-tag.peaceful { background: #f3e5f5; color: #7b1fa2; }
.mood-tag.grounding { background: #efebe9; color: #5d4037; }
.mood-tag.harmonizing { background: #fce4ec; color: #c2185b; }
.mood-tag.cozy { background: #fff3e0; color: #f57c00; }
.mood-tag.warming { background: #ffebee; color: #d32f2f; }
.mood-tag.fresh { background: #e8f5e8; color: #388e3c; }
.mood-tag.uplifting { background: #fff8e1; color: #fbc02d; }
.mood-tag.breezy { background: #e0f7fa; color: #0097a7; }
.mood-tag.tropical { background: #e8f5e8; color: #689f38; }
.mood-tag.bold { background: #ffebef; color: #c62828; }
.mood-tag.sophisticated { background: #efebe9; color: #6d4c41; }
.mood-tag.rugged { background: #e8f5e8; color: #558b2f; }
.mood-tag.natural { background: #f1f8e9; color: #689f38; }
.mood-tag.regal { background: #f3e5f5; color: #7b1fa2; }
.mood-tag.warm { background: #fff8e1; color: #f57c00; }

.collection-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 2px solid #e9ecef;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collections-bottom {
    margin-top: 60px;
}

.custom-collection-banner {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 24px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.custom-collection-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.banner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #ecf0f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 24px;
}

.banner-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-icon {
    color: #3498db;
    font-size: 1.1rem;
}

.consultation-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.banner-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-action, .secondary-action {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-action {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
    color: white;
}

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

.secondary-action:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collections-title {
        font-size: 2.5rem;
    }
    
    .collection-content {
        padding: 30px 20px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .custom-collection-banner {
        padding: 40px 20px;
    }
    
    .banner-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .collection-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Block 6 */
.expertise-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.expertise-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><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;
}

.expertise-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.expertise-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: start;
}

.expertise-image-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.expertise-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expertise-image-section:hover .expertise-main-image {
    transform: scale(1.05);
}

.expertise-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.experience-badge {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

.badge-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 8px;
}

.expertise-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.detail-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.detail-icon {
    font-size: 2rem;
    color: white;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.3;
}

.detail-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 24px;
}

.detail-stats {
    display: flex;
    gap: 32px;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 4px;
    text-align: center;
}

.expertise-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
}

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

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

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.showcase-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.showcase-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.expertise-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cta-content {
    color: white;
}

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

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.expertise-guarantees {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guarantee-icon {
    font-size: 1.3rem;
    color: #e74c3c;
    width: 24px;
}

.guarantee-text {
    font-size: 1rem;
    font-weight: 500;
}

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

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

.cta-image {
    position: relative;
}

.signature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 1200px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .expertise-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .expertise-showcase {
        padding: 80px 0;
    }
    
    .expertise-title {
        font-size: 2.5rem;
    }
    
    .expertise-subtitle {
        font-size: 1.1rem;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .detail-stats {
        justify-content: center;
    }
    
    .expertise-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-cta-section {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .expertise-guarantees {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .expertise-title {
        font-size: 2rem;
    }
    
    .detail-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .detail-icon {
        font-size: 1.5rem;
    }
    
    .detail-title {
        font-size: 1.3rem;
    }
}

/* Block 7 */
.service-advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.service-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

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

.advantages-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 2px;
}

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

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

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

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

.advantage-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.advantage-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.advantage-overlay-icon {
    font-size: 1.2rem;
    color: #ff6b6b;
}

.advantage-content {
    padding: 30px;
}

.advantage-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon {
    font-size: 1.5rem;
    color: white;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.advantage-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.advantage-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantages-guarantee {
    background: white;
    border-radius: 25px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.guarantee-content {
    flex: 1;
}

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

.guarantee-description {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #48cab2, #54a0ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
}

.guarantee-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

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

.guarantee-image {
    flex: 0 0 300px;
}

.guarantee-visual {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.advantages-cta {
    text-align: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.advantages-cta::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" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.cta-primary,
.cta-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    border: none;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
    color: white;
}

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

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

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantages-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .guarantee-image {
        flex: none;
    }
    
    .advantage-metrics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-advantages {
        padding: 60px 0;
    }
    
    .advantages-title {
        font-size: 2rem;
    }
    
    .advantages-subtitle {
        font-size: 1.1rem;
    }
    
    .advantage-content {
        padding: 25px;
    }
    
    .advantages-cta {
        padding: 40px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.form-header {
    padding-right: 40px;
}

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

.form-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    font-size: 1rem;
}

.feature-text {
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.5);
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

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

.form-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-input:focus + .input-icon {
    color: #3b82f6;
}

.form-actions {
    text-align: center;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    letter-spacing: -0.01em;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.button-text {
    flex: 1;
}

.button-icon {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

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

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    text-align: center;
}

.testimonial-snippet {
    grid-column: 1 / -1;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

.snippet-quote {
    font-size: 1.125rem;
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.snippet-quote::before,
.snippet-quote::after {
    content: '"';
    color: #3b82f6;
    font-size: 1.5em;
    font-weight: 700;
}

.snippet-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-location {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.author-rating {
    display: flex;
    gap: 2px;
}

.author-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 600px;
    }
    
    .form-header {
        padding-right: 0;
        text-align: center;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.125rem;
    }
    
    .snippet-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .form-input {
        padding: 14px 16px 14px 48px;
    }
    
    .submit-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .testimonial-snippet {
        margin-top: 40px;
        padding: 24px 20px;
    }
}
