:root {
    --primary-gold: #eebb5d;
    --bg-dark: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --nav-bg: #ffffff;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

#google_translate_element {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.goog-te-gadget-simple {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--primary-gold) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
}

.goog-te-gadget-simple span {
    color: #fff !important;
    font-family: 'Kanit', sans-serif !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.page-header {
    position: relative;
    background-image: url('../../assets/img/page/contact/bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(10, 10, 10, 1));
    z-index: 1;
}


.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    letter-spacing: 2px;
    z-index: 3;
    font-weight: 300;
}

.main-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-text h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-text p {
    color: #aaa;
    margin: 0;
    font-weight: 300;
}

.social-links {
    margin-top: 40px;
}

.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.form-control-custom {
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    border-radius: 0;
    color: #fff;
    padding: 15px 0;
    margin-bottom: 20px;
}

.form-control-custom:focus {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border-bottom-color: var(--primary-gold);
}

.form-control-custom::placeholder {
    color: #666;
}

.btn-submit {
    background-color: var(--primary-gold);
    color: #000;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.map-container {
    width: 100%;
    height: 450px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(80%) contrast(1.2) invert(90%);
}

.map-container:hover {
    filter: none;
    transition: filter 0.5s ease;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}