:root {
    --bg-dark: #1E1E1E;
    --text-main: #F0EFEF;
    --accent-cyan: #6DD4BE;
    --accent-blue: #383ABD;
    --deep-blue: #281697;
}

@font-face {
    font-family: 'SamiFont'; 
    src: url('typography/Garet-Book.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

.contact-container {
    margin: 150px auto 0;
    padding: 0 150px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    box-sizing: border-box;
}

.contact-header {
    margin-top: 70px;
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: #F0EFEF;
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
}

.form-cols {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.form-col {
    flex: 1;
}

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

.input-group label {
    display: block;
    color: #F0EFEF;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #F0EFEF;
    font-family: 'SamiFont', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-group textarea {
    height: 170px;
    resize: none;
}


.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(240, 239, 239, 0.3);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #6DD4BE;
    background: rgba(109, 212, 190, 0.03);
    box-shadow: 0 0 15px rgba(109, 212, 190, 0.4);
}

.submit-container {
    text-align: center;
}

.button {
    background: #6DD4BE;
    color: #1E1E1E;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'SamiFont', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.button:hover {
    box-shadow: 0 0 20px rgba(80, 155, 139, 0.8);
    transform: translateY(-2px);
}