/* --- 1. MOBILE FIRST (Default for phones) --- */
.contact_page_area { 
    padding: 80px 0; 
    background: #ffffff; 
}

/* --- 2. DESKTOP OVERRIDE (For screens larger than 991px) --- */
@media (min-width: 992px) {
    .contact_page_area { 
        padding: 140px 0 80px 0 !important; 
    }
}

.contact_main_title { 
    text-align: center; 
    font-weight: 800; 
    font-size: 32px; 
    text-transform: uppercase; 
    margin-bottom: 50px; 
    color: #1a1a1a; 
    letter-spacing: 2px;
}

.ose_custom_row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}

.ose_custom_col {
    flex: 1;
    min-width: 320px;
    display: flex;
}

/* THE BOX - LIGHT GREY TO PREVENT BLENDING */
.ose_clean_card {
    background: #fcfcfc !important; /* Light industrial grey */
    padding: 40px !important;
    width: 100% !important;
    /* Stronger shadow for depth on the darker background */
    box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
    border-radius: 4px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;

    /* THE GOLD LINE */
    border: none !important;
    border-left: 6px solid #faba00 !important;
    box-sizing: border-box !important;
    transition: transform 0.3s ease;
}

/* Subtle lift on the whole card when hovering */
.ose_clean_card:hover {
    transform: translateY(-5px);
}

/* INTERNAL STYLING */
.ose_card_title {
    color: #1a1a1a !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    border: none !important;
    padding: 0 !important;
    letter-spacing: 1px;
}

.ose_card_body p {
    color: #444;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.ose_card_body i { 
    color: #faba00; 
    width: 25px; 
    text-align: center; 
    font-size: 18px;
}

/* EXPERTISE TAGS WITH GOLD HOVER EFFECT */
.expertise_tags { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
}

.expertise_tags span {
    background: #ffffff; /* Contrast against the grey card */
    color: #555;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
}

/* The Gold Hover you requested */
.expertise_tags span:hover {
    background: #faba00 !important;
    color: #1a1a1a !important;
    border-color: #faba00 !important;
    transform: scale(1.05);
}

/* BUTTONS */
.action_buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-top: 20px; 
}

.btn_call, .btn_wa { 
    padding: 16px; 
    text-align: center; 
    border-radius: 4px; 
    font-weight: 700; 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 13px;
    transition: 0.3s;
    color: #fff;
}

.btn_call { background: #1a1a1a; }
.btn_wa { background: #25d366; }

.btn_call:hover {
    background: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn_wa:hover {
    background: #128c7e;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

/* MAP FIX */
.ose_map_fix { 
    padding: 0 !important; 
    min-height: 320px; 
}