.contact-top-banner {
    position: relative;
    width: 100%;
    height: 35vh;
    overflow: hidden;
}

.contact-top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contact-page-wrapper {
    background-color: #ffffff;
    color: #111111;
}

.contact-page-wrapper .container-fluid {
    max-width: 1261px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid #f0f0f0;
}

.page-title {
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

@media(min-width: 768px) {
    .page-title {
        font-size: 42px;
    }

}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    max-width: 500px;
}

.contact-content {
    padding: 20px 0 80px;
}

@media(min-width: 768px) {
    .contact-content {
        padding: 80px 0;
    }
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-block {
    margin-bottom: 50px;
}

.info-block h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #111;
}

.info-block a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s;
    border-bottom: 1px solid transparent;
}

.info-block a:hover {
    border-bottom: 1px solid #111;
}

.info-block .label {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.map-link {
    font-weight: bold;
    font-size: 14px !important;
}

.contact-form-col h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

.clean-form {
    max-width: 600px;
    border: 1px solid #a8a8a8;
    padding: 20px;
    border-radius: 5px;
}

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

.input-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 10px;
}

.clean-form input,
.clean-form select,
.clean-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    background: transparent;
    border-radius: 0;
    transition: border-color 0.3s;
    font-family: inherit;
}

.clean-form input:focus,
.clean-form select:focus,
.clean-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #000;
}

.clean-form textarea {
    resize: vertical;
}

.submit-btn {
    color: #fff;
    background-color: #000;
    border-radius: 5px;
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

@media (min-width: 1024px) {
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
    }

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

    .input-group {
        width: 100%;
    }

    .contact-hero {
        padding: 80px 0 40px;
    }
}

.advantages-section {
    background-color: #e5e5e5;
    padding: 100px 0;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.advantage-icon {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.advantage-item h4 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 350px;
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Custom Dropdown Styles for Contact Form */

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
    outline: none;
}

.select-trigger.placeholder {
    color: #999;
}

.select-trigger:hover,
.select-trigger.active {
    border-bottom-color: #000;
}

.select-arrow {
    width: 10px;
    height: 10px;
    border-left: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
    transform: rotate(-45deg) translateY(-3px);
    transition: transform 0.3s;
}

.select-trigger.active .select-arrow {
    transform: rotate(135deg) translateY(3px);
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.select-dropdown.active {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
}

.select-option {
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s;
    color: #000;
    font-size: 16px;
}

.select-option:hover {
    background: #f5f5f5;
}

.select-option.selected {
    background: #000;
    color: #fff;
}

.form-message {
    padding: 16px 20px;
    margin-bottom: 32px;
    border-radius: 5px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease-out;
    white-space: pre-line;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}