/* Black Navbar */
.navbar {
    background-color: #000;
    padding: 15px 15px; /* Adjusted for better mobile spacing */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* White Text */
.navbar-brand,
.navbar-brand span,
.nav-link,
.phone-link {
    color: #fff !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-brand span:first-child {
    font-weight: 800;
    margin-bottom: -5px;
}

.navbar-brand span:last-child {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Gold Icon */
.phone-link i {
    color: #d4af37 !important;
    margin-right: 8px;
}

/* Gold Button */
.quote-btn {
    background-color: #d4af37;
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s;
    white-space: nowrap;
}

.quote-btn:hover {
    background-color: #c19b2c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* White Hamburger Icon */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.font-helvetica {
    font-family: 'Helvetica', sans-serif;
}



/* ✅ Mobile View Styling */
@media (max-width: 991px) {
    /* Hide elements not needed on mobile */
    .phone-link,
    .navbar-toggler,
    .navbar-collapse {
        display: none !important;
    }

    /* Align brand and button properly */
    .navbar .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    /* Adjust quote button for smaller screens */
    .quote-btn {
        margin-left: 0;
        font-size: 14px;
        padding: 6px 14px;
    }

    /* Adjust logo sizing for better fit */
    .navbar-brand {
        margin-left: 20px;
    }

    .navbar-brand img {
        width: 100px;
        height: auto;
    }
}


@media (max-width: 767.98px) {
    .mobile-bottom-space {
        margin-bottom: 200px !important;
    }
}
