﻿/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    position: relative;
   /* background-image: url("../img/background.jpg");*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================
   OVERLAY
========================= */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(240, 240, 240, 0.85);
    z-index: 0;
}

/* =========================
   MAIN CONTAINER
========================= */

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

/* =========================
   LEFT SECTION
========================= */

.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

/* =========================
   RIGHT SECTION
========================= */

.right-section {
    flex: 1;
    max-width: 550px;
}

    .right-section h1 {
        font-family: Lato, ui-sans-serif;
        color: #0F2745;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.2;
        /*color: #111;*/
        margin-bottom: 20px;
    }

.description {
    font-size: 18px;
    line-height: 1.7;
    /* color: #444;*/
     color: #B07933;
    margin-bottom: 25px;
}
.contact-text {
    font-size: 18px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}


/* =========================
   VEREZENA PREMIUM FORM
========================= */

.contact-form {
    background: rgba(255,255,255,0.96);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(201,154,61,0.25);
    box-shadow: 0 20px 50px rgba(6,21,47,0.18);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}


    /* Gold top line */

    .contact-form::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #06152f, #c99a3d );
    }



    /* =========================
 INPUTS
========================= */


    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px 18px;
        background: #f8f8f8;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 15px;
        color: #06152f;
        outline: none;
        transition: .3s ease;
    }



        .contact-form input:focus,
        .contact-form textarea:focus {
            background: white;
            border-color: #c99a3d;
            box-shadow: 0 0 0 4px rgba(201,154,61,.15);
        }



    .contact-form textarea {
        height: 110px;
        resize: none;
    }



        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #777;
        }



    /* =========================
 BUTTON
========================= */


    .contact-form button {
        height: 48px;
        width: 100%;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, #06152f, #1c3156);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: .5px;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }


        .contact-form button:hover {
            background: linear-gradient( 135deg, #c99a3d, #e2b65c );
            color: #06152f;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201,154,61,.35);
        }
        .contact-form button:disabled {
            opacity: 0.8;
            cursor: not-allowed;
            transform: none;
        }

/* =========================
   FOOTER
========================= */

.footer-title {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .right-section {
        max-width: 100%;
    }

    .logo img {
        max-width: 250px;
    }

    .right-section h1 {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
    }

    .contact-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .container {
        padding: 25px;
    }

    .right-section h1 {
        font-size: 26px;
    }

    .description {
        font-size: 14px;
    }

    .contact-text {
        font-size: 16px;
    }

    .contact-form button {
        width: 100%;
    }
}
