:root {
    --primary-blue: #0056b3;
    --secondary-blue: #007bff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --success-green: #28a745;
    --warning-orange: #fd7e14;
    --header-top-height: 42px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    padding-top: calc(76px + var(--header-top-height));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.section-padding {
    padding: 60px 0;
}

.header-top {
    background-color: var(--dark-gray);
    color: #ffffff;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    min-height: var(--header-top-height);
    display: flex;
    align-items: center;
}

.header-top .contact-info,
.header-top .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-top .contact-info {
    flex-wrap: wrap;
}

.header-top a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-top a:hover {
    color: #ffffff;
}

.header-top .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.header-top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.header-top i {
    color: inherit;
}

.header-top + .navbar {
    top: var(--header-top-height);
}

.language-selector > .dropdown-toggle {
    cursor: default;
}

.language-selector:hover > .dropdown-menu {
    display: block;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.quote-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .quote-btn {
        right: 15px;
        bottom: 15px;
    }
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
