/*
Template Name: Crystal Interior
File: Layout CSS
Author: TemplatesOnWeb
Author URI: https://www.templateonweb.com/
Licence: <a href="https://www.templateonweb.com/license">Website Template Licence</a>
*/

/*********************Premium Contact Styles****************/

/* Global Premium Utilities */
.text_navy {
    color: #0F172A !important;
}

.bg_navy {
    background-color: #0F172A !important;
}

.custom_gold {
    color: #D4AF37 !important;
}

.hover_gold:hover {
    color: #D4AF37 !important;
}

.shadow_lg {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15) !important;
}

.rounded_custom {
    border-radius: 20px !important;
}

/* Contact Cards */
.contact_card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border-bottom: 4px solid #D4AF37;
}

.contact_icon_box {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    font-size: 32px;
    color: #0F172A;
}

.contact_card:hover .contact_icon_box {
    background: #0F172A;
    color: #D4AF37;
    transform: rotateY(180deg);
}

/* Glassmorphism Form */
.contact_form_glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.form_input_custom {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form_input_custom:focus {
    background: #fff;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

/* Map Section */
.map_container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
    height: 100%;
    min-height: 500px;
}

.map_iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.map_container:hover .map_iframe {
    filter: grayscale(0%);
}

@media screen and (max-width : 767px) {
    .contact_card {
        margin-bottom: 20px;
    }

    .map_container {
        min-height: 350px;
        margin-top: 30px;
    }
}