/* Enhanced Hero Section Styling - Professional Designer Approach */

/* Brand Promise - Sophisticated tagline above main headline */
.brand-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 59, 115, 0.05) 0%, rgba(0, 150, 214, 0.05) 100%);
    border: 1px solid rgba(0, 150, 214, 0.1);
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #003B73;
    animation: fadeInUp 0.8s ease-out;
}

.promise-line {
    color: #003B73;
    font-weight: 600;
    position: relative;
}

.promise-line:hover {
    color: #0096D6;
    transition: color 0.3s ease;
}

.promise-separator {
    color: #0096D6;
    font-weight: 700;
    font-size: 14px;
}

/* Value Highlights - Visual emphasis on key benefits */
.value-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
    padding: 24px 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 150, 214, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 150, 214, 0.05) 0%, rgba(0, 59, 115, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: 0;
}

.highlight-item:hover::before {
    width: 100%;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 59, 115, 0.1);
    border-color: #0096D6;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    background: rgba(0, 150, 214, 0.1);
    border-radius: 50%;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: rgba(0, 150, 214, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.highlight-text {
    font-weight: 600;
    color: #003B73;
    font-size: 14px;
    letter-spacing: 0.3px;
    z-index: 1;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-promise {
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
        font-size: 14px;
        text-align: center;
    }
    
    .promise-separator {
        display: none;
    }
    
    .value-highlights {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
        margin: 24px 0;
    }
    
    .highlight-item {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .highlight-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .brand-promise {
        font-size: 12px;
        padding: 12px 16px;
    }
    
    .value-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 12px 8px;
        gap: 6px;
    }
    
    .highlight-icon {
        font-size: 18px;
    }
    
    .highlight-text {
        font-size: 12px;
    }
}

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

/* Enhanced Hero Content Spacing */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Improved Typography Hierarchy */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    font-weight: 700 !important;
    color: #003B73 !important;
    text-align: center !important;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    line-height: 1.6 !important;
    color: #4A5568 !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 32px auto !important;
}