/* --- Main Section Container --- */
#hotel_contact_block {
    padding: 80px 0;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle top border line */
#hotel_contact_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #bf9a61; /* Gold accent */
}

/* --- Typography --- */
.htl-contact-page .contact-header {
    font-size: 40px;
    color: #222;
    text-align: center;
    font-weight: 300; /* Thin elegant font */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.htl-contact-page .contact-desc {
    font-size: 16px;
    color: #666;
    text-align: center;
    font-weight: 400;
    margin-bottom: 60px;
    line-height: 1.8;
    max-width: 800px;
}

/* --- Cards (Left & Right Columns) --- */
.htl-global-address-div, 
.contact-form-box {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft modern shadow */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.htl-global-address-div:hover, 
.contact-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* --- Left Column: Contact Details --- */
.htl-global-address-div > div {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
}

.htl-global-address-div > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.global-address-header {
    font-family: 'Montserrat', sans-serif; /* If available, else sans */
    font-weight: 600;
    font-size: 13px;
    color: #bf9a61;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.global-address-header i {
    margin-right: 10px;
    font-size: 16px;
    vertical-align: middle;
}

.global-address-value {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    padding-left: 28px; /* Indent to align with text start */
}

/* --- Social Icons --- */
.social-links {
    margin-top: 40px;
    text-align: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #888;
    margin: 0 8px;
    font-size: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icon.facebook:hover { background: #3b5998; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.instagram:hover { background: #e1306c; }
.social-icon.youtube:hover { background: #ff0000; }

/* --- Right Column: Form --- */
.contact-form-box .form-group {
    margin-bottom: 25px;
}

.contact-form-box .control-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-form-box .form-control {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    padding: 12px 15px;
    height: 48px; /* Taller inputs */
    background-color: #fcfcfc;
    box-shadow: none;
    transition: all 0.3s;
}

.contact-form-box textarea.form-control {
    height: 150px;
    resize: none;
}

.contact-form-box .form-control:focus {
    border-color: #bf9a61;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(191, 154, 97, 0.1);
}

/* Custom Select Dropdown */
.contact-form-box select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bf9a61' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

/* --- Submit Button --- */
.htl-contact-page .contact_btn {
    width: 100%; /* Full width button */
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    padding: 15px 0;
    background: #bf9a61;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.htl-contact-page .contact_btn:hover {
    background: #a68550;
    box-shadow: 0 5px 15px rgba(191, 154, 97, 0.4);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .htl-global-address-div {
        margin-bottom: 40px;
    }
    
    .htl-contact-page .contact-header {
        font-size: 28px;
    }
    
    .contact-form-box, .htl-global-address-div {
        padding: 30px 20px;
    }
}
