/* 
   Access Financial Services - New Banner/Hero Styles
   All classes prefixed with 'new-' 
*/

.new-hero-section {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 24px;
    padding-top: 120px; /* Space for the floating header */
    font-family: 'Poppins', sans-serif;
}

/* Background Image Overlay */
.new-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.new-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.new-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Column: Content --- */
.new-hero-content {
    color: #000000;
}

.new-hero-subtitle {
    display: block;
    color: #F42941;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.new-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 25px 0;
}

.new-hero-title span {
    color: #F42941;
}

.new-hero-para {
    font-size: 18px;
    color: rgba(0,0,0,0.8);
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 35px;
}

.new-hero-quote-btn {
    display: inline-block;
    background-color: #F42941;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(244, 41, 65, 0.3);
}

.new-hero-quote-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(244, 41, 65, 0.4);
}

/* --- Right Column: Glassmorphism Form --- */
.new-hero-form-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 50px;
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 420px;
    margin-left: auto;
}

/* Using the navy color for form background from theme */
.new-hero-form-box {
    background: rgba(5, 28, 44, 0.4); /* access-navy with opacity */
}

.new-form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.new-form-group {
    margin-bottom: 20px;
}

.new-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-left: 5px;
    opacity: 0.9;
}

.new-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.new-form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.new-form-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #F42941;
}

.new-form-textarea {
    resize: none;
    height: 100px;
}

.new-form-submit {
    width: 100%;
    background-color: #051C2C; /* access-navy */
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-form-submit:hover {
    background-color: #0d3652;
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .new-hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .new-hero-para { margin-left: auto; margin-right: auto; }
    .new-hero-form-box { margin-left: auto; margin-right: auto; }
    .new-hero-title { font-size: 36px; }
}
