/* ========================================
   Home Page Custom Styles
   ======================================== */

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #144759 0%, #0d2f3a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-decorative-circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.how-it-works-decorative-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.how-it-works-container {
    position: relative;
    z-index: 1;
}

.how-it-works-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.how-it-works-badge-text {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.how-it-works-badge-icon {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 8px;
}

.how-it-works-title {
    font-family: 'Raleway', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.how-it-works-subtitle {
    font-family: 'Roboto', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.how-it-works-connection-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 4px;
    z-index: 0;
}

.how-it-works-connection-line-bg {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.how-it-works-connection-line-fill {
    position: absolute;
    width: 50%;
    height: 100%;
    background: white;
    left: 0;
    border-radius: 10px;
}

.how-it-works-step-wrapper {
    position: relative;
    z-index: 1;
}

.how-it-works-step-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.how-it-works-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.how-it-works-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #144759, #0d2f3a);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(20, 71, 89, 0.4);
    color: white;
    position: relative;
}

.how-it-works-step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #4fc1f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-step-badge-icon {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.how-it-works-step-icon {
    font-size: 50px;
    color: #144759;
}

.how-it-works-step-title {
    font-family: 'Raleway', sans-serif;
    color: #333;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.3px;
}

.how-it-works-step-text {
    font-family: 'Roboto', sans-serif;
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

.how-it-works-cta-button {
    font-family: 'Raleway', sans-serif;
    color: #144759;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 17px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
    background: white;
    text-decoration: none;
}

.how-it-works-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    color: #144759;
    text-decoration: none;
}

.how-it-works-cta-icon {
    font-size: 28px;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .how-it-works-subtitle {
        font-size: 15px;
    }
    
    .how-it-works-badge {
        padding: 10px 20px;
    }
    
    .how-it-works-badge-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .how-it-works-step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .how-it-works-step-badge {
        width: 24px;
        height: 24px;
        top: -3px;
        right: -3px;
    }
    
    .how-it-works-step-badge-icon {
        font-size: 12px;
    }
    
    .how-it-works-step-icon {
        font-size: 40px;
    }
    
    .how-it-works-step-title {
        font-size: 18px;
    }
    
    .how-it-works-step-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .how-it-works-cta-button {
        padding: 15px 30px;
        font-size: 15px;
        gap: 10px;
        width: 100%;
        justify-content: center;
        max-width: 100%;
    }
    
    .how-it-works-cta-icon {
        font-size: 24px;
    }
    
    .how-it-works-cta-button span {
        display: inline;
    }
}

@media (max-width: 576px) {
    .how-it-works-title {
        font-size: 24px;
    }
    
    .how-it-works-cta-button {
        padding: 14px 25px;
        font-size: 14px;
    }
}

/* ========================================
   Home Section Headers
   ======================================== */

.home-section-badge {
    display: inline-block;
    background: rgba(20, 71, 89, 0.1);
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid rgba(20, 71, 89, 0.2);
}

.home-section-badge-text {
    color: #144759;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-section-badge-text i {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.home-section-title {
    font-family: 'Raleway', sans-serif;
    color: #333;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.home-section-subtitle {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   Why Choose Us Section
   ======================================== */

.home-feature-box {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.home-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(20, 71, 89, 0.15);
    border-color: #4fc1f0;
}

.home-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #144759, #0d2f3a);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.home-feature-box:hover .home-feature-icon {
    background: linear-gradient(135deg, #4fc1f0, #144759);
    transform: scale(1.1);
}

.home-feature-icon i {
    font-size: 32px;
    color: white;
}

.home-feature-title {
    font-family: 'Raleway', sans-serif;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.home-feature-text {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive for Section Headers */
@media (max-width: 767px) {
    .home-section-badge {
        padding: 6px 18px;
    }
    
    .home-section-badge-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .home-section-badge-text i {
        font-size: 14px;
    }
    
    .home-section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .home-section-subtitle {
        font-size: 14px;
    }
    
    .home-feature-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .home-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .home-feature-icon i {
        font-size: 28px;
    }
    
    .home-feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .home-feature-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .home-section-title {
        font-size: 20px;
    }
    
    .home-section-subtitle {
        font-size: 13px;
    }
}
