* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f0f0f0;
    color: #fff;
    overflow-x: hidden;
}

.background-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(204, 0, 0, 0.85) 50%, rgba(240, 240, 240, 0.95) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
}

.background-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://arenacenter.al/rent-opportunities/assets/images/arena.png') center/cover no-repeat;
    z-index: -2;
}

.background-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 10%, rgba(204, 0, 0, 0.85) 60%, rgba(240, 240, 240, 0.95) 100%);
    z-index: -1;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.language-switcher select {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: transparent;
    color: #fff;
}

header {
    text-align: center;
    padding: 60px 20px 30px;
    position: relative;
    z-index: 1;
    padding-top: 50px;
}

header h1 {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 30px;
}

header p {
    font-size: 18px;
    color: #fff;
}

.form-section {
    background: #fff;
    color: #000;
    max-width: 700px;
    margin: 40px auto;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    background-color: #f7f7f7;
    padding: 20px 30px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.form-content {
    padding: 30px;
}

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

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

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    font-size: 16px;
    transition: border 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border: 1px solid #aaa;
    outline: none;
}

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

.form-row>div {
    flex: 1;
}

.btn-group {
    margin-top: 10px;
}

.btn-next {
    width: 100%;
    background-color: #f7f7f7;
    color: #000;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 10px;
}

.btn-submit {
    background-color: #e00000;
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    font-family: sans-serif;
}

.footer-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
}

.logo-text {
    line-height: 1.2;
    text-align: left;
}

.logo-text strong {
    font-size: 0.9rem;
    display: block;
}

.logo-text span {
    font-size: 0.8rem;
    color: #ccc;
}

.contact-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-left: 1px solid #bcbaba;
    padding-left: 2rem;
    padding-top: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #eee;
}

.contact-item img {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #aaa;
    font-size: 0.75rem;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    header h1 {
        font-size: 32px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .form-section {
        margin: 20px 10px;
    }

    .form-section h2 {
        font-size: 18px;
        padding: 15px 20px;
    }

    .form-content {
        padding: 20px;
    }
}

.hidden {
    display: none;
}

.mt{
    margin-top: 20px;
}