/* ============================= */
/* GLOBAL CORPORATE STYLE */
/* ============================= */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f9;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

/* Clean Section Spacing */
section {
    padding: 80px 0;
}

/* ============================= */
/* PREMIUM BUTTON SYSTEM */
/* ============================= */

button,
input[type="submit"],
.wp-block-button__link,
.elementor-button,
.btn,
a.button {
    background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Button Hover (NO transform to avoid click issue) */
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.elementor-button:hover,
.btn:hover,
a.button:hover {
    background: linear-gradient(135deg, #16325c, #1e3c72) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ============================= */
/* CARD / SERVICE BOX (SAFE) */
/* ============================= */

.corporate-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f3;
    transition: box-shadow 0.3s ease;
}

.corporate-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/* IMAGE EFFECT (SAFE FOR CLICKS) */
/* ============================= */

img {
    transition: filter 0.4s ease;
}

img:hover {
    filter: brightness(1.05);
}

/* ============================= */
/* FOOTER FIX — VERY IMPORTANT */
/* ============================= */

footer a {
    position: relative;
    z-index: 5;
    pointer-events: auto !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #2a5298 !important;
}