/* Centered Layout */
.contact-centered-container {
    max-width: 700px !important;
    margin: 0 auto !important;
    float: none !important;
    padding-top: 40px !important;
    padding-bottom: 60px !important;
}

/* Premium Card Aesthetics */
.contact-centered-container > .vc_column-inner > .wpb_wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    padding: 50px;
    border-top: 6px solid #8dc63f;
    transition: all 0.3s ease;
}

.contact-centered-container > .vc_column-inner > .wpb_wrapper:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Titles and Typography */
.contact-centered-container h2 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
    text-align: center;
    font-family: 'Roboto', sans-serif !important;
}

.contact-centered-container .p1 {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #666 !important;
    text-align: center;
    margin-bottom: 40px !important;
}

/* Contact Block Header */
.contact-block-title h3 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 25px !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Icons and Details */
.contact-block-details > div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-block-details > div:hover {
    background: #fff;
    border-color: rgba(141, 198, 63, 0.5);
    box-shadow: 0 5px 15px rgba(141, 198, 63, 0.15);
    transform: translateX(5px);
}

.contact-block-details i.fa {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(141, 198, 63, 0.1) !important;
    color: #8dc63f !important;
    border-radius: 50%;
    font-size: 1.4rem !important;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-block-details > div:hover i.fa {
    background: #8dc63f !important;
    color: #fff !important;
}

.contact-block-details span, 
.contact-block-details a {
    font-size: 1.1rem !important;
    color: #444 !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block-details a:hover {
    color: #8dc63f !important;
}
