/* 
    Million Dream Sdn. Bhd. | Global Production Styles
    Design Language: Professional, Minimalist, Enterprise
*/

:root {
    --brand-blue: #0056D2;
    --brand-dark: #111111;
    --brand-gray: #4A4A4A;
    --brand-light-gray: #F8F9FA;
    --section-spacer: 120px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: var(--brand-dark);
    line-height: 1.7;
}

/* Spacing & Hierarchy */
.py-section { padding-top: var(--section-spacer); padding-bottom: var(--section-spacer); }
.mb-header { margin-bottom: 60px; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; }

.text-brand { color: var(--brand-blue); }

/* Buttons - Consistent Corporate Styling */
.btn-md {
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-md-solid { background: var(--brand-blue); color: #fff; border: none; }
.btn-md-solid:hover { background: #00419e; transform: translateY(-2px); color: #fff; }

.btn-md-outline { background: transparent; color: var(--brand-blue); border: 2px solid var(--brand-blue); }
.btn-md-outline:hover { background: var(--brand-blue); color: #fff; }

/* Component Styling */
.md-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.md-card:hover { border-color: var(--brand-blue); box-shadow: var(--card-shadow); }

.md-icon-box {
    width: 60px;
    height: 60px;
    background: var(--brand-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-blue);
    margin-bottom: 25px;
}

/* Navbar */
.navbar { height: 90px; border-bottom: 1px solid #eee; background: #fff; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--brand-dark) !important; margin: 0 15px; }
.nav-link:hover { color: var(--brand-blue) !important; }

/* Responsive Footer */
.footer-md { background: var(--brand-dark); color: #fff; padding: 80px 0 40px; }
.footer-title { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 25px; }
.footer-link { color: #ccc; text-decoration: none; font-size: 0.9rem; display: block; margin-bottom: 12px; }
.footer-link:hover { color: #fff; }

@media (max-width: 991px) {
    :root { --section-spacer: 80px; }
    h2 { font-size: 2rem; }
    .navbar { height: auto; padding: 15px 0; }
}