/* ============================= */
/* CONTACT HERO SECTION */
/* ============================= */

.contact-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.contact-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.contact-content {
    background: #f5f7fb;
    padding: 60px 20px;
    text-align: center;
}

.contact-content h1 {
    font-size: 32px;
    font-weight: 600;
    color: #4A7DFF;
    margin-bottom: 15px;
}

.contact-content p {
    max-width: 650px;
    margin: 0 auto 25px auto;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

/* RESPONSE BOX */
.contact-response {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #495057;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-response img {
    width: 25px;
    height: 25px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .contact-image img {
        height: 280px;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .contact-content h1 {
        font-size: 24px;
    }

    .contact-content p {
        font-size: 14px;
    }

    .contact-response {
        flex-direction: row;
        font-size: 13px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {

    .contact-image img {
        height: 220px;
    }

    .contact-content h1 {
        font-size: 20px;
    }

    .contact-content p {
        font-size: 13px;
    }
}



/* _________ */



.contact-section {
    padding: 60px 20px;
    background: #f5f7fb;
}

.contact-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d6efd;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #0b5ed7;
}

.alert-success {
    background: #6ce580;
    color: #ffffff;
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsive */
@media(max-width: 600px) {
    
}

/* ============================= */
/* CONTACT SIDE BY SIDE */
/* ============================= */

.contact-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.contact-container {
    flex: 1;
}

.contact-side-image {
    flex: 1;
    display: flex;
}

.contact-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-side-image {
        order: -1; /* foto del mbi form */
    }

    .contact-side-image img {
        height: 300px;
    }

    .contact-container { 
    margin: 0px; 
}
}


/* ============================= */
/* SECURITY SECTION IMPROVED */
/* ============================= */

.security-section {
    padding: 80px 20px;
    background: #ffffff;
}

.security-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.security-icon {
    flex: 0 0 160px;
    text-align: center;
}

.security-icon img {
    width: 130px;
    max-width: 100%;
    height: auto;
}

.security-content {
    flex: 1;
    max-width: 700px;
}

.security-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #4A7DFF;
    margin-bottom: 20px;
}

.security-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.security-content ul {
    margin: 15px 0 20px 20px;
    padding: 0;
}

.security-content li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .security-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .security-icon {
        flex: unset;
    }

    .security-content {
        max-width: 100%;
    }

    .security-content ul {
        list-style-position: inside;
        margin-left: 0;
    }
}

@media (max-width: 480px) {

    .security-section {
        padding: 50px 20px;
    }

    .security-content h2 {
        font-size: 22px;
    }

    .security-content p,
    .security-content li {
        font-size: 14px;
    }

    .security-icon img {
        width: 100px;
    }
}

/* ============================= */
/* INFO SECTIONS IMPROVED */
/* ============================= */

.contact-info-section{
    background-color: white;
}

.trust-section{
    background-color: white;
}

.partnership-section{
    background-color: white;
}

.info-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px; 
}

.info-box {
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-icon {
    flex: 0 0 140px;
    text-align: center;
}

.info-icon img {
    width: 110px;
    max-width: 100%;
    height: auto;
}

.info-content {
    flex: 1;
    max-width: 700px;
}

.info-content h2 {
    font-size: 26px;
    color: #4A7DFF;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.trust-list {
    margin: 15px 0 0 20px;
    padding: 0;
}

.trust-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .info-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .info-icon {
        flex: unset;
    }

    .info-content {
        max-width: 100%;
    }

    .trust-list {
        list-style-position: inside;
        margin-left: 0;
    }
}

@media (max-width: 480px) {

    .info-container {
        padding: 50px 20px;
    }

    .info-content h2 {
        font-size: 22px;
    }

    .info-content p,
    .trust-list li {
        font-size: 14px;
    }

    .info-icon img {
        width: 90px;
    }
}



/* ============================= */
/* DIVIDER VETEM PER INFO SEKSIONET */
/* ============================= */

.security-section,
.contact-info-section,
.partnership-section,
.trust-section {
    position: relative;
}

.security-section::after,
.contact-info-section::after,
.partnership-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #dfe3eb, transparent);
    margin-top: 70px;
}