/* UTILBEN Connect Page Styles */

/* Smooth transitions */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Form enhancements */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(240, 76, 56, 0.25);
}

.btn-utilben {
    background: #101010;
    color: #fff;
    border: none;
    padding: 8px 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-utilben:hover {
    background: #333;
    color: #fff;
}

/* Benefits icons hover effect */
.benefits-icon {
    transition: transform 0.3s ease;
}

.benefits-icon:hover {
    transform: scale(1.1);
}

/* Navigation links hover effect */
.nav-link-utilben {
    transition: color 0.3s ease;
}

.nav-link-utilben:hover {
    color: #333 !important;
    text-decoration: none;
}

/* Loading animation for form submission */
.btn-loading {
    opacity: 0.6;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.partner-hero { 
    font-family: 'Roboto', sans-serif;
}

.partner-hero .corp-header-title {
    color: #000;
    font-size: 60px !important;
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 20px;
}

.partner-hero .corp-brand-subtitle {
    color: #000;
    font-size: 30px;
    font-weight: 700;
}

.partner-hero-col {
    padding-top: 110px; 
    padding-bottom: 80px;
}

/* Section Layouts */
.section-black {
    width: 100%;
    background-color: #000;
    padding: 44px 0;
}

.section-white {
    width: 100%;
    background-color: #fff;
    padding: 44px 0;
}

.section-cyan {
    width: 100%;
    background-color: #2fe5f9;
    padding: 44px 0;
}

.section-no-bottom-padding {
    padding-bottom: 0;
}

/* Typography Classes */
.heading-large-white {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 56px;
    color: #fff;
    margin: 0;
}

.heading-large-black {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 56px;
    color: #000;
    margin: 0;
}

.heading-medium-white {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 56px;
    color: #fff;
    margin-bottom: 55px;
}

.heading-medium-black {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 56px;
    color: #000;
    margin-bottom: 32px;
}

.text-white {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    margin: 0;
}

.text-black {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

.text-small-white {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    margin: 0;
}

.text-small-black {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    margin: 0;
}

.form-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 56px;
    color: #000;
    margin-bottom: 24px;
}

.form-subheading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #000;
    margin-bottom: 8px;
}

.form-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

/* Layout and Spacing */
.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-24 {
    margin-bottom: 24px;
}

.padding-horizontal-10 {
    padding: 0 10px;
}

/* Icon and Image Styles */
.section-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

.process-icon {
    width: 94px;
    height: 92px;
    margin-bottom: 12px;
}

.process-arrow {
    width: 48px;
    height: 25px;
}

.placeholder-image {
    width: 500px;
    height: 388px;
    background-color: #333;
    margin: 0 auto;
}

.handshake-image {
    width: 500px;
    background-color: #333;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 560px;
    height: 315px;
    max-width: 100%;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.ambassador-image-placeholder {
    width: 246px;
    height: 246px;
    background-color: #f0f0f0;
    margin: 0 auto 12px;
}

/* Action Cards */
.action-card {
    background-color: var(--primary-color);
    padding: 24px 12px;
    margin-bottom: 20px;
}

.action-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    margin: 0;
}

/* Form Styles */
.form-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #000;
    margin-bottom: 4px;
}

.form-input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 8px 10px;
    font-size: 15px;
}

.form-textarea {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 8px 10px;
    font-size: 15px;
    height: 135px;
}

/* Process Flow */
.process-flow .col-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Grid */
#de-ce-merita p {
    font-family: 'Roboto', sans-serif; 
    font-weight: 500; 
    font-size: 14px; 
    line-height: 18px; 
    color: #fff !important; 
    margin: 0;
}

.section-grey {
    background-color: #E2E6E8;
    width: 100%;
    padding: 44px 0;
}

.ambassador-card {
    margin-bottom: 24px;
}

.scopul-programului-col {
    padding-left: 40px;
}

.action-card {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Responsive typography */
@media (max-width: 768px) {
    .section-heading {
        font-size: 28px !important;
        line-height: 34px !important;
    }

    .partner-hero {
        padding: 0px 20px;
    }

    .partner-hero .corp-header-title {
        color: #000;
        font-size: 40px !important;
        font-weight: 700;
        text-align: left;
        line-height: 40px;
    }
    
    .partner-hero .corp-brand-subtitle {
        color: #000;
        font-size: 20px;
        font-weight: bold !important;
        text-align: left;
    }

    .content-menu h3 {
        font-family: Roboto;
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        text-align: left;
    }

    .content-menu-items {
        margin: 0px !important;
    }

    .content-menu-items a {
        margin-top: 10px !important;
    }
    
    /* Benefits section mobile */
    .benefits-grid .col-md {
        margin-bottom: 24px;
    }

    .ambassador-card {
        margin-bottom: 32px !important;
    }
    
    /* Video section mobile */
    .video-section .col-md-6:first-child div {
        width: 100% !important;
        height: 300px !important;
        max-width: 400px;
        margin: 0 auto 24px !important;
    }
    
    /* Bottom cards mobile */
    .bottom-cards {
        flex-direction: column !important;
    }
    
    .bottom-cards > div {
        min-height: 300px !important;
        padding: 200px 40px 0 40px !important;
    }
    
    .bottom-cards h3 {
        font-size: 18px !important;
    }
    
    .bottom-cards p {
        font-size: 14px !important;
    }

    .heading-large-white, .heading-large-black, 
    .heading-medium-white, .heading-medium-black {
        font-size: 36px;
        line-height: 42px;
    }
    
    .video-container {
        width: 100%;
        height: 250px;
        margin: 0 auto 24px;
    }
    
    .ambassador-image-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 0 12px 0;
    }

    .process-arrow-col {
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .process-arrow-col .process-arrow {
        margin: 40px 0;
        width: 48px;
        height: 25px;
        transform: rotate(90deg);
    }

    .heading-medium-white {
        margin-bottom: 12px;
    }

    .handshake-image {
        width: 100%;
    }

    #scopul-programului .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    #scopul-programului .container .row .col-12:first-child {
        padding: 0 !important;
    }

    .scopul-programului-col {
        padding-left: 15px;
    }

    #cine-poate-fi-partener div,
    #cine-poate-fi-partener p {
        text-align: left !important;
    }

    .scopul-programului-col {
        max-width: 540px !important;
        margin: 0 auto;
    }
}

@media (max-width: 576px) { 
    /* Form adjustments */
    .form-group label {
        font-size: 14px !important;
    }
    
    .form-control {
        font-size: 14px !important;
        padding: 6px 8px !important;
    }
    
    /* Button adjustments */
    button[type="submit"] {
        font-size: 16px !important;
        padding: 6px 24px !important;
    }


    .partner-hero-col {
        padding-top: 40px;
    }


    .heading-large-white, .heading-large-black,
    .heading-medium-white, .heading-medium-black {
        font-size: 28px;
        line-height: 34px;
    }
}
