/* ===== BASE STYLES ===== */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #0d1b2a;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    bottom: 0;
    height: 2px;
    width: calc(100% - 2rem);
    background-color: #1965e4;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #1965e4 !important;
}

.nav-link.active::after {
    transform: scaleX(1) !important;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== UTILITY CLASSES ===== */
.phone-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    transition: color 0.3s, border-color 0.3s;
}

.phone-link:hover {
    color: #00e676;
    border-color: #00e676;
}

.btn-primary {
    background-color: #1965e4;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1252c0;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background-color: #000;
    color: #fff;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1965e4 !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
}