﻿:root {
    --primary-color: #d00000;
    --secondary-color: #000;
    --light-gray: #f8f9fa;
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    display: block;
}

    .top-contact-bar a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }

        .top-contact-bar a:hover {
            color: var(--primary-color);
        }

/* Buttons and Navigation */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

    .btn-primary:hover {
        background-color: #b30000;
        border-color: #b30000;
    }

/* Fixed Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

/* Add top margin to body to compensate for fixed navbar */
body {
    padding-top: 80px;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
    }

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 20px 0;
    position: relative;
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 30px;
        font-size: 80px;
        color: var(--primary-color);
        font-family: serif;
        opacity: 0.3;
    }

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

    .footer h5 {
        color: var(--primary-color);
        margin-bottom: 20px;
    }

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

    .social-icons a:hover {
        color: var(--primary-color);
    }

/* Mobile Responsive */
@media (max-width: 991px) {
    .top-contact-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .top-contact-bar .d-flex {
        flex-direction: column;
        gap: 10px;
    }
}
