* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #CA9E67;
    --bg-dark: #181514;
    --bg-form: rgba(15, 15, 21, 0);
    --text-light: #ffffff;
    --text-gray: #d6d6d6;
    --text-muted: #ffffffc4;
    --border-color: #b79c6d;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    color: #626262;
    background-color: var(--bg-dark);
    margin: 0;
    padding: 0;
}

#Wrapper {
    background-position: center center !important;
    background-image: url(../images/background.webp) !important;
    max-width: 100%;
    background-size: cover !important;
    margin: 0 auto;
    min-height: 100vh;
}

.wp-block-image {
    text-align: center;
}

/* Header */
#Header_wrapper {}

#Top_bar {
    padding: 100px 0 0 0;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    text-align: center;
    padding: 15px 0;
}

.logo img {
    width: 300px;
    height: auto;
}

/* Content */
#Content {
    padding: 50px 0;
}

.section {
    padding: 60px 0;
}

h1 {

    font-size: 50px;
    line-height: 60px;
    font-weight: 500;
    color: #161922;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Form Styles */
.contact-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 30px;
}

.form-col {
    flex: 1;
    min-width: 240px;
    color: var(--text-light);
    font-size: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 12px;
}

.form-col input[type="tel"],
.form-col input[type="email"] {
    width: 100%;
    padding: 3px 16px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 31px;
    outline: none;
    transition: border-color 0.3s;
    border-top: none;
    border-left: none;
    border-right: none;
}

.form-col input[type="tel"]::placeholder,
.form-col input[type="email"]::placeholder {
    color: #999;
}

.form-col input[type="tel"]:focus,
.form-col input[type="email"]:focus {
    border-color: var(--text-light);
    color: var(--text-light);
    background-color: var(--bg-form);
}

.submit-col input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 28px;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
    width: 100%;
}

.submit-col input[type="submit"]:hover {
    background-color: #a68857;
}

.form-consent {
    max-width: 900px;
    margin: 30px auto 0;
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    text-align: center;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    transform: scale(1.2);
    margin-top: 3px;
    cursor: pointer;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #fff;
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none !important;
}

.form-response.success {
    background-color: #eaf8ef;
    color: #3a8b5b;
    display: block !important;
}

.form-response.error {
    background-color: #fae9e8;
    color: #962317;
    display: block !important;
}

/* Loader */
.form-loader {
    display: none;
    margin-top: 30px;
    text-align: center;
}

.form-loader.active {
    display: block;
}

.loader-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 180px;
}

#loaderCanvas {
    display: block;
    margin: 0 auto;
    background-color: transparent;
}

/* Footer */
#Footer {
    background-color: #636669a6 !important;
    border-top: 3px solid var(--primary-color);
    padding: 30px 0 0 0;
    margin-top: 60px;
}

.widgets_wrapper {
    padding: 30px 0;
}

.footer_copy {
    padding: 30px 0;
    text-align: center;
}

.copyright {
    font-size: 12px;
    line-height: 20px;
    color: #d3d3d3;
    margin: 10px 0;
}

.footer_button {
    display: inline-block;
    color: var(--primary-color) !important;
    background-color: transparent;
    font-size: 24px;
    margin-bottom: 10px;
    text-decoration: none;
}

.icon-up-open-big::before {
    content: "↑";
}

/* Responsive */
@media only screen and (max-width: 767px) {
    #Wrapper {
        max-width: 100%;
        background-position: center center !important;
    }

    #Top_bar {
        background-color: transparent !important;
        min-height: auto;
        padding: 10px 0;
    }

    h1 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-col {
        min-width: 100%;
    }

    .form-col input[type="tel"],
    .form-col input[type="email"] {
        font-size: 24px;
    }

    .submit-col input[type="submit"] {
        height: 100px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        padding: 20px;
    }

    .form-consent {
        font-size: 11px;
    }

    .form-consent label {
        text-align: left;
    }

    #Content {
        padding: 40px 20px;
    }

    .logo img {
        width: 120px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
    h1 {
        font-size: 38px;
        line-height: 45px;
    }

    .form-col input[type="tel"],
    .form-col input[type="email"] {
        font-size: 26px;
    }
}

/* Animations */
.animate[data-anim-type="fadeInDown"] {
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: transparent !important;
}
}