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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-content {
    padding: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    min-width: 180px;
    text-align: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    color: #ffffff;
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: #333;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

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

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.features-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

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

.features-image-grid {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.grid-image {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    object-fit: cover;
}

.main-image {
    width: 70%;
    height: 60%;
    position: relative;
    z-index: 3;
}

.secondary-image {
    width: 45%;
    height: 35%;
    position: relative;
    float: right;
    margin-top: -10%;
    margin-right: 5%;
    z-index: 2;
}

.accent-image {
    width: 40%;
    height: 30%;
    position: relative;
    float: left;
    margin-top: -15%;
    margin-left: 10%;
    z-index: 1;
}

.grid-image:hover {
    transform: scale(1.05);
    z-index: 4;
}

.stats-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.stat-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .features-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .features-description {
        text-align: center;
    }
    
    .features-image-grid {
        height: 400px;
        margin-top: 2rem;
    }
    
    .main-image,
    .secondary-image,
    .accent-image {
        position: static;
        width: 100%;
        height: 200px;
        float: none;
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 575.98px) {
    .smart-features {
        padding: 3rem 0;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .features-description {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stats-container {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
}

/* Block 3 */
.innovative-solutions {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 50%, #fff8f8 100%);
    position: relative;
    overflow: hidden;
}

.innovative-solutions::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.innovative-solutions > .container {
    position: relative;
    z-index: 2;
}

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

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

.mb-6 {
    margin-bottom: 4rem;
}

.solutions-image-showcase {
    position: relative;
    height: 500px;
}

.showcase-main-wrapper {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.showcase-primary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
}

.showcase-primary:hover {
    transform: scale(1.05);
}

.showcase-floating {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-item {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    animation: float 6s ease-in-out infinite;
}

.floating-item:first-child {
    position: absolute;
    top: 20px;
    right: -30px;
    animation-delay: -2s;
}

.floating-item:last-child {
    position: absolute;
    bottom: 40px;
    right: -40px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.solutions-content-panel {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.panel-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

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

.innovation-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff8f8 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.panel-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #667eea;
    font-weight: 500;
}

.feature-highlight i {
    width: 20px;
    text-align: center;
}

.technology-grid {
    margin: 5rem 0;
}

.tech-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

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

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

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

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

.tech-card-body {
    padding: 2rem;
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.tech-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-progress {
    position: relative;
}

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    width: var(--progress, 0%);
    animation: progressFill 2s ease-out;
}

.progress-bar[data-progress="94"]::after { --progress: 94%; }
.progress-bar[data-progress="87"]::after { --progress: 87%; }
.progress-bar[data-progress="99"]::after { --progress: 99%; }

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: var(--progress); }
}

.progress-text {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

.future-preview {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.preview-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.preview-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.preview-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #667eea, transparent);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6c757d;
    margin: 0;
}

.preview-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.preview-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: #667eea;
    backdrop-filter: blur(10px);
    animation: floatElements 8s ease-in-out infinite;
}

.element-1 {
    top: 30px;
    left: 20px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: -2.5s;
}

.element-3 {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -5s;
}

@keyframes floatElements {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-15px) scale(1.05); opacity: 1; }
}

@media (max-width: 992px) {
    .solutions-main-title {
        font-size: 2.5rem;
    }
    
    .solutions-image-showcase {
        height: 350px;
        margin-bottom: 3rem;
    }
    
    .floating-item {
        width: 80px;
        height: 80px;
    }
    
    .solutions-content-panel {
        padding: 2rem;
    }
    
    .innovation-metrics {
        flex-direction: column;
    }
    
    .future-preview {
        padding: 2.5rem;
    }
    
    .preview-timeline {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .innovative-solutions {
        padding: 4rem 0;
    }
    
    .solutions-main-title {
        font-size: 2rem;
    }
    
    .solutions-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-floating {
        display: none;
    }
    
    .panel-features {
        flex-direction: column;
    }
    
    .future-preview {
        padding: 1.5rem;
    }
    
    .preview-visual {
        height: 250px;
        margin-top: 2rem;
    }
    
    .floating-element {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Block 4 */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.form-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-content {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    height: 100%;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.benefits-grid {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: white;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.benefit-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.trust-badge {
    width: 24px;
    height: 24px;
}

.form-container {
    padding: 3rem 2.5rem;
    background: white;
}

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

.form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.input-group-wrapper {
    margin-bottom: 2rem;
}

.input-wrapper {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

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

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

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

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

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

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-disclaimer i {
    color: #10b981;
}

.testimonial-preview {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial-preview .testimonial-avatar {
    margin-bottom: 1rem;
}

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

.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    color: #1e293b;
    font-size: 0.9rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .form-content {
        padding: 2.5rem 2rem;
    }
    
    .form-container {
        padding: 2.5rem 2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .form-content, .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .trust-indicators {
        flex-direction: column;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
