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

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(25, 25, 112, 0.75) 100%);
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-background,
.hero-overlay {
    position: absolute;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    color: white;
    padding: 60px 0;
}

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

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(238, 90, 36, 0.4);
    color: white;
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.hero-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Block 2 */
.ai-innovation-showcase {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            overflow: hidden;
        }

        .innovation-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .innovation-description {
            font-size: 1.2rem;
            color: #5a6c7d;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .ai-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .ai-feature-item {
            display: flex;
            align-items: flex-start;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .ai-feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.95);
        }

        .feature-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;
            margin-right: 1rem;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .feature-text p {
            color: #6c757d;
            margin: 0;
            font-size: 0.9rem;
        }

        .innovation-visual {
            position: relative;
        }

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

        .innovation-stats {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 1rem;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            backdrop-filter: blur(10px);
            min-width: 80px;
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: #667eea;
        }

        .stat-label {
            display: block;
            font-size: 0.8rem;
            color: #6c757d;
            margin-top: 0.2rem;
        }

        .ai-products-carousel {
            margin-top: 4rem;
        }

        .carousel-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 3rem;
        }

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

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

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

        .product-image {
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .ai-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.8rem;
        }

        .product-info p {
            color: #6c757d;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .feature-tag {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: 200% 200%;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @media (max-width: 768px) {
            .innovation-title {
                font-size: 2.2rem;
            }
            
            .ai-features-grid {
                grid-template-columns: 1fr;
            }
            
            .innovation-stats {
                position: static;
                justify-content: center;
                margin-top: 1rem;
            }
            
            .products-container {
                grid-template-columns: 1fr;
            }
        }

/* Block 3 */
.sustainability-tech-2025 {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-tech-2025::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23e8f5e8" opacity="0.5"/></svg>') repeat;
    background-size: 50px 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.sustainability-tech-2025 > .container {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 4rem;
}

.eco-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sustainability-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
}

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

.green-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.green-tech-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.1);
}

.green-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.green-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.green-icon-wrapper i {
    font-size: 24px;
    color: white;
}

.green-content h4 {
    color: #2E7D32;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.green-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.progress-bar {
    background: #E8F5E8;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 3px;
    animation: progressLoad 2s ease-out;
}

.progress-fill[data-progress="92"] { width: 92%; }
.progress-fill[data-progress="78"] { width: 78%; }
.progress-fill[data-progress="85"] { width: 85%; }
.progress-fill[data-progress="95"] { width: 95%; }

.progress-text {
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 600;
}

.eco-showcase {
    position: relative;
    text-align: center;
}

.eco-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-stats {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    animation: float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(2) { animation-delay: 1s; }
.stat-bubble:nth-child(3) { animation-delay: 2s; }

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4CAF50;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}

.eco-products-showcase {
    margin-top: 4rem;
}

.eco-products-title {
    text-align: center;
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

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

.eco-product-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.eco-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.eco-product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.eco-product-item:hover .eco-product-image {
    transform: scale(1.05);
}

.eco-certification {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.eco-product-details {
    padding: 1.5rem;
}

.eco-product-details h5 {
    color: #2E7D32;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.eco-product-details p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.eco-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.eco-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #E8F5E8;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 500;
}

.eco-feature i {
    font-size: 0.7rem;
}

.sustainability-impact {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.impact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.impact-header h3 {
    font-size: 2rem;
    color: #2E7D32;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.impact-header p {
    color: #666;
    font-size: 1.1rem;
}

.impact-metrics {
    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: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border-left: 4px solid #4CAF50;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 20px;
    color: white;
}

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E7D32;
    line-height: 1;
}

.metric-unit {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

@keyframes progressLoad {
    from { width: 0; }
    to { width: var(--progress); }
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

@media (max-width: 768px) {
    .sustainability-title {
        font-size: 2.2rem;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
        transform: none;
    }
    
    .stat-bubble {
        flex: 1;
        min-width: 80px;
    }
    
    .green-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-products-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-item {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .floating-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .eco-features {
        justify-content: center;
    }
}

/* Block 4 */
.contact-form-2025 {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-2025::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    transform: rotate(15deg);
}

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

.form-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.form-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

.form-visual-side {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.form-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.form-benefits {
    position: relative;
    z-index: 3;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.form-content-side {
    padding: 3rem;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-label i {
    color: #667eea;
    width: 20px;
}

.form-input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
}

.form-input:focus + .input-focus-line {
    transform: scaleX(1);
}

.input-focus-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-select {
    cursor: pointer;
}

.form-privacy {
    margin: 1rem 0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-input {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

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

.privacy-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

.button-text {
    transition: opacity 0.3s ease;
}

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

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

.button-loading {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.trust-item i {
    color: #28a745;
}

.contact-info-sidebar {
    padding: 2rem 0;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

.info-header i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-header h4 {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.contact-method:last-child {
    border-bottom: none;
}

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

.method-details {
    flex: 1;
}

.method-details strong {
    display: block;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.method-details span {
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.method-details small {
    color: #6c757d;
    font-size: 0.85rem;
}

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

.offer-content h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.offer-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.offer-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.offer-cta {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.offer-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .form-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-visual-side {
        order: 2;
        min-height: 300px;
    }
    
    .form-content-side {
        order: 1;
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-content-side,
    .form-visual-side {
        padding: 2rem;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .form-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .info-card,
    .consultation-offer {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .form-content-side,
    .form-visual-side {
        padding: 1.5rem;
    }
    
    .submit-button {
        padding: 1.2rem 2rem;
    }
}
