:root {
    --blue: #1e3a8a;
    --orange: #f97316;
    --white-glass: rgba(255, 255, 255, 0.15);
    --label-bg: rgba(30, 58, 138, 0.9);
}

.contact-page {
    background: url('../assets/images/contact-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.contact-page .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    gap: 40px;
}

.contact-page .contact-form {
    flex: 1;
    background: var(--white-glass);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-page .section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--orange);
    font-weight: 700;
    position: relative;
}

.contact-page .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact-page .section-title span {
    color: #3b82f6;
}

.contact-page form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page .form-group {
    position: relative;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 14px 12px;
    font-size: 1em;
    color: #000;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--orange);
    border-radius: 10px;
    outline: none;
    position: relative;
    z-index: 1;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
    color: transparent;
}

.contact-page .form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 5px;
    pointer-events: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 2;
}

.contact-page .form-group input:focus + label,
.contact-page .form-group input:not(:placeholder-shown) + label,
.contact-page .form-group textarea:focus + label,
.contact-page .form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 12px;
    font-size: 0.8em;
    background: var(--label-bg);
    color: #fff;
}

.contact-page button[type="submit"] {
    background: #0d1321;
    color: #f97316;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
}

.contact-page button[type="submit"]:hover {
    background: #0d1321;
    color: #f97316;
}

.contact-page .contact-info {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white-glass);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-page .contact-info img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.contact-page .contact-info p {
    font-size: 1.1em;
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
}