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

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 40, 85, 0.75) 0%, rgba(0, 20, 40, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e3f2fd;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f5f5f5;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 300;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.4);
    background: linear-gradient(135deg, #26c6da 0%, #00acc1 100%);
    color: #ffffff;
}

.hero-cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 75vh;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-cta-button {
        padding: 16px 28px;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.service-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdff 0%, #e3f4fd 100%);
}

.features-content {
    padding-right: 30px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 25px;
    line-height: 1.2;
}

.features-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.features-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.features-grid {
    margin-top: 60px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 20px;
}

.feature-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.cta-section {
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.3);
}

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

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

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

@media (max-width: 768px) {
    .service-features {
        padding: 60px 0;
    }
    
    .features-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-image {
        height: 300px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .cta-section {
        margin-top: 60px;
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Block 3 */
.testimonials-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    overflow: hidden;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #3182ce);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
}

.testimonials-grid {
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.testimonial-image {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

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

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

.stars-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.stars-rating i {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.customer-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
}

.customer-location {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-indicators {
    margin-bottom: 50px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.cta-section {
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(65, 153, 225, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .testimonials-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .testimonials-showcase {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .trust-stats {
        padding: 30px 15px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Block 4 */
.process-workflow {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

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

.process-image:hover {
    transform: scale(1.02);
}

.process-content {
    padding-left: 40px;
}

.process-intro-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 25px;
}

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

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

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin: 20px 0;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 20px;
}

.step-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.process-guarantee {
    margin-bottom: 60px;
}

.guarantee-card {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.guarantee-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.guarantee-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.guarantee-features {
    margin-top: 30px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.guarantee-feature i {
    font-size: 1.3rem;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
}

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

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

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

.cta-button:hover {
    background: linear-gradient(135deg, #047857, #059669);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
    color: white;
}

.cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .process-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .process-intro-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .process-workflow {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .step-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .guarantee-card {
        padding: 40px 25px;
    }
    
    .guarantee-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

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

.contact-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" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23000" opacity="0.02"/><circle cx="30" cy="25" r="0.3" fill="%23000" opacity="0.015"/><circle cx="60" cy="40" r="0.4" fill="%23000" opacity="0.02"/><circle cx="80" cy="70" r="0.35" fill="%23000" opacity="0.018"/><circle cx="20" cy="80" r="0.45" fill="%23000" opacity="0.022"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.form-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.form-description {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 16px;
    line-height: 1.7;
}

.form-benefits {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
}

.form-container {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px 24px 0 0;
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.1rem;
    color: #2d3748;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

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

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    pointer-events: none;
    margin-top: 12px;
}

.form-input:focus + .input-icon {
    color: #667eea;
}

.submit-section {
    text-align: center;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 48px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.025em;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.submit-button:hover::before {
    left: 100%;
}

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

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

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

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

.form-notice {
    margin-top: 24px;
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-item i {
    color: #48bb78;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .input-group:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .badge-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 16px;
        text-align: center;
    }
}
