/* Color Variables */
:root {
    --primary-color: #0A3D62;
    --accent-color: #FF6B00;
    --text-dark: #2C3E50;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    transition: 0.3s;
}

.top-contact a:hover {
    color: var(--accent-color);
}

.badge-trust {
    background: var(--accent-color);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.top-social a {
    color: var(--white);
    margin-left: 12px;
    transition: 0.3s;
}

.top-social a:hover {
    color: var(--accent-color);
}

/* Main Header Styles */
.main-header {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 3px;
}

.estd-tag {
    font-size: 9px;
    color: #777;
    font-weight: 600;
    margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

/* CTA Button */
.btn-inquire {
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-inquire:hover {
    background-color: #1EBE5D;
    transform: translateY(-2px);
}