@import "../css/common.css";
@import "../css/icons/tabler-icons/tabler-icons.css";


/* HERO SECTION */
.contact-hero {
    position: relative;
    height: 350px;
    background: url(../Images/Background/hero-img.jpg) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position-y: -50px;
}

/* DARK OVERLAY */
.contact-hero .overlay-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    top: 0;
    left: 0;
}

/* CENTER CONTENT */
.hero-center {
    position: relative;
    text-align: center;
    color: #fff;
}

/* TITLE */
.hero-center h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'TrajanPro-Regular';
}
/* GOLD LINE */
.hero-center .underline {
    width: 60px;
    height: 3px;
    background: #EAA636;
    margin: 10px auto;
}

/* SUBTEXT */
.hero-center p {
    font-size: 16px;
    color: #ccc;
    margin-top: 10px;
}

.contact-section {
    padding: 80px 0;
    background: #0a0a09;
    color: #fff;
}

.contact-section h2 {
    text-align: left;
    margin-bottom: 30px;
    font-family: 'TrajanPro-Regular';
    color: #fff;
}

.contact-section {
    background: #0b0b0b;
    color: #fff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.info-box span i {
    color: #eaa636;
    font-size: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* TITLES */
.sub-title {
    color: #EAA636;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 20px;
}

/* FORM */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
}

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

.contact-form textarea {
    height: 120px;
}

.send-btn {
    width: 100%;
    background: #EAA636;
    color: #0b0b0b;
    padding: 15px;
    border: 1px solid #EAA636;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 10px;
    transition: 0.3s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.send-btn:hover {
    background: transparent;
    color: #EAA636;
    border: 1px solid #EAA636;
}

.send-btn i {
    display: inline-block; /* KEY FIX */
    transition: transform 0.3s ease;
}

.send-btn:hover i {
    transform: translateX(10px);
}
/* INFO BOX */
.contact-info .info-box {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #333;
    margin-bottom: 15px;
    background: #111;
    border-radius: 10px;
}

.contact-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 0;
    color: #aaa;
}

/* SOCIAL */
.social {
    margin-top: 20px;
}

.social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social a:hover {
    background: #EAA636;
    color: #0b0b0b;
    border-color: #EAA636;
    transform: translateY(-10px);
}

/* MAP */
.map-section {
    margin-top: 60px;
    padding: 50px;
    border-radius: 10px;
    background: #111111;
}

.center {
    text-align: center !important;
}

.map-box {
    margin-top: 20px;
    border: 1px solid #333;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    filter: grayscale(100%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}